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

mips-malta: fix 'HEXFILE' generation to binfile

OBJCOPY was called without arguments so only copied the elffile in a file named
.hex.
Cannot build an '.hex' file for mips-malta so use a .bin output.
This commit is contained in:
Gaëtan Harter 2018-03-28 17:10:54 +02:00
parent c23eb5a8c0
commit 42d1e1ad0b

View File

@ -3,3 +3,6 @@ export INCLUDES += -I$(RIOTBOARD)/$(BOARD)/include/
#export USE_HARD_FLOAT = 1
export USE_DSP = 1
export USE_UHI_SYSCALLS = 1
OFLAGS = -Obinary
HEXFILE = $(ELFFILE:.elf=.bin)