Skip to content

Commit 1f54c02

Browse files
gustavoniheiAlan Carvalho de Assis
authored andcommitted
espressif: Fix download of IDFboot binaries
It was broken after #8759, which erroneously substituted with MCUboot Signed-off-by: Gustavo Henrique Nihei <[email protected]>
1 parent cfe6c4b commit 1f54c02

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

arch/risc-v/src/esp32c3/Bootloader.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ clean_bootloader:
176176
else ifeq ($(CONFIG_ESP32C3_APP_FORMAT_LEGACY),y)
177177

178178
bootloader:
179-
$(call DOWNLOAD,$(BOOTLOADER_URL),mcuboot-esp32c3.bin,$(TOPDIR)/mcuboot-esp32c3.bin)
179+
$(call DOWNLOAD,$(BOOTLOADER_URL),bootloader-esp32c3.bin,$(TOPDIR)/bootloader-esp32c3.bin)
180180
$(call DOWNLOAD,$(BOOTLOADER_URL),partition-table-esp32c3.bin,$(TOPDIR)/partition-table-esp32c3.bin)
181181

182182
clean_bootloader:

arch/xtensa/src/esp32/Bootloader.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ clean_bootloader:
185185
else ifeq ($(CONFIG_ESP32_APP_FORMAT_LEGACY),y)
186186

187187
bootloader:
188-
$(call DOWNLOAD,$(BOOTLOADER_URL),mcuboot-esp32.bin,$(TOPDIR)/mcuboot-esp32.bin)
188+
$(call DOWNLOAD,$(BOOTLOADER_URL),bootloader-esp32.bin,$(TOPDIR)/bootloader-esp32.bin)
189189
$(call DOWNLOAD,$(BOOTLOADER_URL),partition-table-esp32.bin,$(TOPDIR)/partition-table-esp32.bin)
190190

191191
clean_bootloader:

arch/xtensa/src/esp32s2/Bootloader.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ clean_bootloader:
174174
else ifeq ($(CONFIG_ESP32S2_APP_FORMAT_LEGACY),y)
175175

176176
bootloader:
177-
$(call DOWNLOAD,$(BOOTLOADER_URL),mcuboot-esp32s2.bin,$(TOPDIR)/mcuboot-esp32s2.bin)
177+
$(call DOWNLOAD,$(BOOTLOADER_URL),bootloader-esp32s2.bin,$(TOPDIR)/bootloader-esp32s2.bin)
178178
$(call DOWNLOAD,$(BOOTLOADER_URL),partition-table-esp32s2.bin,$(TOPDIR)/partition-table-esp32s2.bin)
179179

180180
clean_bootloader:

arch/xtensa/src/esp32s3/Bootloader.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ clean_bootloader:
118118
else ifeq ($(CONFIG_ESP32S3_APP_FORMAT_LEGACY),y)
119119

120120
bootloader:
121-
$(call DOWNLOAD,$(BOOTLOADER_URL),mcuboot-esp32s3.bin,$(TOPDIR)/mcuboot-esp32s3.bin)
121+
$(call DOWNLOAD,$(BOOTLOADER_URL),bootloader-esp32s3.bin,$(TOPDIR)/bootloader-esp32s3.bin)
122122
$(call DOWNLOAD,$(BOOTLOADER_URL),partition-table-esp32s3.bin,$(TOPDIR)/partition-table-esp32s3.bin)
123123

124124
clean_bootloader:

0 commit comments

Comments
 (0)