Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11243
-gerrit
commit d85abad91ae22d06b5e8b4e48d6de6b003a11137 Author: Martin Roth martinroth@google.com Date: Sat Aug 15 17:36:15 2015 -0600
soc/intel/skylake/Kconfig: Fix recursive Kconfig dependency
This was causing multiple warnings on every platform I tested.
src/console/Kconfig:21:error: recursive dependency detected! src/console/Kconfig:21: symbol CONSOLE_SERIAL depends on DRIVERS_UART_8250MEM src/drivers/uart/Kconfig:16: symbol DRIVERS_UART_8250MEM is selected by UART_DEBUG src/soc/intel/skylake/Kconfig:198: symbol UART_DEBUG depends on CONSOLE_SERIAL
Change-Id: Ia0426cd150561694081b5ea7c6797d36022c1f57 Signed-off-by: Martin Roth martinroth@google.com --- src/soc/intel/skylake/Kconfig | 1 - 1 file changed, 1 deletion(-)
diff --git a/src/soc/intel/skylake/Kconfig b/src/soc/intel/skylake/Kconfig index 6c64cd9..e2d5dd1 100644 --- a/src/soc/intel/skylake/Kconfig +++ b/src/soc/intel/skylake/Kconfig @@ -195,7 +195,6 @@ config VGA_BIOS_ID
config UART_DEBUG bool "Enable UART debug port." - default y if CONSOLE_SERIAL default n select DRIVERS_UART select DRIVERS_UART_8250MEM