diff --git a/tools/esp32/Config.mk b/tools/esp32/Config.mk index 0d7acf410d..19d24604c3 100644 --- a/tools/esp32/Config.mk +++ b/tools/esp32/Config.mk @@ -25,8 +25,8 @@ ifdef ESPTOOL_BINDIR BL_OFFSET=0x1000 PT_OFFSET=0x8000 - BOOTLOADER=$(ESPTOOL_BINDIR)/bootloader.bin - PARTITION_TABLE=$(ESPTOOL_BINDIR)/partition-table.bin + BOOTLOADER=$(ESPTOOL_BINDIR)/bootloader-esp32.bin + PARTITION_TABLE=$(ESPTOOL_BINDIR)/partition-table-esp32.bin FLASH_BL=$(BL_OFFSET) $(BOOTLOADER) FLASH_PT=$(PT_OFFSET) $(PARTITION_TABLE) endif diff --git a/tools/esp32c3/Config.mk b/tools/esp32c3/Config.mk index c8ebc374b1..41af3196d5 100644 --- a/tools/esp32c3/Config.mk +++ b/tools/esp32c3/Config.mk @@ -25,8 +25,8 @@ ifdef ESPTOOL_BINDIR BL_OFFSET=0x0 PT_OFFSET=0x8000 - BOOTLOADER=$(ESPTOOL_BINDIR)/bootloader.bin - PARTITION_TABLE=$(ESPTOOL_BINDIR)/partition-table.bin + BOOTLOADER=$(ESPTOOL_BINDIR)/bootloader-esp32c3.bin + PARTITION_TABLE=$(ESPTOOL_BINDIR)/partition-table-esp32c3.bin FLASH_BL=$(BL_OFFSET) $(BOOTLOADER) FLASH_PT=$(PT_OFFSET) $(PARTITION_TABLE) endif