Alexandru Gagniuc (mr.nuke.me@gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12874
-gerrit
commit e4bececdf745e04643bf902bff137d440f2b35f4 Author: Alexandru Gagniuc mr.nuke.me@gmail.com Date: Fri Jan 8 21:56:43 2016 -0800
drivers/uart/Makefile.inc: Compile uart8250io in bootblock
This is needed for the next patch, which enables bootblock console on "qemu" CPUs, since that platform uses the 8250io driver. Note that the include is guarded by CONFIG_DRIVERS_UART_8250IO, so there is no risk of breaking builds on non-x86 architectures.
Change-Id: Iaeed7280aa97b58d46b003df66647dae4a4e0e29 Signed-off-by: Alexandru Gagniuc mr.nuke.me@gmail.com --- src/drivers/uart/Makefile.inc | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/drivers/uart/Makefile.inc b/src/drivers/uart/Makefile.inc index da8b5f7..4b2aa53 100644 --- a/src/drivers/uart/Makefile.inc +++ b/src/drivers/uart/Makefile.inc @@ -10,6 +10,7 @@ smm-$(CONFIG_DEBUG_SMI) += util.c # be located in the soc/ or cpu/ directories instead of here.
ifeq ($(CONFIG_DRIVERS_UART_8250IO),y) +bootblock-y += uart8250io.c verstage-y += uart8250io.c romstage-y += uart8250io.c ramstage-y += uart8250io.c