From 58e8dd56e233f482dc0dbe0cb8f56ef3bab7b998 Mon Sep 17 00:00:00 2001 From: xengineering Date: Fri, 21 Mar 2025 22:33:33 +0100 Subject: fw: zephyr: Add mbedtls module This is required for upcoming WebSocket APIs. --- .gitmodules | 3 +++ fw/CMakeLists.txt | 1 + fw/zephyrproject/modules/crypto/mbedtls | 1 + 3 files changed, 5 insertions(+) create mode 160000 fw/zephyrproject/modules/crypto/mbedtls diff --git a/.gitmodules b/.gitmodules index 033084e..98ea5fb 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,3 +7,6 @@ [submodule "zephyrproject/modules/hal/cmsis"] path = fw/zephyrproject/modules/hal/cmsis url = https://github.com/zephyrproject-rtos/cmsis.git +[submodule "fw/zephyrproject/modules/crypto/mbedtls"] + path = fw/zephyrproject/modules/crypto/mbedtls + url = https://github.com/zephyrproject-rtos/mbedtls.git diff --git a/fw/CMakeLists.txt b/fw/CMakeLists.txt index b7a3783..c0b9484 100644 --- a/fw/CMakeLists.txt +++ b/fw/CMakeLists.txt @@ -8,6 +8,7 @@ set(BOARD "native_sim/native/64") set(ZEPHYR_MODULES "${CMAKE_CURRENT_SOURCE_DIR}/zephyrproject/modules/hal/cmsis" "${CMAKE_CURRENT_SOURCE_DIR}/zephyrproject/modules/hal/stm32" + "${CMAKE_CURRENT_SOURCE_DIR}/zephyrproject/modules/crypto/mbedtls" ) find_package(Zephyr REQUIRED diff --git a/fw/zephyrproject/modules/crypto/mbedtls b/fw/zephyrproject/modules/crypto/mbedtls new file mode 160000 index 0000000..4952e13 --- /dev/null +++ b/fw/zephyrproject/modules/crypto/mbedtls @@ -0,0 +1 @@ +Subproject commit 4952e1328529ee549d412b498ea71c54f30aa3b1 -- cgit v1.2.3-70-g09d2