Skip to content

Commit

Permalink
ARM: vmlinux.lds: Move unwind tables into _stext.._etext
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King committed Oct 8, 2010
1 parent 842eab4 commit 74b0ec0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ SECTIONS

RO_DATA(PAGE_SIZE)

_etext = .; /* End of text and rodata section */

#ifdef CONFIG_ARM_UNWIND
/*
* Stack unwinding tables
Expand All @@ -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;
Expand Down

0 comments on commit 74b0ec0

Please sign in to comment.