sysbuild: Fix Kconfig symbol SIGNATURE_TYPE
Add missing quotes around string values, so that they won't be interpreted as undefined symbol names. Signed-off-by: Grzegorz Swiderski <grzegorz.swiderski@nordicsemi.no>
This commit is contained in:
parent
c2d011f366
commit
17ba479585
1 changed files with 4 additions and 4 deletions
|
@ -116,10 +116,10 @@ endchoice
|
||||||
|
|
||||||
config SIGNATURE_TYPE
|
config SIGNATURE_TYPE
|
||||||
string
|
string
|
||||||
default NONE if BOOT_SIGNATURE_TYPE_NONE
|
default "NONE" if BOOT_SIGNATURE_TYPE_NONE
|
||||||
default RSA if BOOT_SIGNATURE_TYPE_RSA
|
default "RSA" if BOOT_SIGNATURE_TYPE_RSA
|
||||||
default ECDSA_P256 if BOOT_SIGNATURE_TYPE_ECDSA_P256
|
default "ECDSA_P256" if BOOT_SIGNATURE_TYPE_ECDSA_P256
|
||||||
default ED25519 if BOOT_SIGNATURE_TYPE_ED25519
|
default "ED25519" if BOOT_SIGNATURE_TYPE_ED25519
|
||||||
|
|
||||||
choice BOOT_SIGNATURE_TYPE
|
choice BOOT_SIGNATURE_TYPE
|
||||||
prompt "Signature type"
|
prompt "Signature type"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue