projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ecdd987
)
microblaze: Add sbss, scommon and COMMON symbols for clearing
author
Michal Simek
<monstr@monstr.eu>
Fri, 14 Aug 2009 15:02:35 +0000
(17:02 +0200)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/board/xilinx/microblaze-generic/u-boot.lds
b/board/xilinx/microblaze-generic/u-boot.lds
index
5a08680
..
c20c6dd
100644
(file)
--- 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 = .;
}