[coreboot] [commit] r5326 - trunk/src/console

repository service svn at coreboot.org
Tue Mar 30 11:57:29 CEST 2010


Author: stepan
Date: Tue Mar 30 11:57:28 2010
New Revision: 5326
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5326

Log:
add CONFIG_NO_POST as it is used in the code, and move it together with CONFIG_SERIAL_POST
Signed-off-by: Stefan Reinauer <stepan at coresystems.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>

Modified:
   trunk/src/console/Kconfig

Modified: trunk/src/console/Kconfig
==============================================================================
--- trunk/src/console/Kconfig	Tue Mar 30 11:56:35 2010	(r5325)
+++ trunk/src/console/Kconfig	Tue Mar 30 11:57:28 2010	(r5326)
@@ -85,15 +85,6 @@
 	default 3
 	depends on CONSOLE_SERIAL8250
 
-config SERIAL_POST
-	bool "Show POST codes on the serial port console"
-	depends on CONSOLE_SERIAL8250
-	default n
-	help
-	  If enabled, coreboot will additionally print POST codes (which are
-	  usually displayed using a so-called "POST card" ISA/PCI/PCI-E
-	  device) on the serial console.
-
 # TODO: FIX DEPENDENCY HERE
 config USBDEBUG_DIRECT
 	bool "USB 2.0 EHCI debug dongle support"
@@ -273,8 +264,6 @@
 	help
 	  Map the log level config names to an integer.
 
-endmenu
-
 config CONSOLE_BTEXT
 	bool
 	default n
@@ -286,3 +275,19 @@
 config CONSOLE_LOGBUF
 	bool
 	default n
+
+config NO_POST
+	bool "Don't show any POST codes"
+	default n
+
+config SERIAL_POST
+	bool "Show POST codes on the serial port console"
+	depends on CONSOLE_SERIAL8250 && !NO_POST
+	default n
+	help
+	  If enabled, coreboot will additionally print POST codes (which are
+	  usually displayed using a so-called "POST card" ISA/PCI/PCI-E
+	  device) on the serial console.
+
+endmenu
+




More information about the coreboot mailing list