Skip to content

Commit 17ba479

Browse files
57300kartben
authored andcommitted
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 <[email protected]>
1 parent c2d011f commit 17ba479

File tree

1 file changed

+4
-4
lines changed
  • share/sysbuild/images/bootloader

1 file changed

+4
-4
lines changed

share/sysbuild/images/bootloader/Kconfig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ endchoice
116116

117117
config SIGNATURE_TYPE
118118
string
119-
default NONE if BOOT_SIGNATURE_TYPE_NONE
120-
default RSA if BOOT_SIGNATURE_TYPE_RSA
121-
default ECDSA_P256 if BOOT_SIGNATURE_TYPE_ECDSA_P256
122-
default ED25519 if BOOT_SIGNATURE_TYPE_ED25519
119+
default "NONE" if BOOT_SIGNATURE_TYPE_NONE
120+
default "RSA" if BOOT_SIGNATURE_TYPE_RSA
121+
default "ECDSA_P256" if BOOT_SIGNATURE_TYPE_ECDSA_P256
122+
default "ED25519" if BOOT_SIGNATURE_TYPE_ED25519
123123

124124
choice BOOT_SIGNATURE_TYPE
125125
prompt "Signature type"

0 commit comments

Comments
 (0)