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