1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/msp430_common: add flash_writable section to linker script

This commit is contained in:
Ollrogge 2022-03-07 11:24:39 +01:00
parent 5587f5d88f
commit 6a40815904

View File

@ -12,6 +12,10 @@ SECTIONS
_srom = ORIGIN(ROM);
_erom = ORIGIN(ROM) + LENGTH(ROM);
.flash_writable (NOLOAD) : {
KEEP(*(SORT(.flash_writable.*)))
} > ROM
.end_fw (NOLOAD) : ALIGN(4) {
_end_fw = . ;
} > ROM