From 2c338a3ad04cdb1ade231ba3ade5a92969ced893 Mon Sep 17 00:00:00 2001 From: Abdelatif Guettouche Date: Sat, 20 Feb 2021 21:28:10 +0100 Subject: [PATCH] tools/esp32xx/Config.mk: Update the binaries names to reflect the same name used with the esp-nuttx-bootloader repo. Signed-off-by: Abdelatif Guettouche --- tools/esp32/Config.mk | 4 ++-- tools/esp32c3/Config.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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