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 <abdelatif.guettouche@espressif.com>
This commit is contained in:
Abdelatif Guettouche 2021-02-20 21:28:10 +01:00 committed by Xiang Xiao
parent 10fca18b55
commit 2c338a3ad0
2 changed files with 4 additions and 4 deletions

View File

@ -25,8 +25,8 @@
ifdef ESPTOOL_BINDIR ifdef ESPTOOL_BINDIR
BL_OFFSET=0x1000 BL_OFFSET=0x1000
PT_OFFSET=0x8000 PT_OFFSET=0x8000
BOOTLOADER=$(ESPTOOL_BINDIR)/bootloader.bin BOOTLOADER=$(ESPTOOL_BINDIR)/bootloader-esp32.bin
PARTITION_TABLE=$(ESPTOOL_BINDIR)/partition-table.bin PARTITION_TABLE=$(ESPTOOL_BINDIR)/partition-table-esp32.bin
FLASH_BL=$(BL_OFFSET) $(BOOTLOADER) FLASH_BL=$(BL_OFFSET) $(BOOTLOADER)
FLASH_PT=$(PT_OFFSET) $(PARTITION_TABLE) FLASH_PT=$(PT_OFFSET) $(PARTITION_TABLE)
endif endif

View File

@ -25,8 +25,8 @@
ifdef ESPTOOL_BINDIR ifdef ESPTOOL_BINDIR
BL_OFFSET=0x0 BL_OFFSET=0x0
PT_OFFSET=0x8000 PT_OFFSET=0x8000
BOOTLOADER=$(ESPTOOL_BINDIR)/bootloader.bin BOOTLOADER=$(ESPTOOL_BINDIR)/bootloader-esp32c3.bin
PARTITION_TABLE=$(ESPTOOL_BINDIR)/partition-table.bin PARTITION_TABLE=$(ESPTOOL_BINDIR)/partition-table-esp32c3.bin
FLASH_BL=$(BL_OFFSET) $(BOOTLOADER) FLASH_BL=$(BL_OFFSET) $(BOOTLOADER)
FLASH_PT=$(PT_OFFSET) $(PARTITION_TABLE) FLASH_PT=$(PT_OFFSET) $(PARTITION_TABLE)
endif endif