Skip to content

Commit

Permalink
espressif: Fix download of IDFboot binaries
Browse files Browse the repository at this point in the history
It was broken after #8759, which erroneously substituted with MCUboot

Signed-off-by: Gustavo Henrique Nihei <[email protected]>
  • Loading branch information
gustavonihei authored and acassis committed Mar 8, 2023
1 parent cfe6c4b commit 1f54c02
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion arch/risc-v/src/esp32c3/Bootloader.mk
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ clean_bootloader:
else ifeq ($(CONFIG_ESP32C3_APP_FORMAT_LEGACY),y)

bootloader:
$(call DOWNLOAD,$(BOOTLOADER_URL),mcuboot-esp32c3.bin,$(TOPDIR)/mcuboot-esp32c3.bin)
$(call DOWNLOAD,$(BOOTLOADER_URL),bootloader-esp32c3.bin,$(TOPDIR)/bootloader-esp32c3.bin)
$(call DOWNLOAD,$(BOOTLOADER_URL),partition-table-esp32c3.bin,$(TOPDIR)/partition-table-esp32c3.bin)

clean_bootloader:
Expand Down
2 changes: 1 addition & 1 deletion arch/xtensa/src/esp32/Bootloader.mk
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ clean_bootloader:
else ifeq ($(CONFIG_ESP32_APP_FORMAT_LEGACY),y)

bootloader:
$(call DOWNLOAD,$(BOOTLOADER_URL),mcuboot-esp32.bin,$(TOPDIR)/mcuboot-esp32.bin)
$(call DOWNLOAD,$(BOOTLOADER_URL),bootloader-esp32.bin,$(TOPDIR)/bootloader-esp32.bin)
$(call DOWNLOAD,$(BOOTLOADER_URL),partition-table-esp32.bin,$(TOPDIR)/partition-table-esp32.bin)

clean_bootloader:
Expand Down
2 changes: 1 addition & 1 deletion arch/xtensa/src/esp32s2/Bootloader.mk
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ clean_bootloader:
else ifeq ($(CONFIG_ESP32S2_APP_FORMAT_LEGACY),y)

bootloader:
$(call DOWNLOAD,$(BOOTLOADER_URL),mcuboot-esp32s2.bin,$(TOPDIR)/mcuboot-esp32s2.bin)
$(call DOWNLOAD,$(BOOTLOADER_URL),bootloader-esp32s2.bin,$(TOPDIR)/bootloader-esp32s2.bin)
$(call DOWNLOAD,$(BOOTLOADER_URL),partition-table-esp32s2.bin,$(TOPDIR)/partition-table-esp32s2.bin)

clean_bootloader:
Expand Down
2 changes: 1 addition & 1 deletion arch/xtensa/src/esp32s3/Bootloader.mk
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ clean_bootloader:
else ifeq ($(CONFIG_ESP32S3_APP_FORMAT_LEGACY),y)

bootloader:
$(call DOWNLOAD,$(BOOTLOADER_URL),mcuboot-esp32s3.bin,$(TOPDIR)/mcuboot-esp32s3.bin)
$(call DOWNLOAD,$(BOOTLOADER_URL),bootloader-esp32s3.bin,$(TOPDIR)/bootloader-esp32s3.bin)
$(call DOWNLOAD,$(BOOTLOADER_URL),partition-table-esp32s3.bin,$(TOPDIR)/partition-table-esp32s3.bin)

clean_bootloader:
Expand Down

0 comments on commit 1f54c02

Please sign in to comment.