Skip to content

Commit 61afd3e

Browse files
committed
Update mbedtls
1 parent 7403750 commit 61afd3e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.devcontainer/All/Dockerfile.All.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ RUN git clone --branch v6.4.0_rel --recursive https://github.com/eclipse-threadx
8080
# Clone dependent repos (mbedtls, fatfs and littlefs)
8181
RUN git clone --branch R0.15a https://github.com/abbrev/fatfs.git --depth 1 ./sources/fatfs \
8282
&& git clone --branch v2.9.3 https://github.com/littlefs-project/littlefs --depth 1 ./sources/littlefs \
83-
&& git clone --branch mbedtls-3.6.0 https://github.com/ARMmbed/mbedtls.git --depth 1 ./sources/mbedtls \
83+
&& git clone --branch mbedtls-3.6.4 https://github.com/ARMmbed/mbedtls.git --depth 1 ./sources/mbedtls \
8484
&& cd ./sources/mbedtls \
8585
&& git submodule update --init --recursive
8686

.devcontainer/All/scripts/git-pull-repos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ git svn clone http://svn.code.sf.net/p/chibios/code/branches/stable_21.11.x -rHE
1515
cd /sources/ChibiOs-Contrib
1616
git pull origin chibios-21.11.x
1717
cd /sources/mbedtls
18-
git pull origin mbedtls-3.6.0
18+
git pull origin mbedtls-3.6.4
1919
git submodule update --init
2020
cd /sources/fatfs
2121
git pull origin R0.15a

.devcontainer/AzureRTOS/Dockerfile.AzureRTOS.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ RUN git clone --branch v6.4.0_rel --recursive https://github.com/eclipse-threadx
6969
# Clone dependent repos (mbedtls, fatfs and littlefs)
7070
RUN git clone --branch R0.15a https://github.com/abbrev/fatfs.git --depth 1 ./sources/fatfs \
7171
&& git clone --branch v2.9.3 https://github.com/littlefs-project/littlefs --depth 1 ./sources/littlefs \
72-
&& git clone --branch mbedtls-3.6.0 https://github.com/ARMmbed/mbedtls.git --depth 1 ./sources/mbedtls \
72+
&& git clone --branch mbedtls-3.6.4 https://github.com/ARMmbed/mbedtls.git --depth 1 ./sources/mbedtls \
7373
&& cd ./sources/mbedtls \
7474
&& git submodule update --init --recursive
7575

.devcontainer/ChibiOS/Dockerfile.ChibiOS.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ RUN git clone --branch nf-build https://github.com/nanoframework/STM32CubeL4.git
6868
RUN git clone --branch R0.15a https://github.com/abbrev/fatfs.git --depth 1 ./sources/fatfs \
6969
&& git clone --branch v2.9.3 https://github.com/littlefs-project/littlefs --depth 1 ./sources/littlefs \
7070
&& git clone --branch STABLE-2_1_3_RELEASE https://github.com/lwip-tcpip/lwip.git --depth 1 ./sources/lwip \
71-
&& git clone --branch mbedtls-3.6.0 https://github.com/ARMmbed/mbedtls.git --depth 1 ./sources/mbedtls \
71+
&& git clone --branch mbedtls-3.6.4 https://github.com/ARMmbed/mbedtls.git --depth 1 ./sources/mbedtls \
7272
&& cd ./sources/mbedtls \
7373
&& git submodule update --init --recursive
7474

.devcontainer/FreeRTOS-NXP/Dockerfile.FreeRTOS-NXP.SRC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ RUN mkdir -p /usr/local/bin/gcc
5757
# Clone libs mbedtls and fatfs etc.
5858
RUN git clone --branch R0.15a https://github.com/abbrev/fatfs.git --depth 1 ./sources/fatfs \
5959
&& git clone --branch STABLE-2_1_3_RELEASE https://github.com/lwip-tcpip/lwip.git --depth 1 ./sources/lwip \
60-
&& git clone --branch mbedtls-3.6.0 https://github.com/ARMmbed/mbedtls.git --depth 1 ./sources/mbedtls \
60+
&& git clone --branch mbedtls-3.6.4 https://github.com/ARMmbed/mbedtls.git --depth 1 ./sources/mbedtls \
6161
&& cd ./sources/mbedtls \
6262
&& git submodule update --init --recursive
6363

CMake/binutils.common.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ function(nf_add_mbedtls_library)
753753

754754
# set tag for currently supported version
755755
# WHEN CHANGING THIS MAKE SURE TO UPDATE THE DEV CONTAINERS
756-
set(MBEDTLS_GIT_TAG "mbedtls-3.6.0")
756+
set(MBEDTLS_GIT_TAG "mbedtls-3.6.4")
757757

758758
# set options for Mbed TLS
759759
option(ENABLE_TESTING "no testing when building Mbed TLS." OFF)

0 commit comments

Comments
 (0)