Skip to content

Commit

Permalink
cpu/esp*: append to FLASHDEPS
Browse files Browse the repository at this point in the history
Append to FLASHDEPS instead of overwriting/lazy setting it.
  • Loading branch information
cladmi committed Jun 7, 2019
1 parent 29fbdd7 commit dde57ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpu/esp32/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ PREFFLAGS += ls -l $(FLASHFILE).bin | awk '{ print $$5 }' >> $(BINDIR)/partition

PREFFLAGS += python $(RIOTCPU)/$(CPU)/gen_esp32part.py --disable-sha256sum
PREFFLAGS += --verify $(BINDIR)/partitions.csv $(BINDIR)/partitions.bin
FLASHDEPS = preflash
FLASHDEPS += preflash

# flasher configuration
ifeq ($(QEMU), 1)
Expand Down
2 changes: 1 addition & 1 deletion cpu/esp8266/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ FLASHFILE ?= $(ELFFILE)
FLASH_SIZE = -fs 8m
PREFLASHER ?= esptool.py
PREFFLAGS ?= elf2image $(FLASH_SIZE) $(FLASHFILE)
FLASHDEPS ?= preflash
FLASHDEPS += preflash

# flasher configuration
ifeq ($(QEMU), 1)
Expand Down

0 comments on commit dde57ba

Please sign in to comment.