You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Allow more statical allocations by reordering the sections
in the mcuboot.ld and in default.ld.
- Reorder the ROM sections to cover the cases described in
the `common-rom-common-kernel-devices.ld`.
Changing the order of .rodata and .text we prevents to create an
overlapped segments issue.
Signed-off-by: Marek Matej <[email protected]>
* of instructions. This means that any configuration (e.g. MMU, PMS) must allow
838
+
* safe access to up to 16 bytes after the last real instruction, add
839
+
* dummy bytes to ensure this
840
+
*/
841
+
. += 16;
842
+
843
+
_text_end = ABSOLUTE(.);
844
+
_instruction_reserved_end = ABSOLUTE(.); /* This is a symbol marking the flash.text end, this can be used for mmu driver to maintain virtual address */
* of instructions. This means that any configuration (e.g. MMU, PMS) must allow
920
-
* safe access to up to 16 bytes after the last real instruction, add
921
-
* dummy bytes to ensure this
922
-
*/
923
-
. += 16;
924
-
925
-
_text_end = ABSOLUTE(.);
926
-
_instruction_reserved_end = ABSOLUTE(.); /* This is a symbol marking the flash.text end, this can be used for mmu driver to maintain virtual address */
0 commit comments