mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 17:11:42 +00:00
build rule is needed as for console.o Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5529 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
21 lines
604 B
Makefile
21 lines
604 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_DIRECT) += usbdebug_direct_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
|