mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00

This commit splits the support code for LogicPD's mx31lite hardware into module and board specific parts. This introduces a new mandatory coreparam called 'mx31lite_baseboard' which specifies the base board support to use. For now, only the LiteKit development board is supported, and developers of own boards are encouraged to use that as reference. The UART support moved to the board code. Some comments were amended along the way. Signed-off-by: Daniel Mack <daniel@caiaq.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
21 lines
719 B
Makefile
21 lines
719 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := mm.o devices.o
|
|
obj-$(CONFIG_ARCH_MX31) += clock.o iomux.o
|
|
obj-$(CONFIG_ARCH_MX35) += clock-imx35.o
|
|
obj-$(CONFIG_MACH_MX31ADS) += mx31ads.o
|
|
obj-$(CONFIG_MACH_MX31LILLY) += mx31lilly.o mx31lilly-db.o
|
|
obj-$(CONFIG_MACH_MX31LITE) += mx31lite.o mx31lite-db.o
|
|
obj-$(CONFIG_MACH_PCM037) += pcm037.o
|
|
obj-$(CONFIG_MACH_PCM037_EET) += pcm037_eet.o
|
|
obj-$(CONFIG_MACH_MX31_3DS) += mx31pdk.o
|
|
obj-$(CONFIG_MACH_MX31MOBOARD) += mx31moboard.o mx31moboard-devboard.o \
|
|
mx31moboard-marxbot.o
|
|
obj-$(CONFIG_MACH_QONG) += qong.o
|
|
obj-$(CONFIG_MACH_PCM043) += pcm043.o
|
|
obj-$(CONFIG_MACH_ARMADILLO5X0) += armadillo5x0.o
|
|
obj-$(CONFIG_MACH_MX35_3DS) += mx35pdk.o
|