[coreboot-gerrit] New patch to review for coreboot: drivers/uart/Makefile.inc: Compile uart8250io in bootblock

Alexandru Gagniuc (mr.nuke.me@gmail.com) gerrit at coreboot.org
Sat Jan 9 08:14:42 CET 2016


Alexandru Gagniuc (mr.nuke.me at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12874

-gerrit

commit 54057f5e832dedaa9a9934a39cd72942199366c5
Author: Alexandru Gagniuc <mr.nuke.me at 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 at 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



More information about the coreboot-gerrit mailing list