buildscript: Generate checksum for *.tar and *.img

Some devices use .tar or .img for their firmware images. Our buildscript
currently only generates checksums for .bin files. Therefore, generate
checksums for .tar and .img files as well.

Signed-off-by: Fabian Bläse <fabian@blaese.de>
Acked-By: Johannes Kimmel <fff@bareminimum.eu>
This commit is contained in:
Fabian Bläse 2021-12-23 18:48:20 +01:00
parent 40be50311b
commit c3cb53ebef
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ buildrelease() {
fi
cd bin/$variant
for binary in *.bin; do
for binary in *.bin *.img *.tar; do
md5sum "$binary" > ./"$binary".md5
sha256sum "$binary" > ./"$binary".sha256
done