[XTENSA] Add .literal sections for various init sectiont to linker script
authorChris Zankel <chris@zankel.net>
Thu, 14 Feb 2008 00:44:19 +0000 (16:44 -0800)
committerChris Zankel <chris@zankel.net>
Thu, 14 Feb 2008 00:44:19 +0000 (16:44 -0800)
Xtensa requires separate .literal section for each .text section.
Adding addition init sections for cpuinit, meminit, and devinit,
broke the Xtensa linker script, so, add these literal sections
manually for now.

Signed-off-by: Chris Zankel <chris@zankel.net>
arch/xtensa/kernel/vmlinux.lds.S

index 7d0f55a..4b717bf 100644 (file)
@@ -136,7 +136,9 @@ SECTIONS
   __init_begin = .;
   .init.text : {
        _sinittext = .;
-       *(.init.literal) INIT_TEXT
+       *(.init.literal) *(.cpuinit.literal) 
+       *(.devinit.literal) *(.meminit.literal)
+       INIT_TEXT
        _einittext = .;
   }