diff options
author | Stefan Reinauer <stepan@openbios.org> | 2004-05-28 15:07:03 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2004-05-28 15:07:03 +0000 |
commit | 34e3a146a95bd917b99e2185a17690f467dab8fb (patch) | |
tree | 21ed857af2539ffae0a8285cc70f3cfe05ba939f /src/console/Config.lb | |
parent | 319d6730e9db850609f75be2b4fdef2a622e04ef (diff) | |
download | coreboot-34e3a146a95bd917b99e2185a17690f467dab8fb.tar.xz |
console code cleanup.
- drop srm console code (not supported anyways)
- make internal uart8250 console functions static
- split vsprintf.c into vsprintf.c and vtxprintf.c
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1585 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console/Config.lb')
-rw-r--r-- | src/console/Config.lb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/console/Config.lb b/src/console/Config.lb index f6ba5fce3f..0990e451dc 100644 --- a/src/console/Config.lb +++ b/src/console/Config.lb @@ -1,5 +1,5 @@ uses CONFIG_CONSOLE_SERIAL8250 CONFIG_CONSOLE_VGA CONFIG_CONSOLE_BTEXT -uses CONFIG_CONSOLE_LOGBUF CONFIG_CONSOLE_SROM +uses CONFIG_CONSOLE_LOGBUF uses CONFIG_USE_INIT object printk.o @@ -16,13 +16,12 @@ end if CONFIG_CONSOLE_LOGBUF driver logbuf_console.o end -if CONFIG_CONSOLE_SROM - driver srom_console.o -end object console.o +object vtxprintf.o object vsprintf.o if CONFIG_USE_INIT - initobject vsprintf.o + initobject vtxprintf.o end + |