You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
424 B
20 lines
424 B
#!/bin/bash
|
|
|
|
# Build location
|
|
# First parameter passed is the board type
|
|
BUILD=build/$1
|
|
|
|
# Generate the MD5 hash
|
|
echo -n md5sum --binary $BUILD/application.bin | awk '{ print $1 }' > __md5hash.bin
|
|
|
|
# Concatenate it with the application binary
|
|
cat $BUILD/application.bin __md5hash.bin > $BUILD/MCUIMG.BIN
|
|
RET=$?
|
|
|
|
# Remove the tmp files
|
|
rm -f __md5hash.bin
|
|
|
|
# Remove hte unsigned binary
|
|
rm -f $BUILD/application.bin
|
|
|
|
exit $RET
|