Skip to content

Commit 9192916

Browse files
jerpeleaxiaoxiang781216
authored andcommitted
Revert "tools: update esptool version reference"
This reverts commit a157436.
1 parent 9971626 commit 9192916

File tree

16 files changed

+20
-20
lines changed

16 files changed

+20
-20
lines changed

Documentation/platforms/risc-v/esp32c3-legacy/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Building and flashing
9090

9191
First make sure that ``esptool.py`` is installed. This tool is used to convert
9292
the ELF to a compatible ESP32 image and to flash the image into the board.
93-
It can be installed with: ``pip install esptool``.
93+
It can be installed with: ``pip install esptool==4.8.dev4``.
9494

9595
Configure the NuttX project: ``./tools/configure.sh esp32c3-devkit:nsh``
9696
Run ``make`` to build the project. Note that the conversion mentioned above is

Documentation/platforms/risc-v/esp32c3/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Building and flashing
106106

107107
First, make sure that ``esptool.py`` is installed. This tool is used to convert
108108
the ELF to a compatible ESP32-C3 image and to flash the image into the board.
109-
It can be installed with: ``pip install esptool``.
109+
It can be installed with: ``pip install esptool==4.8.dev4``.
110110

111111
Configure the NuttX project: ``./tools/configure.sh esp32c3-generic:nsh``
112112
Run ``make`` to build the project. Note that the conversion mentioned above is

Documentation/platforms/risc-v/esp32c6/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Building and flashing
105105

106106
First, make sure that ``esptool.py`` is installed. This tool is used to convert
107107
the ELF to a compatible ESP32-C6 image and to flash the image into the board.
108-
It can be installed with: ``pip install esptool``.
108+
It can be installed with: ``pip install esptool==4.8.dev4``.
109109

110110
Configure the NuttX project: ``./tools/configure.sh esp32c6-devkitc:nsh``
111111
Run ``make`` to build the project. Note that the conversion mentioned above is

Documentation/platforms/risc-v/esp32h2/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Building and flashing
105105

106106
First, make sure that ``esptool.py`` is installed. This tool is used to convert
107107
the ELF to a compatible ESP32-H2 image and to flash the image into the board.
108-
It can be installed with: ``pip install esptool``.
108+
It can be installed with: ``pip install esptool==4.8.dev4``.
109109

110110
Configure the NuttX project: ``./tools/configure.sh esp32h2-devkit:nsh``
111111
Run ``make`` to build the project. Note that the conversion mentioned above is

Documentation/platforms/xtensa/esp32/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Building and Flashing
129129

130130
First, make sure that ``esptool.py`` is installed. This tool is used to convert the ELF to a
131131
compatible ESP32 image and to flash the image into the board.
132-
It can be installed with: ``pip install esptool``.
132+
It can be installed with: ``pip install esptool==4.8.dev4``.
133133

134134
It's a two-step process where the first converts the ELF file into an ESP32 compatible binary
135135
and the second flashes it to the board. These steps are included in the build system and it is
@@ -573,7 +573,7 @@ Prerequisites
573573
First of all, we need to install ``imgtool`` (a MCUboot utility application to manipulate binary
574574
images) and ``esptool`` (the ESP32 toolkit)::
575575

576-
$ pip install imgtool esptool
576+
$ pip install imgtool esptool==4.8.dev4
577577

578578
We also need to make sure that the python modules are added to ``PATH``::
579579

Documentation/platforms/xtensa/esp32s2/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Building and Flashing
122122

123123
First, make sure that ``esptool.py`` is installed. This tool is used to convert the ELF to a
124124
compatible ESP32-S2 image and to flash the image into the board.
125-
It can be installed with: ``pip install esptool``.
125+
It can be installed with: ``pip install esptool==4.8.dev4``.
126126

127127
It's a two-step process where the first converts the ELF file into an ESP32-S2 compatible binary
128128
and the second flashes it to the board. These steps are included in the build system and it is
@@ -457,7 +457,7 @@ Prerequisites
457457
First of all, we need to install ``imgtool`` (a MCUboot utility application to manipulate binary
458458
images) and ``esptool`` (the ESP32-S2 toolkit)::
459459

460-
$ pip install imgtool esptool
460+
$ pip install imgtool esptool==4.8.dev4
461461

462462
We also need to make sure that the python modules are added to ``PATH``::
463463

Documentation/platforms/xtensa/esp32s3/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Building and Flashing
129129

130130
First, make sure that ``esptool.py`` is installed. This tool is used to convert the ELF to a
131131
compatible ESP32-S3 image and to flash the image into the board.
132-
It can be installed with: ``pip install esptool``.
132+
It can be installed with: ``pip install esptool==4.8.dev4``.
133133

