Browse Source
It is possible to either set the keyfile locations in board configuration or with the same environment variables as before. Signed-off-by: Jukka Laitinen <jukkax@ssrc.tii.ae>master
3 changed files with 47 additions and 25 deletions
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
CONFIG_BOARD_CRYPTO=y |
||||
CONFIG_DRIVERS_SW_CRYPTO=y |
||||
CONFIG_DRIVERS_STUB_KEYSTORE=y |
||||
CONFIG_PUBLIC_KEY0="../../../Tools/test_keys/key0.pub" |
||||
CONFIG_PUBLIC_KEY1="../../../Tools/test_keys/rsa2048.pub" |
@ -1,6 +1,24 @@
@@ -1,6 +1,24 @@
|
||||
menuconfig DRIVERS_STUB_KEYSTORE |
||||
menu "stub_keystore configuration" |
||||
menuconfig DRIVERS_STUB_KEYSTORE |
||||
bool "stub_keystore" |
||||
depends on DRIVERS_SW_CRYPTO |
||||
default n |
||||
---help--- |
||||
Enable support for stub_keystore |
||||
|
||||
menuconfig PUBLIC_KEY0 |
||||
string "Path to public key 0" |
||||
depends on DRIVERS_STUB_KEYSTORE |
||||
|
||||
menuconfig PUBLIC_KEY1 |
||||
string "Path to public key 1" |
||||
depends on DRIVERS_STUB_KEYSTORE |
||||
|
||||
menuconfig PUBLIC_KEY2 |
||||
string "Path to public key 2" |
||||
depends on DRIVERS_STUB_KEYSTORE |
||||
|
||||
menuconfig PUBLIC_KEY3 |
||||
string "Path to public key 3" |
||||
depends on DRIVERS_STUB_KEYSTORE |
||||
endmenu |
||||
|
Loading…
Reference in new issue