arch: arm: aarch64: Fix _vector_end symbol placement
This commit relocates the `_vector_end` symbol that was previously placed after the OpenOCD sections to before these sections, as the OpenOCD debug sections are not part of the "vector table." Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
parent
c4cb84140f
commit
f2e2b66215
1 changed files with 2 additions and 2 deletions
|
@ -132,10 +132,10 @@ SECTIONS
|
|||
|
||||
KEEP(*(.vectors))
|
||||
|
||||
_vector_end = .;
|
||||
|
||||
KEEP(*(.openocd_dbg))
|
||||
KEEP(*(".openocd_dbg.*"))
|
||||
|
||||
_vector_end = .;
|
||||
} GROUP_LINK_IN(ROMABLE_REGION)
|
||||
|
||||
#ifdef CONFIG_CODE_DATA_RELOCATION
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue