Magellan Linux

Contents of /trunk/dracut/patches/dracut-040-busybox-gzip-no-rsyncable.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2559 - (show annotations) (download)
Wed Apr 1 12:53:47 2015 UTC (9 years, 1 month ago) by niro
File size: 634 byte(s)
-busyboxs gzip does not know the --rsyncable option
1 diff -Naur dracut-040/dracut.sh dracut-040-busybox/dracut.sh
2 --- dracut-040/dracut.sh 2014-10-24 13:19:58.000000000 +0200
3 +++ dracut-040-busybox/dracut.sh 2015-04-01 14:55:21.802684752 +0200
4 @@ -822,7 +822,7 @@
5 bzip2) compress="bzip2 -9";;
6 lzma) compress="lzma -9 -T0";;
7 xz) compress="xz --check=crc32 --lzma2=dict=1MiB -T0";;
8 - gzip) compress="gzip -n -9 --rsyncable"; command -v pigz > /dev/null 2>&1 && compress="pigz -9 -n -T -R";;
9 + gzip) compress="gzip -n -9"; command -v pigz > /dev/null 2>&1 && compress="pigz -9 -n -T -R";;
10 lzo) compress="lzop -9";;
11 lz4) compress="lz4 -l -9";;
12 esac