Create checksums for firmware images
This commit is contained in:
parent
4816b4e0af
commit
e5b9dee3b2
|
@ -22,6 +22,7 @@ debian-cd (3.1.18) UNRELEASED; urgency=medium
|
||||||
* Remove old obsolete pre-d-i function install_language and all callers.
|
* Remove old obsolete pre-d-i function install_language and all callers.
|
||||||
* parse_isolinux: Support grub menuentry shortcuts for UEFI boot menus.
|
* parse_isolinux: Support grub menuentry shortcuts for UEFI boot menus.
|
||||||
Closes: #798908
|
Closes: #798908
|
||||||
|
* Create checksums for firmware images
|
||||||
|
|
||||||
[ Didier Raboud ]
|
[ Didier Raboud ]
|
||||||
* For stretch, swap amd64 and i386 to let the first be the norm, and the
|
* For stretch, swap amd64 and i386 to let the first be the norm, and the
|
||||||
|
|
|
@ -41,3 +41,9 @@ zip -9rq ../firmware.zip .
|
||||||
cd ..
|
cd ..
|
||||||
find firmware | cpio --quiet -o -H newc | gzip -9 > firmware.cpio.gz
|
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
|
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
|
||||||
|
|
Loading…
Reference in New Issue