Skip to content
Snippets Groups Projects
Forked from card10 / firmware
1400 commits behind, 4 commits ahead of the upstream repository.
build_image.sh 143 B
#!/bin/sh
set -e

PYTHON="$1"
ELF="$2"
BIN="$3"

arm-none-eabi-objcopy -O binary "$ELF" "$BIN"
"$PYTHON" "$(dirname "$0")/crc_patch.py" "$BIN"