Skip to content

Commit

Permalink
fixup! nrf_security: Make PSA SSF client independent
Browse files Browse the repository at this point in the history
  • Loading branch information
Vge0rge committed Oct 1, 2024
1 parent 0ccf135 commit 827893f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion subsys/nrf_security/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if(CONFIG_BUILD_WITH_TFM)
include(${NRF_SECURITY_ROOT}/cmake/config_to_tf-m.cmake)
endif()

if(CONFIG_BUILD_WITH_TFM OR (CONFIG_NRF_PSA_SSF_CRYPTO_CLIENT AND CONFIG_NRF_SECURITY))
if(CONFIG_BUILD_WITH_TFM OR (CONFIG_PSA_SSF_CRYPTO_CLIENT AND CONFIG_NRF_SECURITY))
# We enable either TF-M or the SSF client PSA crypto interface but we are
# not in the secure image build

Expand Down
2 changes: 1 addition & 1 deletion subsys/nrf_security/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ config NORDIC_SECURITY_BACKEND
Note that this will enable nrf_oberon by default. Multiple backends is
not supported.

config NRF_PSA_SSF_CRYPTO_CLIENT
config PSA_SSF_CRYPTO_CLIENT
bool
prompt "PSA crypto provided through SSF"
default y
Expand Down
2 changes: 1 addition & 1 deletion subsys/nrf_security/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ add_library(${mbedcrypto_target}
${src_crypto}
)

if(CONFIG_NRF_PSA_SSF_CRYPTO_CLIENT)
if(CONFIG_PSA_SSF_CRYPTO_CLIENT)
add_subdirectory(ssf_secdom)
endif()

Expand Down

0 comments on commit 827893f

Please sign in to comment.