Add btext console (from YhLu)

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1533 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2004-04-24 22:29:44 +00:00
parent 8581ac215d
commit f05dcb8d7a
3 changed files with 5073 additions and 1 deletions

View File

@ -383,6 +383,11 @@ define CONFIG_CONSOLE_VGA
export always
comment "Log messages to VGA"
end
define CONFIG_CONSOLE_BTEXT
default 0
export always
comment "Log messages to btext fb console"
end
define CONFIG_CONSOLE_LOGBUF
default 0
export always

View File

@ -1,4 +1,4 @@
uses CONFIG_CONSOLE_SERIAL8250 CONFIG_CONSOLE_VGA
uses CONFIG_CONSOLE_SERIAL8250 CONFIG_CONSOLE_VGA CONFIG_CONSOLE_BTEXT
uses CONFIG_CONSOLE_LOGBUF CONFIG_CONSOLE_SROM
uses CONFIG_USE_INIT
@ -9,6 +9,9 @@ end
if CONFIG_CONSOLE_VGA
driver vga_console.o
end
if CONFIG_CONSOLE_BTEXT
driver btext_console.o
end
if CONFIG_CONSOLE_LOGBUF
driver logbuf_console.o
end

5064
src/console/btext_console.c Normal file

File diff suppressed because it is too large Load Diff