diff options
author | Andrew Victor <andrew@sanpeople.com> | 2007-02-05 05:42:07 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-02-08 09:50:56 -0500 |
commit | 9d0412680e6c7b685ee466842047bcfb924d6dc5 (patch) | |
tree | c79300964ef1aca5d24571696f95e76b37c14679 /arch/arm/mach-at91/Makefile | |
parent | a93d48cc6019f84394b31d10c0d830a3b71696be (diff) |
[ARM] 4124/1: Rename mach-at91rm9200 and arch-at91rm9200 directories
Now that Linux includes support for the Atmel AT91SAM9260 and
AT91SAM9261 processors in addition to the original Atmel AT91RM9200
(with support for more AT91 processors pending), the "mach-at91rm9200"
and "arch-at91rm9200" directories should be renamed to indicate their
more generic nature.
The following git commands should be run BEFORE applying this patch:
git-mv arch/arm/mach-at91rm9200 arch/arm/mach-at91
git-mv include/asm-arm/arch-at91rm9200 include/asm-arm/arch-at91
Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-at91/Makefile')
-rw-r--r-- | arch/arm/mach-at91/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/Makefile b/arch/arm/mach-at91/Makefile new file mode 100644 index 000000000000..cf777007847a --- /dev/null +++ b/arch/arm/mach-at91/Makefile | |||
@@ -0,0 +1,49 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | obj-y := clock.o irq.o gpio.o | ||
6 | obj-m := | ||
7 | obj-n := | ||
8 | obj- := | ||
9 | |||
10 | obj-$(CONFIG_PM) += pm.o | ||
11 | |||
12 | # CPU-specific support | ||
13 | obj-$(CONFIG_ARCH_AT91RM9200) += at91rm9200.o at91rm9200_time.o at91rm9200_devices.o | ||
14 | obj-$(CONFIG_ARCH_AT91SAM9260) += at91sam9260.o at91sam926x_time.o at91sam9260_devices.o | ||
15 | obj-$(CONFIG_ARCH_AT91SAM9261) += at91sam9261.o at91sam926x_time.o at91sam9261_devices.o | ||
16 | |||
17 | # AT91RM9200 board-specific support | ||
18 | obj-$(CONFIG_MACH_ONEARM) += board-1arm.o | ||
19 | obj-$(CONFIG_ARCH_AT91RM9200DK) += board-dk.o | ||
20 | obj-$(CONFIG_MACH_AT91RM9200EK) += board-ek.o | ||
21 | obj-$(CONFIG_MACH_CSB337) += board-csb337.o | ||
22 | obj-$(CONFIG_MACH_CSB637) += board-csb637.o | ||
23 | obj-$(CONFIG_MACH_CARMEVA) += board-carmeva.o | ||
24 | obj-$(CONFIG_MACH_KB9200) += board-kb9202.o | ||
25 | obj-$(CONFIG_MACH_ATEB9200) += board-eb9200.o | ||
26 | obj-$(CONFIG_MACH_KAFA) += board-kafa.o | ||
27 | |||
28 | # AT91SAM9260 board-specific support | ||
29 | obj-$(CONFIG_MACH_AT91SAM9260EK) += board-sam9260ek.o | ||
30 | |||
31 | # AT91SAM9261 board-specific support | ||
32 | obj-$(CONFIG_MACH_AT91SAM9261EK) += board-sam9261ek.o | ||
33 | |||
34 | # LEDs support | ||
35 | led-$(CONFIG_ARCH_AT91RM9200DK) += leds.o | ||
36 | led-$(CONFIG_MACH_AT91RM9200EK) += leds.o | ||
37 | led-$(CONFIG_MACH_CSB337) += leds.o | ||
38 | led-$(CONFIG_MACH_CSB637) += leds.o | ||
39 | led-$(CONFIG_MACH_KB9200) += leds.o | ||
40 | led-$(CONFIG_MACH_KAFA) += leds.o | ||
41 | obj-$(CONFIG_LEDS) += $(led-y) | ||
42 | |||
43 | # VGA support | ||
44 | #obj-$(CONFIG_FB_S1D13XXX) += ics1523.o | ||
45 | |||
46 | |||
47 | ifeq ($(CONFIG_PM_DEBUG),y) | ||
48 | CFLAGS_pm.o += -DDEBUG | ||
49 | endif | ||