From 8621346bc697841ec98248e6ea6070cb390f9b4c Mon Sep 17 00:00:00 2001 From: andreika-git Date: Fri, 29 Dec 2023 21:48:26 +0200 Subject: [PATCH] correct blbuild path --- firmware/config/boards/common_script.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/firmware/config/boards/common_script.sh b/firmware/config/boards/common_script.sh index 33eeaa97c5..1a9653ba9e 100644 --- a/firmware/config/boards/common_script.sh +++ b/firmware/config/boards/common_script.sh @@ -55,16 +55,16 @@ fi if [ "$USE_OPENBLT" = "yes" ]; then rm -f deliver/openblt.dfu echo "$SCRIPT_NAME: invoking hex2dfu for OpenBLT" - $HEX2DFU -i build-openblt/openblt_$PROJECT_BOARD.hex -o build-openblt/openblt_$PROJECT_BOARD.dfu + $HEX2DFU -i blbuild/openblt_$PROJECT_BOARD.hex -o blbuild/openblt_$PROJECT_BOARD.dfu # do we need all these formats? - cp build-openblt/openblt_$PROJECT_BOARD.bin deliver/openblt.bin - cp build-openblt/openblt_$PROJECT_BOARD.dfu deliver/openblt.dfu - #cp build-openblt/openblt_$PROJECT_BOARD.hex deliver/openblt.hex + cp blbuild/openblt_$PROJECT_BOARD.bin deliver/openblt.bin + cp blbuild/openblt_$PROJECT_BOARD.dfu deliver/openblt.dfu + #cp blbuild/openblt_$PROJECT_BOARD.hex deliver/openblt.hex rm -f deliver/rusefi_openblt.dfu echo "$SCRIPT_NAME: invoking hex2dfu for composite rusEFI+OpenBLT image" - $HEX2DFU -i build-openblt/openblt_$PROJECT_BOARD.hex -i build/rusefi.hex -C 0x1C -o deliver/rusefi.dfu -b deliver/rusefi.bin + $HEX2DFU -i blbuild/openblt_$PROJECT_BOARD.hex -i build/rusefi.hex -C 0x1C -o deliver/rusefi.dfu -b deliver/rusefi.bin #todo: how to create 'signed' hex and srec? Do we need? fi