]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
microblaze: Add sbss, scommon and COMMON symbols for clearing
authorMichal Simek <monstr@monstr.eu>
Fri, 14 Aug 2009 15:02:35 +0000 (17:02 +0200)
committerTom Rix <Tom.Rix@windriver.com>
Sat, 3 Oct 2009 14:04:22 +0000 (09:04 -0500)
Signed-off-by: Michal Simek <monstr@monstr.eu>
board/xilinx/microblaze-generic/u-boot.lds

index 5a08680150008e12134d8f083faabe461a73bc4f..c20c6dd1d67746e015a6e477b91e7d6b47355318 100644 (file)
@@ -60,7 +60,10 @@ SECTIONS
        .bss ALIGN(0x4):
        {
                __bss_start = .;
+               *(.sbss)
+               *(.scommon)
                *(.bss)
+               *(COMMON)
                . = ALIGN(4);
                __bss_end = .;
        }