134134
It's a two-step process where the first converts the ELF file into an ESP32-S3 compatible binary
135135
and the second flashes it to the board. These steps are included in the build system and it is

tools/ci/docker/linux/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ RUN pip3 install cmake-format
387387
RUN pip3 install cvt2utf
388388
# Install pytest
389389
RUN pip3 install cxxfilt
390-
RUN pip3 install esptool
390+
RUN pip3 install esptool==4.8.dev4
391391
RUN pip3 install imgtool
392392
RUN pip3 install kconfiglib
393393
RUN pip3 install pexpect==4.8.0

tools/ci/platforms/darwin.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ python_tools() {
213213
cmake-format \
214214
cvt2utf \
215215
cxxfilt \
216-
esptool \
216+
esptool==4.8.dev4 \
217217
imgtool==1.9.0 \
218218
kconfiglib \
219219
pexpect==4.8.0 \

tools/ci/platforms/linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ python_tools() {
145145
CodeChecker \
146146
cvt2utf \
147147
cxxfilt \
148-
esptool \
148+
esptool==4.8.dev4 \
149149
imgtool \
150150
kconfiglib \
151151
pexpect==4.8.0 \

tools/ci/platforms/ubuntu.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ python_tools() {
198198
CodeChecker \
199199
cvt2utf \
200200
cxxfilt \
201-
esptool \
201+
esptool==4.8.dev4 \
202202
imgtool \
203203
kconfiglib \
204204
pexpect==4.8.0 \

tools/esp32/Config.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ define MKIMAGE
238238
$(Q) echo "MKIMAGE: ESP32 binary"
239239
$(Q) if ! esptool.py version 1>/dev/null 2>&1; then \
240240
echo ""; \
241-
echo "esptool.py not found. Please run: \"pip install esptool\""; \
241+
echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4\""; \
242242
echo ""; \
243243
echo "Run make again to create the nuttx.bin image."; \
244244
exit 1; \
@@ -270,7 +270,7 @@ define MKIMAGE
270270
$(Q) echo "MKIMAGE: ESP32 binary"
271271
$(Q) if ! esptool.py version 1>/dev/null 2>&1; then \
272272
echo ""; \
273-
echo "esptool.py not found. Please run: \"pip install esptool\""; \
273+
echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4\""; \
274274
echo ""; \
275275
echo "Run make again to create the nuttx.bin image."; \
276276
exit 1; \

tools/esp32c3/Config.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ define MKIMAGE
220220
$(Q) echo "MKIMAGE: ESP32-C3 binary"
221221
$(Q) if ! esptool.py version 1>/dev/null 2>&1; then \
222222
echo ""; \
223-
echo "esptool.py not found. Please run: \"pip install esptool\""; \
223+
echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4\""; \
224224
echo ""; \
225225
echo "Run make again to create the nuttx.bin image."; \
226226
exit 1; \

tools/esp32s2/Config.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ define MKIMAGE
225225
$(Q) echo "MKIMAGE: ESP32-S2 binary"
226226
$(Q) if ! esptool.py version 1>/dev/null 2>&1; then \
227227
echo ""; \
228-
echo "esptool.py not found. Please run: \"pip install esptool\""; \
228+
echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4\""; \
229229
echo ""; \
230230
echo "Run make again to create the nuttx.bin image."; \
231231
exit 1; \

tools/esp32s3/Config.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ define MKIMAGE
139139
$(Q) echo "MKIMAGE: ESP32-S3 binary"
140140
$(Q) if ! esptool.py version 1>/dev/null 2>&1; then \
141141
echo ""; \
142-
echo "esptool.py not found. Please run: \"pip install esptool\""; \
142+
echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4\""; \
143143
echo ""; \
144144
echo "Run make again to create the nuttx.bin image."; \
145145
exit 1; \
@@ -171,7 +171,7 @@ define MKIMAGE
171171
$(Q) echo "MKIMAGE: ESP32-S3 binary"
172172
$(Q) if ! esptool.py version 1>/dev/null 2>&1; then \
173173
echo ""; \
174-
echo "esptool.py not found. Please run: \"pip install esptool\""; \
174+
echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4\""; \
175175
echo ""; \
176176
echo "Run make again to create the nuttx.bin image."; \
177177
exit 1; \

tools/espressif/Config.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ define MKIMAGE
139139
$(Q) echo "MKIMAGE: NuttX binary"
140140
$(Q) if ! esptool.py version 1>/dev/null 2>&1; then \
141141
echo ""; \
142-
echo "esptool.py not found. Please run: \"pip install esptool\""; \
142+
echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4\""; \
143143
echo ""; \
144144
echo "Run make again to create the nuttx.bin image."; \
145145
exit 1; \

0 commit comments

Comments
 (0)