mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
148854c65e
This patch adds basic support for Dave/DENX QongEVB-LITE i.MX31-based board. It includes support for clocks initialization, UART1, NOR-flash, FPGA-attached NAND flash and DNET ethernet controller (inside FPGA). Signed-off-by: Ilya Yanok <yanok@emcraft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
17 lines
471 B
Makefile
17 lines
471 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_MX31LITE) += mx31lite.o
|
|
obj-$(CONFIG_MACH_PCM037) += pcm037.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
|