summary refs log tree commit diff
path: root/arch/arm/boot
diff options
context:
space:
mode:
authorRussell King <rmk@dyn-67.arm.linux.org.uk>2006-04-09 19:08:42 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-04-09 19:08:42 +0100
commitc5b8ef62b5df9530c573f00f4106742661425392 (patch)
treef111f10bc13348d288e5f13f660759b5f43a92ff /arch/arm/boot
parent95f3df6bcb89d370c57b7165f55c5a409d011c8e (diff)
downloadlinux-c5b8ef62b5df9530c573f00f4106742661425392.tar.gz
[ARM] Allow decompressor to be built with -ffunction-sections
Arrange for all the text ends up in the right place when
-ffunction-sections is used.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r--arch/arm/boot/compressed/vmlinux.lds.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/boot/compressed/vmlinux.lds.in b/arch/arm/boot/compressed/vmlinux.lds.in
index eed616113e47..153a07e7222b 100644
--- a/arch/arm/boot/compressed/vmlinux.lds.in
+++ b/arch/arm/boot/compressed/vmlinux.lds.in
@@ -18,6 +18,7 @@ SECTIONS
     _start = .;
     *(.start)
     *(.text)
+    *(.text.*)
     *(.fixup)
     *(.gnu.warning)
     *(.rodata)