mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 02:21:47 +00:00
6b91edde09
[PATCH v6] MXC: mx21ads base support Base machine support for the Freescale i.MX21ADS (M9328MX21ADSE) Application Development System. Signed-off-by: Ivo Clarysse <ivo.clarysse@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
18 lines
399 B
Makefile
18 lines
399 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := generic.o devices.o serial.o
|
|
|
|
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) += mx21ads.o
|
|
obj-$(CONFIG_MACH_MX27ADS) += mx27ads.o
|
|
obj-$(CONFIG_MACH_PCM038) += pcm038.o
|
|
obj-$(CONFIG_MACH_PCM970_BASEBOARD) += pcm970-baseboard.o
|