1
0

devices -> drivers

This commit is contained in:
2012-10-03 23:30:19 -04:00
parent 9b66a78569
commit 3f624153e7
15 changed files with 7 additions and 7 deletions

20
drivers/kernel.mk Normal file
View File

@ -0,0 +1,20 @@
DIRNAME := drivers
SUBDIRS :=
include $(BASEDIR)/header.mk
OBJS_$(d)_$(CONFIG_VEXPRESS_A9) := \
$(d)/pl011.o \
$(d)/pl111.o
OBJS_$(d)_$(CONFIG_INTEGRATOR_CP) := \
$(d)/pl110.o \
OBJS_$(d)_$(CONFIG_RPI) := \
$(d)/pi_mini_uart.o \
$(d)/bcm2835_mailbox.o \
$(d)/bcm2835_videocore.o
KOBJS += $(OBJS_$(d)_y)
include $(BASEDIR)/footer.mk