make-firmware-image: Add a list file
to show what's included in the firmware archives
This commit is contained in:
parent
7eea34f26f
commit
dcbf4ea088
|
@ -84,6 +84,10 @@ debian-cd (3.2.0) UNRELEASED; urgency=medium
|
||||||
* Fix missing %install% replacements, fixing support for automatically
|
* Fix missing %install% replacements, fixing support for automatically
|
||||||
starting a specific entry when a timeout is reached.
|
starting a specific entry when a timeout is reached.
|
||||||
|
|
||||||
|
[ Steve McIntyre ]
|
||||||
|
* make-firmware-image: Add a list file to show what's included in
|
||||||
|
the firmware archives.
|
||||||
|
|
||||||
-- Cyril Brulebois <kibi@debian.org> Wed, 08 Feb 2023 10:44:19 +0100
|
-- Cyril Brulebois <kibi@debian.org> Wed, 08 Feb 2023 10:44:19 +0100
|
||||||
|
|
||||||
debian-cd (3.1.36) unstable; urgency=medium
|
debian-cd (3.1.36) unstable; urgency=medium
|
||||||
|
|
|
@ -79,6 +79,7 @@ done
|
||||||
cd $TMPDIR/firmware
|
cd $TMPDIR/firmware
|
||||||
tar czf ../firmware.tar.gz .
|
tar czf ../firmware.tar.gz .
|
||||||
zip -9rq ../firmware.zip .
|
zip -9rq ../firmware.zip .
|
||||||
|
find . -type f | gzip -9 > ../firmware.list.gz
|
||||||
cd ..
|
cd ..
|
||||||
find firmware | cpio --quiet -o -H newc | pigz -9nm > firmware.cpio.gz
|
find firmware | cpio --quiet -o -H newc | pigz -9nm > 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
|
||||||
|
|
Loading…
Reference in New Issue