Author: stepan Date: Wed Jan 5 03:27:53 2011 New Revision: 6244 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6244
Log: move single options out of main menu and remove stray "options"
Signed-off-by: Stefan Reinauer stepan@coreboot.org Acked-by: Stefan Reinauer stepan@coreboot.org
Modified: trunk/src/Kconfig.deprecated_options trunk/src/arch/x86/Kconfig trunk/src/console/Kconfig
Modified: trunk/src/Kconfig.deprecated_options ============================================================================== --- trunk/src/Kconfig.deprecated_options Wed Jan 5 03:10:50 2011 (r6243) +++ trunk/src/Kconfig.deprecated_options Wed Jan 5 03:27:53 2011 (r6244) @@ -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 @@ this option, then you can say N here to speed up boot time. Otherwise say Y.
+endmenu
Modified: trunk/src/arch/x86/Kconfig ============================================================================== --- trunk/src/arch/x86/Kconfig Wed Jan 5 03:10:50 2011 (r6243) +++ trunk/src/arch/x86/Kconfig Wed Jan 5 03:27:53 2011 (r6244) @@ -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_SOUTHBRIDGE_INIT string + +endmenu
Modified: trunk/src/console/Kconfig ============================================================================== --- trunk/src/console/Kconfig Wed Jan 5 03:10:50 2011 (r6243) +++ trunk/src/console/Kconfig Wed Jan 5 03:27:53 2011 (r6244) @@ -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"