Skip to content

Commit 590900c

Browse files
authored
Fix ESP IDF path to fix Dev Container (#2999)
***NO_CI***
1 parent 2660092 commit 590900c

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.devcontainer/All/Dockerfile.All.SRC

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,15 +132,13 @@ ENV ESP_PATCH_VER=esp-13.2.0_20230928
132132
# RUN python -m pip install -r $IDF_PATH/requirements.txt
133133
RUN $IDF_PATH/install.sh
134134

135-
ENV PATH=/root/.espressif/python_env/idf5.1_py3.11_env/bin:$PATH:\
135+
ENV PATH=/root/.espressif/python_env/idf5.2_py3.11_env/bin:$PATH:\
136136
$IDF_PATH/components/esptool_py/esptool:\
137137
$IDF_PATH/components/espcoredump:\
138138
$IDF_PATH/components/partition_table/:\
139139
$IDF_PATH/tools/:\
140140
$IDF_PATH/components/app_update:\
141-
/root/.espressif/tools/xtensa-esp32-elf/$ESP_PATCH_VER/xtensa-esp32-elf/bin:\
142-
/root/.espressif/tools/xtensa-esp32s2-elf/$ESP_PATCH_VER/xtensa-esp32s2-elf/bin:\
143-
/root/.espressif/tools/xtensa-esp32s3-elf/$ESP_PATCH_VER/xtensa-esp32s3-elf/bin:\
141+
/root/.espressif/tools/xtensa-esp-elf/$ESP_PATCH_VER/xtensa-esp-elf/bin:\
144142
/root/.espressif/tools/riscv32-esp-elf/$ESP_PATCH_VER/riscv32-esp-elf/bin
145143

146144
# Clean up downloaded files

.devcontainer/ESP32/Dockerfile.ESP32.SRC

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,13 @@ ENV ESP_PATCH_VER=esp-13.2.0_20230928
6666
# RUN python -m pip install -r $IDF_PATH/requirements.txt
6767
RUN $IDF_PATH/install.sh
6868

69-
ENV PATH=/root/.espressif/python_env/idf5.1_py3.11_env/bin:$PATH:\
69+
ENV PATH=/root/.espressif/python_env/idf5.2_py3.11_env/bin:$PATH:\
7070
$IDF_PATH/components/esptool_py/esptool:\
7171
$IDF_PATH/components/espcoredump:\
7272
$IDF_PATH/components/partition_table/:\
7373
$IDF_PATH/tools/:\
7474
$IDF_PATH/components/app_update:\
75-
/root/.espressif/tools/xtensa-esp32-elf/$ESP_PATCH_VER/xtensa-esp32-elf/bin:\
76-
/root/.espressif/tools/xtensa-esp32s2-elf/$ESP_PATCH_VER/xtensa-esp32s2-elf/bin:\
77-
/root/.espressif/tools/xtensa-esp32s3-elf/$ESP_PATCH_VER/xtensa-esp32s3-elf/bin:\
75+
/root/.espressif/tools/xtensa-esp-elf/$ESP_PATCH_VER/xtensa-esp-elf/bin:\
7876
/root/.espressif/tools/riscv32-esp-elf/$ESP_PATCH_VER/riscv32-esp-elf/bin
7977

8078
# Clean up downloaded files

0 commit comments

Comments
 (0)