mbedtls module: Fix for other POSIX arch boards
Instead of detecting that we are in a native/POSIX arch based board by checking for each board specifically, let checks for the architecture. In that way other boards (like the upcoming nrf53_bsim ones) will also work. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
parent
b255182a13
commit
5029922384
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@
|
|||
#define MBEDTLS_PSA_CRYPTO_C
|
||||
#define MBEDTLS_USE_PSA_CRYPTO
|
||||
|
||||
#if defined(CONFIG_BOARD_NRF52_BSIM) || defined(CONFIG_BOARD_NATIVE_POSIX)
|
||||
#if defined(CONFIG_ARCH_POSIX)
|
||||
#define MBEDTLS_PSA_KEY_SLOT_COUNT 64
|
||||
#define MBEDTLS_PSA_CRYPTO_STORAGE_C
|
||||
#define MBEDTLS_PSA_ITS_FILE_C
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue