Fix docker build

This commit is contained in:
Chris Cinelli 2019-10-23 18:46:55 -07:00 committed by Conor Patrick
parent 48147a39df
commit 765dc27b15
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ flashboot: bootloader.hex
STM32_Programmer_CLI -c port=SWD -halt -d bootloader.hex -rst
flash-firmware:
arm-none-eabi-size -A solo.elf
$(SZ) -A solo.elf
solo program aux enter-bootloader
solo program bootloader solo.hex

View File

@ -66,7 +66,7 @@ all: $(TARGET).elf
%.elf: $(OBJ)
$(CC) $^ $(HW) $(LDFLAGS) -o $@
arm-none-eabi-size $@
$(SZ) $@
%.hex: %.elf
$(CP) -O ihex $^ $(TARGET).hex