9
0
Fork 0

arm: use text_entry for reset vector instead of hardcoded filename

(once again)
This commit is contained in:
sascha 2007-10-17 11:10:57 +02:00
parent 10bdc84297
commit 825ad81490
6 changed files with 9 additions and 6 deletions

View File

@ -6,5 +6,5 @@ obj-y += interrupts.o
# merged to start-arm920t.S. More start-*.S should
# be merged here and finally called start-arm.S
#
extra-$(CONFIG_ARM920T) += start-arm920t.o
extra-$(CONFIG_ARM926EJS) += start-arm920t.o
obj-$(CONFIG_ARM920T) += start-arm920t.o
obj-$(CONFIG_ARM926EJS) += start-arm920t.o

View File

@ -24,6 +24,7 @@
* MA 02111-1307 USA
*/
.section ".text_entry","ax"
#include <config.h>

View File

@ -34,7 +34,7 @@ SECTIONS
. = ALIGN(4);
.text :
{
cpu/arm920t/start.o (.text)
*(.text_entry)
*(.text)
}

View File

@ -34,7 +34,9 @@ SECTIONS
. = ALIGN(4);
.text :
{
arch/arm/cpu/start-arm920t.o (.text)
_stext = .;
_text = .;
*(.text_entry)
*(.text)
}

View File

@ -36,7 +36,7 @@ SECTIONS
{
_stext = .;
_text = .;
arch/arm/cpu/start-arm920t.o (.text)
*(.text_entry)
*(.text)
}

View File

@ -36,7 +36,7 @@ SECTIONS
{
_stext = .;
_text = .;
arch/arm/cpu/start-arm920t.o (.text)
*(.text_entry)
*(.text)
}