diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2007-05-22 00:33:05 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-22 06:20:56 -0400 |
commit | 832a791c580a86cbeea5bb12a984d95b1f458539 (patch) | |
tree | ce822a9befbcb516eb8dd33011c437cc4d613ac8 /arch | |
parent | 177e9ea49deea238f59bb0b1708cfc60b75828fb (diff) |
[POWERPC] Fix powerpc vmlinux.lds.S
Sam's recent change in 7664709b44a13e2e0b545e2dd8e7b8797a1748dc
broke things for us because we ended up with *(.text.*) before
*(.text), whereas previously *(.text) was first. This was
important because the start of the text section contains the
kernel entry point.
In fact, we don't need that *(.text.*) thing anymore and it
incorrectly matched .text.init.refok, thus putting it before
.text. .. ouch !
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/vmlinux.lds.S | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S index f7d7bf19e4fb..21c39ff2dc39 100644 --- a/arch/powerpc/kernel/vmlinux.lds.S +++ b/arch/powerpc/kernel/vmlinux.lds.S | |||
@@ -34,7 +34,6 @@ SECTIONS | |||
34 | /* Text and gots */ | 34 | /* Text and gots */ |
35 | .text : { | 35 | .text : { |
36 | _text = .; | 36 | _text = .; |
37 | *(.text.*) | ||
38 | TEXT_TEXT | 37 | TEXT_TEXT |
39 | SCHED_TEXT | 38 | SCHED_TEXT |
40 | LOCK_TEXT | 39 | LOCK_TEXT |