Skip to content

Commit 1a1c813

Browse files
tomchythst-nordic
authored andcommitted
builtin_keys: Enable keys on FP1 DKs
Both FP1 and FP1.1 DKs should support builtin keys to verify Nordic manifests. Ref: NCSDK-NONE Signed-off-by: Tomasz Chyrowicz <[email protected]>
1 parent f59692a commit 1a1c813

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

subsys/nrf_security/Kconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ if NRF_SECURITY
5656
config MBEDTLS_ENABLE_BUILTIN_KEYS
5757
bool
5858
default y if SOC_SERIES_NRF54LX && (HW_UNIQUE_KEY || IDENTITY_KEY)
59-
default y if SOC_SERIES_NRF54HX && (SOC_NRF54H20_CPUSEC)
59+
default y if SOC_SERIES_NRF54HX && (SOC_NRF54H20_CPUSEC || SOC_NRF54H20_ENGB_CPUSEC)
6060
help
6161
Promptless option used to control if MBEDTLS should have support for builtin keys or not.
6262

@@ -262,4 +262,7 @@ endchoice
262262
config SOC_NRF54H20_CPUSEC
263263
bool
264264

265+
config SOC_NRF54H20_ENGB_CPUSEC
266+
bool
267+
265268
endmenu

subsys/nrf_security/src/drivers/cracen/psa_driver.Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1853,7 +1853,7 @@ config PSA_NEED_CRACEN_PLATFORM_KEYS
18531853
default y
18541854
depends on PSA_WANT_ALG_GCM
18551855
depends on PSA_WANT_AES_KEY_SIZE_256
1856-
depends on SOC_NRF54H20_CPUSEC
1856+
depends on (SOC_NRF54H20_CPUSEC || SOC_NRF54H20_ENGB_CPUSEC)
18571857

18581858

18591859
endmenu

0 commit comments

Comments
 (0)