diff options
-rw-r--r-- | ld_scripts/arm_flash_ram.ld | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ld_scripts/arm_flash_ram.ld b/ld_scripts/arm_flash_ram.ld index 34b8a80..df0a578 100644 --- a/ld_scripts/arm_flash_ram.ld +++ b/ld_scripts/arm_flash_ram.ld @@ -54,6 +54,12 @@ SECTIONS { PROVIDE(_data_rom = .); + .bootinfo : { + *(.bootinfo) + } > ram + + . = ALIGN(4); + .data : { PROVIDE(_data_start = .); *(.data) |