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: Ubuntu-goldfish-3.4.0-4.27~33839^2~9 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=c5b8ef62b5df9530c573f00f4106742661425392;p=mirror_ubuntu-zesty-kernel.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)