diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2007-05-08 14:15:45 (GMT) |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-05-08 14:15:45 (GMT) |
commit | 08fdffd4cf4ddd4eb4b32e78f93f4ff53ccec78f (patch) | |
tree | edbce85f683fcc327f3552b208c954a9d12e704a /arch/arm/kernel/head.S | |
parent | 4efb4482729d2cc7926f49f997a28370e701073f (diff) | |
download | linux-08fdffd4cf4ddd4eb4b32e78f93f4ff53ccec78f.tar.xz |
[ARM] Ensure head text is always placed at the start of kernel
Commit 86c0baf123e474b6eb404798926ecf62b426bf3a highlighted that we
may end up with the head text placed elsewhere in the kernel image.
Introduce a new .text.head section to contain the initial kernel
startup code, and always place this section at the beginning of the
kernel image.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel/head.S')
-rw-r--r-- | arch/arm/kernel/head.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/head.S b/arch/arm/kernel/head.S index 1d35eda..41f98b4 100644 --- a/arch/arm/kernel/head.S +++ b/arch/arm/kernel/head.S @@ -73,7 +73,7 @@ * crap here - that's what the boot loader (or in extreme, well justified * circumstances, zImage) is for. */ - __INIT + .section ".text.head", "ax" .type stext, %function ENTRY(stext) msr cpsr_c, #PSR_F_BIT | PSR_I_BIT | SVC_MODE @ ensure svc mode |