mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-29 11:52:59 +08:00
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:
parent
86d3195518
commit
9b87d273b5
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ SECTIONS
|
||||||
*(.bss.*)
|
*(.bss.*)
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__bss_end__ = .;
|
__bss_end__ = .;
|
||||||
} >ram :bss
|
} >ram AT>ram :bss
|
||||||
|
|
||||||
.commonarea (NOLOAD) : {
|
.commonarea (NOLOAD) : {
|
||||||
*(.commonarea)
|
*(.commonarea)
|
||||||
|
|
Loading…
Reference in a new issue