From: Michal Simek Date: Fri, 14 Aug 2009 15:02:35 +0000 (+0200) Subject: microblaze: Add sbss, scommon and COMMON symbols for clearing X-Git-Tag: v2009.11-rc1~133^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aedb4683097d3e5de8833f4a9e34664d3d2bd077;p=platform%2Fkernel%2Fu-boot.git microblaze: Add sbss, scommon and COMMON symbols for clearing Signed-off-by: Michal Simek --- diff --git a/board/xilinx/microblaze-generic/u-boot.lds b/board/xilinx/microblaze-generic/u-boot.lds index 5a08680..c20c6dd 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 = .; }