summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Simek <[email protected]>2009-08-14 17:02:35 +0200
committerTom Rix <[email protected]>2009-10-03 09:04:22 -0500
commit870aeda849743ea50d799810d8ab97cd4b5d431f (patch)
treefc78dfa38528618410ab9a78539d5af56be848ae
parentecdd98799fab9174928f114778b8b261944b23b1 (diff)
microblaze: Add sbss, scommon and COMMON symbols for clearing
Signed-off-by: Michal Simek <[email protected]>
-rw-r--r--board/xilinx/microblaze-generic/u-boot.lds3
1 files changed, 3 insertions, 0 deletions
diff --git a/board/xilinx/microblaze-generic/u-boot.lds b/board/xilinx/microblaze-generic/u-boot.lds
index 5a086801500..c20c6dd1d67 100644
--- a/board/xilinx/microblaze-generic/u-boot.lds
+++ b/board/xilinx/microblaze-generic/u-boot.lds
@@ -60,7 +60,10 @@ SECTIONS
.bss ALIGN(0x4):
{
__bss_start = .;
+ *(.sbss)
+ *(.scommon)
*(.bss)
+ *(COMMON)
. = ALIGN(4);
__bss_end = .;
}