Skip to content

Commit 8bfdf5b

Browse files
committed
Explicitly place .keystore
1 parent 5cd5a19 commit 8bfdf5b

5 files changed

Lines changed: 30 additions & 0 deletions

File tree

hal/nrf5340-ns.ld

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ SECTIONS
2626
*(.ARM.exidx*)
2727
} > FLASH
2828

29+
.keystore :
30+
{
31+
. = ALIGN(4);
32+
KEEP(*(.keystore*))
33+
} > FLASH
34+
2935
_stored_data = .;
3036

3137
.data : AT (_stored_data)

hal/nrf54l-ns.ld

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ SECTIONS
2525
*(.ARM.exidx*)
2626
} > FLASH
2727

28+
.keystore :
29+
{
30+
. = ALIGN(4);
31+
KEEP(*(.keystore*))
32+
} > FLASH
33+
2834
_stored_data = .;
2935

3036
.data : AT (_stored_data)

hal/stm32h5-ns.ld

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ SECTIONS
2222
*(.ARM.exidx*)
2323
} > FLASH
2424

25+
.keystore :
26+
{
27+
. = ALIGN(4);
28+
KEEP(*(.keystore*))
29+
} > FLASH
30+
2531
_stored_data = .;
2632
.data : AT (_stored_data)
2733
{

hal/stm32l5-ns.ld

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ SECTIONS
2222
*(.ARM.exidx*)
2323
} > FLASH
2424

25+
.keystore :
26+
{
27+
. = ALIGN(4);
28+
KEEP(*(.keystore*))
29+
} > FLASH
30+
2531
_stored_data = .;
2632
.data : AT (_stored_data)
2733
{

hal/stm32u5-ns.ld

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ SECTIONS
2222
*(.ARM.exidx*)
2323
} > FLASH
2424

25+
.keystore :
26+
{
27+
. = ALIGN(4);
28+
KEEP(*(.keystore*))
29+
} > FLASH
30+
2531
_stored_data = .;
2632
.data : AT (_stored_data)
2733
{

0 commit comments

Comments
 (0)