We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25abeca commit d9f96b6Copy full SHA for d9f96b6
2 files changed
.gitignore
@@ -1,4 +1,5 @@
1
initramfs.gz
2
+initramfs.xz
3
work
4
hoolocktest/obj
5
hoolocktest/hoolocktest
build.sh
@@ -77,7 +77,11 @@ chmod 755 initramfs/init
77
chmod 644 initramfs/init_functions.sh
78
79
cd initramfs
80
-fakeroot find . | cpio -ov --format=newc | gzip -c9 > ../../initramfs.gz
+fakeroot find . | cpio -ov --format=newc > ../initramfs.cpio
81
+gzip -c9 ../initramfs.cpio > ../../initramfs.gz
82
+xz --check=crc32 -zce6T0 ../initramfs.cpio > ../../initramfs.xz
83
+
84
+rm -f ../../initramfs.cpio
85
86
cd ..
87
#rm -rf work
0 commit comments