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-Url: https://git.stricted.de/?a=commitdiff_plain;h=c5b8ef62b5df9530c573f00f4106742661425392;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.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 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)