xref: /openbmc/linux/arch/arm/mach-pxa/Makefile (revision 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2)
1#
2# Makefile for the linux kernel.
3#
4
5# Common support (must be linked before board specific support)
6obj-y += generic.o irq.o dma.o time.o
7obj-$(CONFIG_PXA25x) += pxa25x.o
8obj-$(CONFIG_PXA27x) += pxa27x.o
9
10# Specific board support
11obj-$(CONFIG_ARCH_LUBBOCK) += lubbock.o
12obj-$(CONFIG_MACH_MAINSTONE) += mainstone.o
13obj-$(CONFIG_ARCH_PXA_IDP) += idp.o
14obj-$(CONFIG_PXA_SHARP_C7xx)	+= corgi.o corgi_ssp.o ssp.o
15obj-$(CONFIG_MACH_POODLE)	+= poodle.o
16
17# Support for blinky lights
18led-y := leds.o
19led-$(CONFIG_ARCH_LUBBOCK) += leds-lubbock.o
20led-$(CONFIG_MACH_MAINSTONE) += leds-mainstone.o
21led-$(CONFIG_ARCH_PXA_IDP) += leds-idp.o
22
23obj-$(CONFIG_LEDS) += $(led-y)
24
25# Misc features
26obj-$(CONFIG_PM) += pm.o sleep.o
27