diff options
author | Felix Fietkau <nbd@nbd.name> | 2016-12-25 16:40:05 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-01-05 11:09:12 +0100 |
commit | 84bd74057f0d2543ddbc7de2351b0a310df329c6 (patch) | |
tree | 7c7e358aedf5930eeba27392e3123702503556e5 /scripts/combined-ext-image.sh | |
parent | dad48c6438f0a4c42ad34842a88e82280d971d90 (diff) | |
download | upstream-84bd74057f0d2543ddbc7de2351b0a310df329c6.tar.gz upstream-84bd74057f0d2543ddbc7de2351b0a310df329c6.tar.bz2 upstream-84bd74057f0d2543ddbc7de2351b0a310df329c6.zip |
build: use mkhash to replace various quirky md5sum/openssl calls
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'scripts/combined-ext-image.sh')
-rwxr-xr-x | scripts/combined-ext-image.sh | 2 |
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 |