diff options
Diffstat (limited to 'arch/arm/mach-sa1100/Makefile')
-rw-r--r-- | arch/arm/mach-sa1100/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/arch/arm/mach-sa1100/Makefile b/arch/arm/mach-sa1100/Makefile new file mode 100644 index 000000000000..e4a4a3e8aa8f --- /dev/null +++ b/arch/arm/mach-sa1100/Makefile | |||
@@ -0,0 +1,53 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | # Common support | ||
6 | obj-y := generic.o irq.o dma.o time.o | ||
7 | obj-m := | ||
8 | obj-n := | ||
9 | obj- := | ||
10 | led-y := leds.o | ||
11 | |||
12 | obj-$(CONFIG_CPU_FREQ_SA1100) += cpu-sa1100.o | ||
13 | obj-$(CONFIG_CPU_FREQ_SA1110) += cpu-sa1110.o | ||
14 | |||
15 | # Specific board support | ||
16 | obj-$(CONFIG_SA1100_ASSABET) += assabet.o | ||
17 | led-$(CONFIG_SA1100_ASSABET) += leds-assabet.o | ||
18 | obj-$(CONFIG_ASSABET_NEPONSET) += neponset.o | ||
19 | |||
20 | obj-$(CONFIG_SA1100_BADGE4) += badge4.o | ||
21 | led-$(CONFIG_SA1100_BADGE4) += leds-badge4.o | ||
22 | |||
23 | obj-$(CONFIG_SA1100_CERF) += cerf.o | ||
24 | led-$(CONFIG_SA1100_CERF) += leds-cerf.o | ||
25 | |||
26 | obj-$(CONFIG_SA1100_COLLIE) += collie.o | ||
27 | |||
28 | obj-$(CONFIG_SA1100_H3600) += h3600.o | ||
29 | |||
30 | obj-$(CONFIG_SA1100_HACKKIT) += hackkit.o | ||
31 | led-$(CONFIG_SA1100_HACKKIT) += leds-hackkit.o | ||
32 | |||
33 | obj-$(CONFIG_SA1100_JORNADA720) += jornada720.o | ||
34 | |||
35 | obj-$(CONFIG_SA1100_LART) += lart.o | ||
36 | led-$(CONFIG_SA1100_LART) += leds-lart.o | ||
37 | |||
38 | obj-$(CONFIG_SA1100_PLEB) += pleb.o | ||
39 | |||
40 | obj-$(CONFIG_SA1100_SHANNON) += shannon.o | ||
41 | |||
42 | obj-$(CONFIG_SA1100_SIMPAD) += simpad.o | ||
43 | led-$(CONFIG_SA1100_SIMPAD) += leds-simpad.o | ||
44 | |||
45 | # LEDs support | ||
46 | obj-$(CONFIG_LEDS) += $(led-y) | ||
47 | |||
48 | # SA1110 USB client support | ||
49 | #obj-$(CONFIG_SA1100_USB) += usb/ | ||
50 | |||
51 | # Miscelaneous functions | ||
52 | obj-$(CONFIG_PM) += pm.o sleep.o | ||
53 | obj-$(CONFIG_SA1100_SSP) += ssp.o | ||