Skip to content

Commit 67cb792

Browse files
committed
Fix for verification issue (problem with .keystore location)
1 parent acfd97b commit 67cb792

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

hal/mpfs250-m.ld

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ SECTIONS
8686
_global_pointer = . + 0x800;
8787
*(.sdata*)
8888
. = ALIGN(4);
89+
/* Public key store - must be in a copied section so it's available
90+
* in L2 SRAM after startup copies .data from eNVM */
91+
KEEP(*(.keystore*))
92+
. = ALIGN(4);
8993
_end_data = .;
9094
} > L2_SCRATCH AT > FLASH_ENVM
9195

0 commit comments

Comments
 (0)