aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/combined-ext-image.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/combined-ext-image.sh')
-rwxr-xr-xscripts/combined-ext-image.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/combined-ext-image.sh b/scripts/combined-ext-image.sh
index 374fe6e344..0c7b1d993d 100755
--- a/scripts/combined-ext-image.sh
+++ b/scripts/combined-ext-image.sh
@@ -47,7 +47,7 @@ while [ "$#" -gt 1 ]
[ ! -f "$file" ] && echo "$ME: Not a valid file: $file" && usage
FILES="$FILES $file"
- md5=$(cat "$file" | md5sum -)
+ md5=$(mkhash md5 "$file")
printf "%-32s%08x%32s" "$filename" $(stat -c "%s" "$file") "${md5%% *}" >> $IMG_OUT
shift 2
done