From: Russell King Date: Fri, 1 Oct 2010 13:26:56 +0000 (+0100) Subject: ARM: vmlinux.lds: Move unwind tables into _stext.._etext X-Git-Tag: firefly_0821_release~7613^2~3645^2~9^5~6 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=74b0ec0708e7c8c530079b737f32c55597d062cc;p=firefly-linux-kernel-4.4.55.git ARM: vmlinux.lds: Move unwind tables into _stext.._etext Signed-off-by: Russell King --- diff --git a/arch/arm/kernel/vmlinux.lds.S b/arch/arm/kernel/vmlinux.lds.S index fd5750b8ac84..065d35de0e01 100644 --- a/arch/arm/kernel/vmlinux.lds.S +++ b/arch/arm/kernel/vmlinux.lds.S @@ -109,8 +109,6 @@ SECTIONS RO_DATA(PAGE_SIZE) - _etext = .; /* End of text and rodata section */ - #ifdef CONFIG_ARM_UNWIND /* * Stack unwinding tables @@ -128,6 +126,8 @@ SECTIONS } #endif + _etext = .; /* End of text and rodata section */ + #ifdef CONFIG_XIP_KERNEL __data_loc = ALIGN(4); /* location in binary */ . = PAGE_OFFSET + TEXT_OFFSET;