Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4f8d98ff4825336b23372bb552852625fc90d3b1
Commit:     4f8d98ff4825336b23372bb552852625fc90d3b1
Parent:     e584d85fb1cba2b08c266348b58eb4a881a88b40
Author:     Chris Zankel <[EMAIL PROTECTED]>
AuthorDate: Wed Feb 13 16:44:19 2008 -0800
Committer:  Chris Zankel <[EMAIL PROTECTED]>
CommitDate: Wed Feb 13 16:44:19 2008 -0800

    [XTENSA] Add .literal sections for various init sectiont to linker script
    
    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 <[EMAIL PROTECTED]>
---
 arch/xtensa/kernel/vmlinux.lds.S |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/arch/xtensa/kernel/vmlinux.lds.S b/arch/xtensa/kernel/vmlinux.lds.S
index 7d0f55a..4b717bf 100644
--- a/arch/xtensa/kernel/vmlinux.lds.S
+++ b/arch/xtensa/kernel/vmlinux.lds.S
@@ -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 = .;
   }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to