Skip to content

Commit

Permalink
nrf_security: Enable when entropy is enabled on nrf71XX
Browse files Browse the repository at this point in the history
Enable nrf_security when entropy is enabled for nRF71XX

Signed-off-by: David Jewsbury <[email protected]>
  • Loading branch information
David Jewsbury committed Dec 23, 2024
1 parent 4e90617 commit 22a40f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subsys/nrf_security/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ config NRF_SECURITY
prompt "Enable nRF Security" if !PSA_PROMPTLESS
depends on SOC_FAMILY_NORDIC_NRF
default y if BUILD_WITH_TFM
# entropy is provided by PSA and NRF_SECURITY on NRF54LX
default y if ENTROPY_PSA_CRYPTO_RNG && SOC_SERIES_NRF54LX
# entropy is provided by PSA and NRF_SECURITY on NRF54LX and NRF71X
default y if ENTROPY_PSA_CRYPTO_RNG && (SOC_SERIES_NRF54LX || SOC_SERIES_NRF71X)
select DISABLE_MBEDTLS_BUILTIN if MBEDTLS
# NCS does not use TF-M's BL2 bootloader, but uses it's own fork
# of MCUBoot instead (CONFIG_BOOTLOADER_MCUBOOT).
Expand Down

0 comments on commit 22a40f2

Please sign in to comment.