We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dde6cd9 commit edc6266Copy full SHA for edc6266
docker/linux/Dockerfile
@@ -104,12 +104,16 @@ RUN bash -c "\
104
cd esp-idf && \
105
./install.sh"
106
107
+# Provide an option for disabling DOUT mode, so that the default one,
108
+# DIO, can be used (for instance, for flashing a DevKitC module)
109
+ARG FLASH_DOUT_ENABLED=y
110
# We run this is generate the default bootloader and partition table binaries
111
RUN bash -c "\
112
113
source ./export.sh && \
114
cd examples/get-started/hello_world && \
115
make defconfig && \
116
+ if [[ '${FLASH_DOUT_ENABLED}' == y ]]; then echo 'CONFIG_ESPTOOLPY_FLASHMODE_DOUT=y' >> sdkconfig; fi && \
117
idf.py bootloader partition_table"
118
119
RUN mkdir /tools/blobs
0 commit comments