f6ba5fce3f928f5cceaec42d37d51b28e11e01e5
[coreboot.git] / src / console / Config.lb
1 uses CONFIG_CONSOLE_SERIAL8250 CONFIG_CONSOLE_VGA CONFIG_CONSOLE_BTEXT
2 uses CONFIG_CONSOLE_LOGBUF CONFIG_CONSOLE_SROM
3 uses CONFIG_USE_INIT
4
5 object printk.o
6 if CONFIG_CONSOLE_SERIAL8250
7         driver uart8250_console.o
8 end
9 if CONFIG_CONSOLE_VGA
10         driver vga_console.o
11 end
12 if CONFIG_CONSOLE_BTEXT
13         driver btext_console.o
14         driver font-8x16.o
15 end
16 if CONFIG_CONSOLE_LOGBUF
17         driver logbuf_console.o
18 end
19 if CONFIG_CONSOLE_SROM
20         driver srom_console.o
21 end
22
23 object console.o
24 object vsprintf.o
25
26 if CONFIG_USE_INIT
27         initobject vsprintf.o
28 end