7fc06d8c24
This makes the file compilable for a kernel that supports both imx21 and imx27. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
26 lines
821 B
Makefile
26 lines
821 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := generic.o devices.o serial.o
|
|
CFLAGS_generic.o = -DIMX_NEEDS_DEPRECATED_SYMBOLS
|
|
CFLAGS_devices.o = -DIMX_NEEDS_DEPRECATED_SYMBOLS
|
|
|
|
obj-$(CONFIG_MACH_MX21) += clock_imx21.o
|
|
|
|
obj-$(CONFIG_MACH_MX27) += cpu_imx27.o
|
|
obj-$(CONFIG_MACH_MX27) += clock_imx27.o
|
|
|
|
obj-$(CONFIG_MACH_MX21ADS) += mach-mx21ads.o
|
|
obj-$(CONFIG_MACH_MX27ADS) += mach-mx27ads.o
|
|
obj-$(CONFIG_MACH_PCM038) += mach-pcm038.o
|
|
obj-$(CONFIG_MACH_PCM970_BASEBOARD) += pcm970-baseboard.o
|
|
obj-$(CONFIG_MACH_MX27_3DS) += mach-mx27_3ds.o
|
|
obj-$(CONFIG_MACH_IMX27LITE) += mach-imx27lite.o
|
|
obj-$(CONFIG_MACH_CPUIMX27) += mach-cpuimx27.o
|
|
obj-$(CONFIG_MACH_EUKREA_MBIMX27_BASEBOARD) += eukrea_mbimx27-baseboard.o
|
|
obj-$(CONFIG_MACH_PCA100) += mach-pca100.o
|
|
obj-$(CONFIG_MACH_MXT_TD60) += mach-mxt_td60.o
|