From: Russell King Date: Sun, 9 Apr 2006 18:08:42 +0000 (+0100) Subject: [ARM] Allow decompressor to be built with -ffunction-sections X-Git-Tag: v2.6.17-rc2~284^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c5b8ef62b5df9530c573f00f4106742661425392;p=platform%2Fkernel%2Flinux-3.10.git [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 --- diff --git a/arch/arm/boot/compressed/vmlinux.lds.in b/arch/arm/boot/compressed/vmlinux.lds.in index eed6161..153a07e 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)