From 60f71a1c15394de1131632deffcb51b87f56f62c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= <gaetan.harter@fu-berlin.de> Date: Fri, 1 Mar 2019 16:24:30 +0100 Subject: [PATCH] tests/riotboot: use 'RIOTBOOT_COMBINED_BIN' variable Use the new variable instead of the composed name. --- tests/riotboot/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/riotboot/Makefile b/tests/riotboot/Makefile index c4b90fa4e3..0ac8012324 100644 --- a/tests/riotboot/Makefile +++ b/tests/riotboot/Makefile @@ -27,8 +27,8 @@ include $(RIOTBASE)/Makefile.include # This is currently hacky as there is no way of specifiying a FLASHFILE all: riotboot/combined-slot0 # openocd -ELFFILE = $(BINDIR_APP)-slot0-combined.bin +ELFFILE = $(RIOTBOOT_COMBINED_BIN) # edbg -HEXFILE = $(BINDIR_APP)-slot0-combined.bin +HEXFILE = $(RIOTBOOT_COMBINED_BIN) # murdock uses ':=' to get the flashfile variable so should also be overwritten -FLASHFILE = $(BINDIR_APP)-slot0-combined.bin +FLASHFILE = $(RIOTBOOT_COMBINED_BIN) -- GitLab