Fix minor consistency issue in armsrc/ldscript

BSS should be AT>ram (though it really doesn't matter because load size
is 0)
This commit is contained in:
marcansoft 2010-02-26 21:40:14 +00:00
parent 86d3195518
commit 9b87d273b5

View file

@ -60,7 +60,7 @@ SECTIONS
*(.bss.*)
. = ALIGN(4);
__bss_end__ = .;
} >ram :bss
} >ram AT>ram :bss
.commonarea (NOLOAD) : {
*(.commonarea)