summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/Makefile
diff options
context:
space:
mode:
authorNishanth Menon <x0nishan@ti.com>2008-05-07 16:24:51 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2008-05-07 16:24:51 +0200
commit3b94eca26049138097627402b408e6622aeb7283 (patch)
treeed9ecdf7fb35d9c623add038ae5f431f1df52d16 /arch/arm/cpu/Makefile
parent4794a8ae7f94adb550f34adc7c6460f801b8f41c (diff)
downloadbarebox-3b94eca26049138097627402b408e6622aeb7283.tar.gz
barebox-3b94eca26049138097627402b408e6622aeb7283.tar.xz
Replace start-arm920t.S with start-arm.S
Replace start-arm920t.S with start-arm.S. This will allow for a common logic to handle Signed-off-by: Nishanth Menon <x0nishan@ti.com> --
Diffstat (limited to 'arch/arm/cpu/Makefile')
-rw-r--r--arch/arm/cpu/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/arch/arm/cpu/Makefile b/arch/arm/cpu/Makefile
index 0daad49231..9f8ce55023 100644
--- a/arch/arm/cpu/Makefile
+++ b/arch/arm/cpu/Makefile
@@ -2,10 +2,8 @@ obj-y += cpu.o
obj-y += interrupts.o
#
-# start-arm920t.S and start-arm926ejs.S have been
-# merged to start-arm920t.S. More start-*.S should
-# be merged here and finally called start-arm.S
+# Any variants can be called as start-armxyz.S
#
-obj-$(CONFIG_ARM920T) += start-arm920t.o
-obj-$(CONFIG_ARM926EJS) += start-arm920t.o
-obj-$(CONFIG_ARCH_IMX31) += start-arm920t.o \ No newline at end of file
+obj-$(CONFIG_ARM920T) += start-arm.o
+obj-$(CONFIG_ARM926EJS) += start-arm.o
+obj-$(CONFIG_ARCH_IMX31) += start-arm.o