Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10703
-gerrit
commit 5cbe38fe39e7fd838f9911c8e8bdafe07006c216 Author: Patrick Georgi pgeorgi@chromium.org Date: Mon Jun 29 22:50:45 2015 +0200
qualcomm/ipq806x: Fix uart in verstage
An old Kconfig symbol from Chrome OS survived into the Makefile (but is nowhere declared or used). Use the same symbol as for uart.c in the other stages.
Change-Id: I7a6f1b82254e888d6f2d65d6cff87c4d546ec097 Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- src/soc/qualcomm/ipq806x/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/soc/qualcomm/ipq806x/Makefile.inc b/src/soc/qualcomm/ipq806x/Makefile.inc index b348423..84eae0b 100644 --- a/src/soc/qualcomm/ipq806x/Makefile.inc +++ b/src/soc/qualcomm/ipq806x/Makefile.inc @@ -32,7 +32,7 @@ libverstage-y += i2c.c libverstage-y += qup.c libverstage-y += spi.c verstage-y += timer.c -verstage-$(CONFIG_CONSOLE_SERIAL_IPQ806X) += uart.c +verstage-$(CONFIG_DRIVERS_UART) += uart.c
romstage-y += clock.c romstage-y += blobs_init.c