Commit 059e86f4 authored by Aleksandr Khromykh's avatar Aleksandr Khromykh Committed by Benjamin Cabé
Browse files

tests: Bluetooth: Mesh: restore tinycrypt mesh bsim



Commit restores ble mesh bsim tests with tinycrypt.

Signed-off-by: default avatarAleksandr Khromykh <aleksandr.khromykh@nordicsemi.no>
parent 99c39884
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -18,7 +18,8 @@ app=tests/bsim/bluetooth/mesh conf_overlay=overlay_low_lat.conf compile
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_psa.conf compile
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_workq_sys.conf compile
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_multi_adv_sets.conf compile
app=tests/bsim/bluetooth/mesh conf_overlay="overlay_pst.conf;overlay_psa.conf" compile
app=tests/bsim/bluetooth/mesh \
  conf_overlay="overlay_pst.conf;overlay_ss.conf;overlay_psa.conf" compile
app=tests/bsim/bluetooth/mesh conf_overlay="overlay_gatt.conf;overlay_psa.conf" compile
app=tests/bsim/bluetooth/mesh conf_overlay="overlay_gatt.conf;overlay_workq_sys.conf" compile
app=tests/bsim/bluetooth/mesh conf_overlay="overlay_low_lat.conf;overlay_psa.conf" compile
@@ -27,7 +28,7 @@ app=tests/bsim/bluetooth/mesh conf_overlay="overlay_pst.conf;overlay_gatt.conf"
app=tests/bsim/bluetooth/mesh \
  conf_overlay="overlay_gatt.conf;overlay_multi_adv_sets.conf" compile
app=tests/bsim/bluetooth/mesh \
  conf_overlay="overlay_pst.conf;overlay_gatt.conf;overlay_psa.conf" compile
  conf_overlay="overlay_pst.conf;overlay_ss.conf;overlay_gatt.conf;overlay_psa.conf" compile
app=tests/bsim/bluetooth/mesh \
  conf_overlay="overlay_pst.conf;overlay_gatt.conf;overlay_workq_sys.conf" compile
wait_for_background_jobs
+0 −3
Original line number Diff line number Diff line
# Increase the number of key slots in PSA Crypto core
CONFIG_MBEDTLS_PSA_KEY_SLOT_COUNT=64

# Increase the number of key slots in PSA Crypto core
CONFIG_MBEDTLS_PSA_KEY_SLOT_COUNT=64

# Enable mbedTLS PSA as a crypto backend
CONFIG_BT_MESH_USES_MBEDTLS_PSA=y
+0 −1
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@ CONFIG_BT_SETTINGS=y
CONFIG_FLASH=y
CONFIG_FLASH_MAP=y
CONFIG_NVS=y
CONFIG_SECURE_STORAGE=y

CONFIG_BT_PERIPHERAL=y
CONFIG_BT_MESH_GATT_PROXY=y
+1 −0
Original line number Diff line number Diff line
CONFIG_SECURE_STORAGE=y
+2 −1
Original line number Diff line number Diff line
@@ -74,4 +74,5 @@ CONFIG_BT_TESTING=y
# Needed for RPR tests due to huge amount of retransmitted messages
CONFIG_BT_MESH_MSG_CACHE_SIZE=64

CONFIG_MBEDTLS_PSA_KEY_SLOT_COUNT=64
# Enable tinycrypt as a crypto backend
CONFIG_BT_MESH_USES_TINYCRYPT=y
Loading