sh: Discard .exit.text/.exit.data at runtime.
authorPaul Mundt <lethal@linux-sh.org>
Tue, 9 Oct 2007 06:23:02 +0000 (15:23 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Tue, 9 Oct 2007 06:23:02 +0000 (15:23 +0900)
These were previously discarded at link time, though as with MIPS
we keep them around until runtime to satisfy .rodata references.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/vmlinux.lds.S

index 3d16d6ef47e1f31cdadefbb836cf66baff97df87..6d5abba2ee271a8147be2f56b2502ccd75600859 100644 (file)
@@ -91,6 +91,11 @@ SECTIONS
   __con_initcall_end = .;
   SECURITY_INIT
 
+  /* .exit.text is discarded at runtime, not link time, to deal with
+     references from .rodata */
+  .exit.text : { *(.exit.text) }
+  .exit.data : { *(.exit.data) }
+
 #ifdef CONFIG_BLK_DEV_INITRD
   . = ALIGN(PAGE_SIZE);