From 90c58d575bb20afda0aed2349aef6336e298fd14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Bl=C3=A4se?= Date: Wed, 6 Apr 2022 13:16:23 +0200 Subject: [PATCH] buildscript: fix checksum generation for *.img.gz binaries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new x86_64 target produces gzip compressed binaries, so it is necessary to generate checksums for *.img.gz files as well. Signed-off-by: Fabian Bläse Reviewed-by: Christian Dresel --- buildscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscript b/buildscript index 69c8f610..469d2162 100755 --- a/buildscript +++ b/buildscript @@ -312,7 +312,7 @@ buildrelease() { fi cd bin/$variant - for binary in *.bin *.img *.tar; do + for binary in *.bin *.img *.img.gz *.tar; do md5sum "$binary" > ./"$binary".md5 sha256sum "$binary" > ./"$binary".sha256 done