Skip to content

Commit 213b093

Browse files
committed
Split FreeRTOS and CMSIS commands
1 parent 5d7fd14 commit 213b093

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.devcontainer/All/Dockerfile.All.SRC

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,11 @@ RUN git clone --branch R0.15a https://github.com/abbrev/fatfs.git --depth 1 ./so
8484
&& cd ./sources/mbedtls \
8585
&& git submodule update --init --recursive
8686

87-
# Clone FreeRTOS and what is needed for ESP32
88-
RUN git clone --branch V10.4.1-kernel-only https://github.com/FreeRTOS/FreeRTOS-Kernel.git --depth 1 ./sources/FreeRTOS \
89-
&& git clone --branch 5.5.1 https://github.com/ARM-software/CMSIS_5.git --depth 1 ./sources/CMSIS_5
87+
# Clone FreeRTOS
88+
RUN git clone --branch V10.4.1-kernel-only https://github.com/FreeRTOS/FreeRTOS-Kernel.git --depth 1 ./sources/FreeRTOS
89+
90+
# Clone CMSIS
91+
RUN git clone --branch 5.5.1 https://github.com/ARM-software/CMSIS_5.git --depth 1 ./sources/CMSIS_5
9092

9193
# Clone lwIP for STM32 and NXP
9294
RUN git clone --branch STABLE-2_1_3_RELEASE https://github.com/lwip-tcpip/lwip.git --depth 1 ./sources/lwip

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,10 @@ RUN git clone --branch R0.15a https://github.com/abbrev/fatfs.git --depth 1 ./so
6262
&& git submodule update --init --recursive
6363

6464
# Clone FreeRTOS
65-
RUN git clone --branch V10.4.1-kernel-only https://github.com/FreeRTOS/FreeRTOS-Kernel.git --depth 1 ./sources/FreeRTOS \
66-
&& git clone --branch 5.5.1 https://github.com/ARM-software/CMSIS_5.git --depth 1 ./sources/CMSIS_5
65+
RUN git clone --branch V10.4.1-kernel-only https://github.com/FreeRTOS/FreeRTOS-Kernel.git --depth 1 ./sources/FreeRTOS
66+
67+
# Clone CMSIS
68+
RUN git clone --branch 5.5.1 https://github.com/ARM-software/CMSIS_5.git --depth 1 ./sources/CMSIS_5
6769

6870
# set gcc location
6971
ARG TMP_GCC_PATH=/usr/local/bin/gcc

0 commit comments

Comments
 (0)