mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-10 20:28:59 +00:00
microblaze: Add sbss, scommon and COMMON symbols for clearing
Signed-off-by: Michal Simek <monstr@monstr.eu>
This commit is contained in:
parent
ecdd98799f
commit
870aeda849
1 changed files with 3 additions and 0 deletions
|
@ -60,7 +60,10 @@ SECTIONS
|
||||||
.bss ALIGN(0x4):
|
.bss ALIGN(0x4):
|
||||||
{
|
{
|
||||||
__bss_start = .;
|
__bss_start = .;
|
||||||
|
*(.sbss)
|
||||||
|
*(.scommon)
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
*(COMMON)
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__bss_end = .;
|
__bss_end = .;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue