14 lines
496 B
Bash
14 lines
496 B
Bash
#!/bin/bash
|
|
|
|
# This script will try to flash/update RusEFI part of firmware over serial/USB serial interface.
|
|
|
|
BootCommander -t=xcp_rs232 -d=/dev/ttyACM0 build/rusefi.srec
|
|
|
|
# OR
|
|
# You can build it from sources with:
|
|
# (cd ext/openblt/Host/Source/LibOpenBLT/ ; mkdir build ; cd build ; cmake .. ; make -j )
|
|
# and
|
|
# (cd ext/openblt/Host/Source/BootCommander/ ; mkdir build ; cd build ; cmake .. ; make -j )
|
|
# And run:
|
|
# ext/openblt/Host/BootCommander -t=xcp_rs232 -d=/dev/ttyACM0 build/rusefi.srec
|