mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
8c032ec337
Sascha Hauer wrote: > On Tue, Jun 02, 2009 at 04:18:42PM -0400, Daniel Schaeffer wrote: >> Add basic support for the Logic i.MX27LITE board. >> >> Signed-off-by: Daniel Schaeffer <daniel.schaeffer@timesys.com> > > Besides the comment made by Fabio this looks ok to me. > > Sascha > > Fixed issues pointed out by Fabio and Magnus, and rebased to mxc-master head. Signed-off-by: Daniel Schaeffer <daniel.schaeffer@timesys.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
21 lines
483 B
Makefile
21 lines
483 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
|
|
obj-$(CONFIG_MACH_MX27_3DS) += mx27pdk.o
|
|
obj-$(CONFIG_MACH_MX27LITE) += mx27lite.o
|
|
|