aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorRomain Reignier <[email protected]>2024-09-26 13:24:50 +0200
committerRomain Reignier <[email protected]>2024-09-26 13:24:50 +0200
commit6e2c5d0b4500762b5a045a166c91f8b0e59db10e (patch)
treed61a88f94228c988b91df9ff93debf2f7c78c4e8 /examples
parentaf6fbb0ee19c5200bb4bafb9a10c7557fbcd460c (diff)
rp23: add missing binary info in linker script
See https://github.com/rp-rs/rp-hal/issues/853 And https://github.com/rp-rs/rp-hal/pull/854
Diffstat (limited to 'examples')
-rw-r--r--examples/rp23/memory.x1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/rp23/memory.x b/examples/rp23/memory.x
index 777492062..c803896f6 100644
--- a/examples/rp23/memory.x
+++ b/examples/rp23/memory.x
@@ -31,6 +31,7 @@ SECTIONS {
31 { 31 {
32 __start_block_addr = .; 32 __start_block_addr = .;
33 KEEP(*(.start_block)); 33 KEEP(*(.start_block));
34 KEEP(*(.boot_info));
34 } > FLASH 35 } > FLASH
35 36
36} INSERT AFTER .vector_table; 37} INSERT AFTER .vector_table;