1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

makefiles/mcuboot: remove compatibility for HEXFILE to flash

JLink flasher used by the only supported board `nrf52dk` has been updated.

FLASHFILE must now be defined by the board to use this in case a new one
wants to be supported.
This commit is contained in:
Gaëtan Harter 2019-03-05 12:17:00 +01:00
parent 034e4ff32c
commit 4c860f3218
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -42,13 +42,11 @@ $(MCUBOOT_BIN):
.PHONY: mcuboot-flash-bootloader mcuboot-flash
mcuboot-flash-bootloader: HEXFILE = $(MCUBOOT_BIN)
mcuboot-flash-bootloader: FLASHFILE = $(MCUBOOT_BIN)
mcuboot-flash-bootloader: export FLASH_ADDR = 0x0
mcuboot-flash-bootloader: $(MCUBOOT_BIN) $(FLASHDEPS)
$(flash-recipe)
mcuboot-flash: HEXFILE = $(SIGN_BINFILE)
mcuboot-flash: FLASHFILE = $(SIGN_BINFILE)
mcuboot-flash: export FLASH_ADDR = $(MCUBOOT_SLOT0_SIZE)
mcuboot-flash: mcuboot $(FLASHDEPS) mcuboot-flash-bootloader