mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-01 13:38:38 -04:00
HAL_ChibiOS: moved app_descriptor to start of flash
this prevents the bootloader from finding it's own image as a false posititve in searching for the app_descriptor
This commit is contained in:
parent
b2a2556829
commit
b5af1edf0d
@ -70,6 +70,9 @@ SECTIONS
|
||||
|
||||
.text : ALIGN(4) SUBALIGN(4)
|
||||
{
|
||||
/* we want app_descriptor near the start of flash so a false
|
||||
positive isn't found by the bootloader (eg. ROMFS) */
|
||||
KEEP(*(.app_descriptor));
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.rodata)
|
||||
|
Loading…
Reference in New Issue
Block a user