| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH] vmlinux.lds.S: handle .text.* |
| From: | Atsushi Nemoto <anemo@mba.ocn.ne.jp> |
| Date: | Tue, 05 Aug 2008 23:45:14 +0900 (JST) |
| Cc: | ralf@linux-mips.org |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
The -ffunction-sections puts each text in .text.function_name section.
Without this patch, most functions are placed outside _text..._etext
area and it breaks show_stacktrace(), etc.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
---
diff --git a/arch/mips/kernel/vmlinux.lds.S b/arch/mips/kernel/vmlinux.lds.S
index b5470ce..afb119f 100644
--- a/arch/mips/kernel/vmlinux.lds.S
+++ b/arch/mips/kernel/vmlinux.lds.S
@@ -36,6 +36,7 @@ SECTIONS
SCHED_TEXT
LOCK_TEXT
KPROBES_TEXT
+ *(.text.*)
*(.fixup)
*(.gnu.warning)
} :text = 0
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Debugging MIPS cpu with a probe, how?, TriKri |
|---|---|
| Next by Date: | Re: [Linux-fbdev-devel] [PATCH] au1200fb: fixup PM support., Krzysztof Helt |
| Previous by Thread: | Debugging MIPS cpu with a probe, how?, TriKri |
| Next by Thread: | Re: [PATCH] vmlinux.lds.S: handle .text.*, Atsushi Nemoto |
| Indexes: | [Date] [Thread] [Top] [All Lists] |