Commit 74b0ec07 authored by Russell King's avatar Russell King

ARM: vmlinux.lds: Move unwind tables into _stext.._etext

Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 842eab40
...@@ -109,8 +109,6 @@ SECTIONS ...@@ -109,8 +109,6 @@ SECTIONS
RO_DATA(PAGE_SIZE) RO_DATA(PAGE_SIZE)
_etext = .; /* End of text and rodata section */
#ifdef CONFIG_ARM_UNWIND #ifdef CONFIG_ARM_UNWIND
/* /*
* Stack unwinding tables * Stack unwinding tables
...@@ -128,6 +126,8 @@ SECTIONS ...@@ -128,6 +126,8 @@ SECTIONS
} }
#endif #endif
_etext = .; /* End of text and rodata section */
#ifdef CONFIG_XIP_KERNEL #ifdef CONFIG_XIP_KERNEL
__data_loc = ALIGN(4); /* location in binary */ __data_loc = ALIGN(4); /* location in binary */
. = PAGE_OFFSET + TEXT_OFFSET; . = PAGE_OFFSET + TEXT_OFFSET;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment