Skip to content

Commit

Permalink
ESP32: Update esp-idf to v5.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sayondeep committed Dec 11, 2023
1 parent 2980e51 commit e2eb878
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions docs/guides/esp32/setup_idf_chip.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@ step.
- [Linux](https://docs.espressif.com/projects/esp-idf/en/v5.1/esp32/get-started/linux-macos-setup.html#for-linux-users)
- [macOS](https://docs.espressif.com/projects/esp-idf/en/v5.1/esp32/get-started/linux-macos-setup.html#for-macos-users)

### Get IDF v5.1.1
### Get IDF v5.1.2

- Clone ESP-IDF [v5.1.1
- Clone ESP-IDF [v5.1.2
release](https://github.com/espressif/esp-idf/releases/tag/v5.1.1

```
git clone -b v5.1.1 --recursive --depth 1 --shallow-submodule https://github.com/espressif/esp-idf.git
git clone -b v5.1.2 --recursive --depth 1 --shallow-submodule https://github.com/espressif/esp-idf.git
cd esp-idf
./install.sh
```
- To update an existing esp-idf toolchain to v5.1.1:
- To update an existing esp-idf toolchain to v5.1.2:
```
cd path/to/esp-idf
git fetch --depth 1 origin v5.1.1
git fetch --depth 1 origin v5.1.2
git reset --hard FETCH_HEAD
git submodule update --depth 1 --recursive --init
Expand Down
2 changes: 1 addition & 1 deletion integrations/docker/images/base/chip-build/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
28 : [NXP] Add support for RW61x SDK
28 : [ESP] Update esp-idf to v5.1.2
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN set -x \
&& : # last line

RUN set -x \
&& git clone --recursive -b v5.1.1 --depth 1 --shallow-submodule https://github.com/espressif/esp-idf.git /tmp/esp-idf \
&& git clone --recursive -b v5.1.2 --depth 1 --shallow-submodule https://github.com/espressif/esp-idf.git /tmp/esp-idf \
&& : # last line

FROM ghcr.io/project-chip/chip-build:${VERSION}
Expand Down

0 comments on commit e2eb878

Please sign in to comment.