diff options
author | Stefan Reinauer <stepan@openbios.org> | 2004-04-24 22:29:44 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2004-04-24 22:29:44 +0000 |
commit | f05dcb8d7afb3716959b94b8dac20ee551762624 (patch) | |
tree | 324762464af2dda56bf3a034a14a461ca8d06c88 /src/console/Config.lb | |
parent | 8581ac215d560598c795caaba95a480459611a60 (diff) | |
download | coreboot-f05dcb8d7afb3716959b94b8dac20ee551762624.tar.xz |
Add btext console (from YhLu)
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1533 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console/Config.lb')
-rw-r--r-- | src/console/Config.lb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/console/Config.lb b/src/console/Config.lb index 970e4bad01..39fcd23fa5 100644 --- a/src/console/Config.lb +++ b/src/console/Config.lb @@ -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 |