mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-24 00:35:34 +03:00
[LD] Add missing SYSTEM_MEMORY section to flash_f7_split
This commit is contained in:
parent
7a32cd8417
commit
25f483db64
1 changed files with 9 additions and 0 deletions
|
@ -67,6 +67,15 @@ SECTIONS
|
|||
__exidx_end = .;
|
||||
} >FLASH
|
||||
|
||||
/* System memory (read-only bootloader) interrupt vector */
|
||||
.system_isr_vector (NOLOAD) :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
PROVIDE (system_isr_vector_table_base = .);
|
||||
KEEP(*(.system_isr_vector)) /* Bootloader code */
|
||||
. = ALIGN(4);
|
||||
} >SYSTEM_MEMORY
|
||||
|
||||
.busdev_registry :
|
||||
{
|
||||
PROVIDE_HIDDEN (__busdev_registry_start = .);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue