mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 02:35:28 +00:00
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5588 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
21 lines
590 B
Makefile
21 lines
590 B
Makefile
obj-y += printk.o
|
|
obj-y += console.o
|
|
obj-y += vtxprintf.o
|
|
obj-y += vsprintf.o
|
|
|
|
smmobj-y += printk.o
|
|
smmobj-y += vtxprintf.o
|
|
|
|
initobj-y += vtxprintf.o
|
|
initobj-$(CONFIG_USE_DCACHE_RAM) += console.o
|
|
|
|
driver-$(CONFIG_CONSOLE_SERIAL8250) += uart8250_console.o
|
|
driver-$(CONFIG_USBDEBUG) += usbdebug_console.o
|
|
driver-$(CONFIG_CONSOLE_VGA) += vga_console.o
|
|
driver-$(CONFIG_CONSOLE_BTEXT) += btext_console.o
|
|
driver-$(CONFIG_CONSOLE_BTEXT) += font-8x16.o
|
|
driver-$(CONFIG_CONSOLE_LOGBUF) += logbuf_console.o
|
|
|
|
$(obj)/console/console.o : $(obj)/build.h
|
|
$(obj)/console/console.initobj.o : $(obj)/build.h
|