diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-01-04 10:36:28 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-01-04 10:36:28 +0300 |
commit | b0f23786da8c9ad9eff44d961cb159604e7d5272 (patch) | |
tree | ef8d1cfb04449a6c03c0dd8f481b32a7e94f3297 /esp8266 | |
parent | 52c19875a4e9a95920e844b83a104997639bba2f (diff) | |
download | micropython-b0f23786da8c9ad9eff44d961cb159604e7d5272.tar.gz micropython-b0f23786da8c9ad9eff44d961cb159604e7d5272.zip |
esp8266/Makefile: Put firmware-ota.bin in build/, for consistency.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index 5c66a93e31..1d50a0fb31 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -203,7 +203,7 @@ $(BUILD)/firmware.elf: $(OBJ) ota: rm -f $(BUILD)/firmware.elf $(BUILD)/firmware.elf*.bin - $(MAKE) LDSCRIPT=esp8266_ota.ld FWBIN=firmware-ota.bin + $(MAKE) LDSCRIPT=esp8266_ota.ld FWBIN=$(BUILD)/firmware-ota.bin #MAKE_PINS = boards/make-pins.py #BOARD_PINS = boards/$(BOARD)/pins.csv |