Use higher compression

This commit is contained in:
Fierelier 2022-08-17 07:36:04 +02:00
parent 095118be90
commit d2645942fb

View File

@ -4,7 +4,7 @@ set -e
for i in $(find /lib/modules -name "*.ko"); do for i in $(find /lib/modules -name "*.ko"); do
if [ "$(file "$i"|grep ELF)" != "" ]; then if [ "$(file "$i"|grep ELF)" != "" ]; then
>&2 echo "> $i ..." >&2 echo "> $i ..."
xz -1 $i xz -9 $i
mv $i.xz $i mv $i.xz $i
fi fi
done done