diff options
author | Michal Simek <monstr@monstr.eu> | 2009-08-14 17:02:35 +0200 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2009-09-14 14:40:03 +0200 |
commit | aedb4683097d3e5de8833f4a9e34664d3d2bd077 (patch) | |
tree | 0a0e4cb6d19f86113dd5b99ebb0d911f8b87de3f /board | |
parent | e7963772eb78a6aa1fa65063d64eab3a8626daac (diff) | |
download | u-boot-imx-aedb4683097d3e5de8833f4a9e34664d3d2bd077.zip u-boot-imx-aedb4683097d3e5de8833f4a9e34664d3d2bd077.tar.gz u-boot-imx-aedb4683097d3e5de8833f4a9e34664d3d2bd077.tar.bz2 |
microblaze: Add sbss, scommon and COMMON symbols for clearing
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'board')
-rw-r--r-- | board/xilinx/microblaze-generic/u-boot.lds | 3 |
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 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 = .; } |