mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
build system: Fix bootloader-flash target
ESP32 forum thread: http://esp32.com/viewtopic.php?f=2&t=407&p=1902#p1902
This commit is contained in:
parent
81b18aa8d5
commit
c5793521a0
@ -33,7 +33,7 @@ clean: bootloader-clean
|
|||||||
|
|
||||||
bootloader: $(BOOTLOADER_BIN)
|
bootloader: $(BOOTLOADER_BIN)
|
||||||
@echo "Bootloader built. Default flash command is:"
|
@echo "Bootloader built. Default flash command is:"
|
||||||
@echo "$(ESPTOOLPY_WRITE_FLASH) 0x1000 $(BOOTLOADER_BIN)"
|
@echo "$(ESPTOOLPY_WRITE_FLASH) 0x1000 $^"
|
||||||
|
|
||||||
all_binaries: $(BOOTLOADER_BIN)
|
all_binaries: $(BOOTLOADER_BIN)
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ ESPTOOL_ALL_FLASH_ARGS += 0x1000 $(BOOTLOADER_BIN)
|
|||||||
|
|
||||||
# bootloader-flash calls flash in the bootloader dummy project
|
# bootloader-flash calls flash in the bootloader dummy project
|
||||||
bootloader-flash: $(BOOTLOADER_BIN)
|
bootloader-flash: $(BOOTLOADER_BIN)
|
||||||
$(BOOTLOADER_MAKE) flash
|
$(ESPTOOLPY_WRITE_FLASH) 0x1000 $^
|
||||||
|
|
||||||
# synchronise the project level config to the bootloader's
|
# synchronise the project level config to the bootloader's
|
||||||
# config
|
# config
|
||||||
|
Loading…
x
Reference in New Issue
Block a user