mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 18:53:52 +08:00
693532dcff
Patch from Sascha Hauer This patch adds the board specific code for the Hilscher NXDKN development board. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
15 lines
355 B
Makefile
15 lines
355 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
# Note! Dependencies are done automagically by 'make dep', which also
|
|
# removes any old dependencies. DON'T put your own dependencies here
|
|
# unless it's something special (ie not a .c file).
|
|
|
|
# Object file lists.
|
|
|
|
obj-y += time.o generic.o pfifo.o xc.o
|
|
|
|
# Specific board support
|
|
obj-$(CONFIG_MACH_NXDKN) += nxdkn.o
|
|
|