Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fbeb7370b6eef14bf12787d05c7460fae562d0be
Commit:     fbeb7370b6eef14bf12787d05c7460fae562d0be
Parent:     1ffe6646babf8471714e649849ec2c9662bf410c
Author:     Mike Frysinger <[EMAIL PROTECTED]>
AuthorDate: Mon Aug 27 15:02:20 2007 +0800
Committer:  Bryan Wu <[EMAIL PROTECTED]>
CommitDate: Mon Aug 27 15:02:20 2007 +0800

    Blackfin arch: parse input sections properly when using 
-ffunction-sections/-fdata-sections
    
    Signed-off-by: Mike Frysinger <[EMAIL PROTECTED]>
    Signed-off-by: Bryan Wu <[EMAIL PROTECTED]>
---
 arch/blackfin/kernel/vmlinux.lds.S |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/arch/blackfin/kernel/vmlinux.lds.S 
b/arch/blackfin/kernel/vmlinux.lds.S
index fb53780..e40b66a 100644
--- a/arch/blackfin/kernel/vmlinux.lds.S
+++ b/arch/blackfin/kernel/vmlinux.lds.S
@@ -46,6 +46,7 @@ SECTIONS
                __text = .;
                _text = .;
                __stext = .;
+               *(.text.*)
                TEXT_TEXT
                SCHED_TEXT
                LOCK_TEXT
@@ -73,6 +74,7 @@ SECTIONS
                . = ALIGN(THREAD_SIZE);
                *(.data.init_task)
                DATA_DATA
+               *(.data.*)
                CONSTRUCTORS
 
                . = ALIGN(32);
@@ -164,7 +166,7 @@ SECTIONS
        {
                . = ALIGN(4);
                ___bss_start = .;
-               *(.bss)
+               *(.bss .bss.*)
                *(COMMON)
                . = ALIGN(4);
                ___bss_stop = .;
-
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