diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-04-09 19:08:42 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-04-09 19:08:42 +0100 |
commit | c5b8ef62b5df9530c573f00f4106742661425392 (patch) | |
tree | f111f10bc13348d288e5f13f660759b5f43a92ff | |
parent | 95f3df6bcb89d370c57b7165f55c5a409d011c8e (diff) | |
download | blackbird-op-linux-c5b8ef62b5df9530c573f00f4106742661425392.tar.gz blackbird-op-linux-c5b8ef62b5df9530c573f00f4106742661425392.zip |
[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>
-rw-r--r-- | arch/arm/boot/compressed/vmlinux.lds.in | 1 |
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) |