Skip to content

Commit

Permalink
Update ChibiOS lwip to 2.1.3 (#2791)
Browse files Browse the repository at this point in the history
***NO_CI***
  • Loading branch information
networkfusion authored Nov 14, 2023
1 parent f96d2c4 commit 1980be4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/scripts/git-pull-repos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ git pull origin V10.4.1-kernel-only
cd /sources/CMSIS_5
git pull origin 5.5.1
cd /sources/lwip
git pull origin STABLE-2_1_2_RELEASE # FIXME: if the NXP targets still require STABLE-2_0_3_RELEASE as this is quite old now.
git pull origin STABLE-2_1_3_RELEASE # FIXME: if the NXP targets still require STABLE-2_0_3_RELEASE as this is quite old now.
cd /sources/spiffs
git pull origin nf-build
cd /sources/SimpleLinkCC32
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/sources/Dockerfile.All
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ RUN git clone --branch nf-build https://github.com/nanoframework/STM32CubeL4.git
# Clone libs mbedtls and fatfs etc.
RUN git clone --branch mbedtls-2.28.5 https://github.com/ARMmbed/mbedtls.git --depth 1 ./sources/mbedtls \
&& git clone --branch R0.15 https://github.com/abbrev/fatfs.git --depth 1 ./sources/fatfs \
&& git clone --branch STABLE-2_1_2_RELEASE https://github.com/lwip-tcpip/lwip.git --depth 1 ./sources/lwip
&& git clone --branch STABLE-2_1_3_RELEASE https://github.com/lwip-tcpip/lwip.git --depth 1 ./sources/lwip

# Clone FreeRTOS and what is needed for ESP32
RUN git clone --branch V10.4.1-kernel-only https://github.com/FreeRTOS/FreeRTOS-Kernel.git --depth 1 ./sources/FreeRTOS \
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/sources/Dockerfile.ChibiOS
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN git clone --branch nf-build https://github.com/nanoframework/STM32CubeL4.git
RUN git clone --branch mbedtls-2.28.5 https://github.com/ARMmbed/mbedtls.git --depth 1 ./sources/mbedtls \
&& git clone --branch R0.15 https://github.com/abbrev/fatfs.git --depth 1 ./sources/fatfs \
&& git clone --branch nf-build https://github.com/nanoframework/spiffs.git --depth 1 ./sources/spiffs \
&& git clone --branch STABLE-2_1_2_RELEASE https://github.com/lwip-tcpip/lwip.git --depth 1 ./sources/lwip
&& git clone --branch STABLE-2_1_3_RELEASE https://github.com/lwip-tcpip/lwip.git --depth 1 ./sources/lwip

# set gcc location
ENV ARM_GCC_PATH=/usr/local/bin/gcc
Expand Down
2 changes: 1 addition & 1 deletion targets/ChibiOS/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ if(USE_NETWORKING_OPTION)

# set tag for currently supported version
# WHEN CHANGING THIS MAKE SURE TO UPDATE THE DEV CONTAINERS
set(LWIP_GIT_TAG "STABLE-2_1_2_RELEASE")
set(LWIP_GIT_TAG "STABLE-2_1_3_RELEASE")

if(NO_LWIP_SOURCE)
# no LWIP source specified, download it from it's repo
Expand Down

0 comments on commit 1980be4

Please sign in to comment.