We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acfd97b commit 67cb792Copy full SHA for 67cb792
1 file changed
hal/mpfs250-m.ld
@@ -86,6 +86,10 @@ SECTIONS
86
_global_pointer = . + 0x800;
87
*(.sdata*)
88
. = 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);
93
_end_data = .;
94
} > L2_SCRATCH AT > FLASH_ENVM
95
0 commit comments