diff options
author | Stefan Reinauer <stepan@coreboot.org> | 2010-11-22 08:09:50 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-11-22 08:09:50 +0000 |
commit | abc0c8551604933ca54e9eaa48c3f00e4915dc90 (patch) | |
tree | 2b8b2b7c07329b72f9adeea737e5049435fe4549 /src/console/Kconfig | |
parent | e9c447326a0ff5565886b0c18c806c77c4a03cb8 (diff) |
Printing coreboot debug messages on VGA console is pretty much useless, since
initializing VGA happens pretty much as the last thing before starting the
payload. Hence, drop VGA console support, as we did in coreboot v3.
- Drop VGA and BTEXT console support.
Console is meant to be debugging only, and by the time graphics comes up
99% of the risky stuff has already happened. Note: This patch does not remove
hardware init but only the actual output functionality.
The ragexl driver needs some extra love, but that's for another day
- factor out die() and post()
- drop some leftover RAMBASE < 0x100000 checks.
Signed-off-by: Stefan Reinauer <stepan@coreboot.org>
Acked-by: QingPei Wang<wangqingpei@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6111 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console/Kconfig')
-rw-r--r-- | src/console/Kconfig | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/console/Kconfig b/src/console/Kconfig index ac4efa1977..90bfe9caa7 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -133,13 +133,9 @@ config USBDEBUG_DEFAULT_PORT on your mainboard) is highly board-specific, and you'll likely have to find out by trial-and-error. -config CONSOLE_VGA - bool "Use VGA console once initialized" - default n - # TODO: Deps? # TODO: Improve description. -config CONSOLE_VGA_ONBOARD_AT_FIRST +config ONBOARD_VGA_IS_PRIMARY bool "Use onboard VGA as primary video device" default n help @@ -322,14 +318,6 @@ config DEFAULT_CONSOLE_LOGLEVEL help Map the log level config names to an integer. -config CONSOLE_BTEXT - bool - default n - -config CONSOLE_SROM - bool - default n - config CONSOLE_LOGBUF bool default n |