aboutsummaryrefslogtreecommitdiff
path: root/src/console/Kconfig
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-03-30 09:57:28 +0000
committerStefan Reinauer <stepan@openbios.org>2010-03-30 09:57:28 +0000
commitc719f1a506060e6283352d114fd6d589e4c6ce3d (patch)
tree84b871554e8f47ae95ce0131a3a5c41dc0f5c3ca /src/console/Kconfig
parent8b547b19800ab85c97103c87fedbba7512add7d6 (diff)
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@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5326 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console/Kconfig')
-rw-r--r--src/console/Kconfig27
1 files changed, 16 insertions, 11 deletions
diff --git a/src/console/Kconfig b/src/console/Kconfig
index 3c46fdff56..86d75754cd 100644
--- a/src/console/Kconfig
+++ b/src/console/Kconfig
@@ -85,15 +85,6 @@ config TTYS0_LCS
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 @@ config DEFAULT_CONSOLE_LOGLEVEL
help
Map the log level config names to an integer.
-endmenu
-
config CONSOLE_BTEXT
bool
default n
@@ -286,3 +275,19 @@ config CONSOLE_SROM
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
+