Create checksums for firmware images

This commit is contained in:
Steve McIntyre 2015-10-07 15:36:22 +01:00
parent 4816b4e0af
commit e5b9dee3b2
2 changed files with 7 additions and 0 deletions

1
debian/changelog vendored
View File

@ -22,6 +22,7 @@ debian-cd (3.1.18) UNRELEASED; urgency=medium
* Remove old obsolete pre-d-i function install_language and all callers.
* parse_isolinux: Support grub menuentry shortcuts for UEFI boot menus.
Closes: #798908
* Create checksums for firmware images
[ Didier Raboud ]
* For stretch, swap amd64 and i386 to let the first be the norm, and the

View File

@ -41,3 +41,9 @@ zip -9rq ../firmware.zip .
cd ..
find firmware | cpio --quiet -o -H newc | gzip -9 > firmware.cpio.gz
ls -l $PWD/firmware.cpio.gz $PWD/firmware.tar.gz $PWD/firmware.zip
cd firmware
md5sum firmware* > MD5SUMS
sha1sum firmware* > SHA1SUMS
sha256sum firmware* > SHA256SUMS
sha512sum firmware* > SHA512SUMS