9
0
Fork 0

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>

--
This commit is contained in:
Nishanth Menon 2008-05-07 16:24:51 +02:00 committed by Sascha Hauer
parent 4794a8ae7f
commit 3b94eca260
2 changed files with 4 additions and 6 deletions

View File

@ -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
obj-$(CONFIG_ARM920T) += start-arm.o
obj-$(CONFIG_ARM926EJS) += start-arm.o
obj-$(CONFIG_ARCH_IMX31) += start-arm.o