diff options
-rw-r--r-- | src/Kconfig.deprecated_options | 3 | ||||
-rw-r--r-- | src/arch/x86/Kconfig | 4 | ||||
-rw-r--r-- | src/console/Kconfig | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/src/Kconfig.deprecated_options b/src/Kconfig.deprecated_options index f6f6a4bedff7..aa32d0d864f6 100644 --- a/src/Kconfig.deprecated_options +++ b/src/Kconfig.deprecated_options @@ -2,6 +2,8 @@ # if possible, and if you find the time, or touch the general area # for other purposes, please consider removing their uses. +menu "Deprecated" + # It might be possible to consolidate hard_reset() to southbridges, # given that it (usually) uses its registers. # The long term goal would be to eliminate hard_reset() from boards. @@ -49,3 +51,4 @@ config DRIVERS_PS2_KEYBOARD this option, then you can say N here to speed up boot time. Otherwise say Y. +endmenu diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig index 659115909598..28a65b61a21c 100644 --- a/src/arch/x86/Kconfig +++ b/src/arch/x86/Kconfig @@ -1,3 +1,5 @@ +menu "Architecture (x86)" + # This is an SMP option. It relates to starting up APs. # It is usually set in mainboard/*/Kconfig. # TODO: Improve description. @@ -91,3 +93,5 @@ config BOOTBLOCK_NORTHBRIDGE_INIT config BOOTBLOCK_SOUTHBRIDGE_INIT string + +endmenu diff --git a/src/console/Kconfig b/src/console/Kconfig index 90bfe9caa729..296b66819266 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -1,4 +1,4 @@ -menu "Console options" +menu "Console" # TODO: Rename to SERIAL_CONSOLE once Kconfig transition is complete. config CONSOLE_SERIAL8250 bool "Serial port console output" |