aboutsummaryrefslogtreecommitdiff
path: root/src/console/Config.lb
blob: 39fcd23fa55e3ff6a82d1171a2b10853d530c31e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
uses CONFIG_CONSOLE_SERIAL8250 CONFIG_CONSOLE_VGA CONFIG_CONSOLE_BTEXT
uses CONFIG_CONSOLE_LOGBUF CONFIG_CONSOLE_SROM
uses CONFIG_USE_INIT

object printk.o
if CONFIG_CONSOLE_SERIAL8250
  driver uart8250_console.o
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
if CONFIG_CONSOLE_SROM
  driver srom_console.o
end
object console.o
object vsprintf.o

if CONFIG_USE_INIT
	initobject vsprintf.o
end