Skip to content

Commit 0d8cd81

Browse files
committed
[nrf noup] matter: crypto: Use psa_crypto_config
-Previously there was a library called mbedcrypto_common which was used to pass build-related configurations to matter. This is changed to instead reference to the following: -psa_crypto_config (for PSA and Mbed TLS configurations) -psa_interface (for PSA crypto include files) -The commit also removes passing the PSA crypto driver config file as this is no longer needed for an interface build (call from matter) Signed-off-by: Frank Audun Kvamtrø <frank.kvamtro@nordicsemi.no>
1 parent f4a27b1 commit 0d8cd81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/nrfconnect/chip-module/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ endif()
6262

6363
if (CONFIG_NRF_SECURITY)
6464
zephyr_include_directories($<TARGET_PROPERTY:mbedtls_external,INTERFACE_INCLUDE_DIRECTORIES>)
65-
zephyr_include_directories($<TARGET_PROPERTY:mbedcrypto_common,INTERFACE_INCLUDE_DIRECTORIES>)
65+
zephyr_include_directories($<TARGET_PROPERTY:psa_crypto_config,INTERFACE_INCLUDE_DIRECTORIES>)
66+
zephyr_include_directories($<TARGET_PROPERTY:psa_interface,INTERFACE_INCLUDE_DIRECTORIES>)
6667
if(TARGET platform_cc3xx)
6768
zephyr_include_directories($<TARGET_PROPERTY:platform_cc3xx,INTERFACE_INCLUDE_DIRECTORIES>)
6869
endif()
6970
matter_add_flags(-DMBEDTLS_CONFIG_FILE=<nrf-config.h>)
70-
matter_add_flags(-DMBEDTLS_PSA_CRYPTO_CONFIG_FILE=<nrf-psa-crypto-want-config.h>)
71-
matter_add_flags(-DMBEDTLS_PSA_CRYPTO_USER_CONFIG_FILE=<nrf-psa-crypto-config.h>)
71+
matter_add_flags(-DMBEDTLS_PSA_CRYPTO_CONFIG_FILE=<nrf-psa-crypto-config.h>)
7272
elseif(CONFIG_MBEDTLS)
7373
zephyr_include_directories($<TARGET_PROPERTY:mbedTLS,INTERFACE_INCLUDE_DIRECTORIES>)
7474
zephyr_compile_definitions($<TARGET_PROPERTY:mbedTLS,INTERFACE_COMPILE_DEFINITIONS>)

0 commit comments

Comments
 (0)