瀏覽代碼

microblaze: Add sbss, scommon and COMMON symbols for clearing

Signed-off-by: Michal Simek <monstr@monstr.eu>
Michal Simek 15 年之前
父節點
當前提交
aedb468309
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      board/xilinx/microblaze-generic/u-boot.lds

+ 3 - 0
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 = .;
 	}