remove system archive feature, just cmpress the initrd with zstd

This commit is contained in:
Mikaël Cluseau
2025-07-21 03:45:10 +02:00
parent 0d9d087afd
commit aa5f4deb3f
5 changed files with 6 additions and 127 deletions

View File

@ -17,5 +17,5 @@ cpio --quiet --extract --file $base_initrd --directory $dir
cpio --quiet -tF test-initrd.cpio
if cpio -tF test-initrd.cpio 2>&1 |grep bytes.of.junk; then echo "bad cpio archive"; exit 1; fi
lz4 -l9v test-initrd.cpio && mv test-initrd.cpio.lz4 test-initrd.cpio
zstd -19 -T0 -vf test-initrd.cpio && mv test-initrd.cpio.zst test-initrd.cpio