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
This commit is contained in:
parent
8b547b1980
commit
c719f1a506
|
@ -85,15 +85,6 @@ config TTYS0_LCS
|
||||||
default 3
|
default 3
|
||||||
depends on CONSOLE_SERIAL8250
|
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
|
# TODO: FIX DEPENDENCY HERE
|
||||||
config USBDEBUG_DIRECT
|
config USBDEBUG_DIRECT
|
||||||
bool "USB 2.0 EHCI debug dongle support"
|
bool "USB 2.0 EHCI debug dongle support"
|
||||||
|
@ -273,8 +264,6 @@ config DEFAULT_CONSOLE_LOGLEVEL
|
||||||
help
|
help
|
||||||
Map the log level config names to an integer.
|
Map the log level config names to an integer.
|
||||||
|
|
||||||
endmenu
|
|
||||||
|
|
||||||
config CONSOLE_BTEXT
|
config CONSOLE_BTEXT
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
@ -286,3 +275,19 @@ config CONSOLE_SROM
|
||||||
config CONSOLE_LOGBUF
|
config CONSOLE_LOGBUF
|
||||||
bool
|
bool
|
||||||
default n
|
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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue