Aaron Durbin (adurbin@chromium.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17175
-gerrit
commit 01fa1cecaa00480d9b3ed31f51db4b07ef2bf223 Author: Aaron Durbin adurbin@chromium.org Date: Fri Oct 28 09:54:02 2016 -0500
soc/intel/skylake: put back uart_debug.c into verstage
uart_debug.c was accidentally dropped in verstage in 64ce1d122c0464a4ef138fb7452a91b408b1a7c2 (https://review.coreboot.org/17136). Fix that.
Change-Id: If37a028550d419bada80d157c4de02fd82d26c89 Signed-off-by: Aaron Durbin adurbin@chromium.org --- src/soc/intel/skylake/Makefile.inc | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/soc/intel/skylake/Makefile.inc b/src/soc/intel/skylake/Makefile.inc index 1714572..32eb708 100644 --- a/src/soc/intel/skylake/Makefile.inc +++ b/src/soc/intel/skylake/Makefile.inc @@ -30,6 +30,7 @@ bootblock-y += tsc_freq.c verstage-y += flash_controller.c verstage-y += monotonic_timer.c verstage-y += pch.c +verstage-$(CONFIG_UART_DEBUG) += uart_debug.c verstage-y += pmutil.c verstage-y += bootblock/i2c.c