Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/30829
Change subject: console/Kconfig: Fix dependency of FIXED_UART_FOR_CONSOLE ......................................................................
console/Kconfig: Fix dependency of FIXED_UART_FOR_CONSOLE
The Kconfig declaration for FIXED_UART_FOR_CONSOLE was accidentally placed inside an `if CONSOLE_SERIAL` in a96e66a (soc/intel: Clean mess around UART_DEBUG).
TEST=Start a clean config, select intel/leafhill and disable serial console. Confirm that config can be saved without error.
Change-Id: Ie41687e91af11a13697cbe25938dada2c74b40fb Signed-off-by: Nico Huber nico.h@gmx.de --- M src/console/Kconfig 1 file changed, 7 insertions(+), 7 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/30829/1
diff --git a/src/console/Kconfig b/src/console/Kconfig index 3db7005..9cacab0 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -37,6 +37,13 @@ shown on the following menu line. Supporting multiple different types of UARTs in one build is not supported.
+config FIXED_UART_FOR_CONSOLE + bool + help + Select to remove the prompt from UART_FOR_CONSOLE in case a + specific UART has to be used (e.g. when the platform code + performs dangerous configurations). + if CONSOLE_SERIAL
comment "I/O mapped, 8250-compatible" @@ -48,13 +55,6 @@ comment "device-specific UART" depends on HAVE_UART_SPECIAL
-config FIXED_UART_FOR_CONSOLE - bool - help - Select to remove the prompt from UART_FOR_CONSOLE in case a - specific UART has to be used (e.g. when the platform code - performs dangerous configurations). - config UART_FOR_CONSOLE int prompt "Index for UART port to use for console" if !FIXED_UART_FOR_CONSOLE