]> TLD Linux GIT Repositories - packages/dracut.git/blob - compressors.patch
- updated to 059
[packages/dracut.git] / compressors.patch
1 diff -urpa dracut-048.orig/dracut.sh dracut-048/dracut.sh
2 --- dracut-048.orig/dracut.sh   2018-07-06 08:37:51.000000000 +0000
3 +++ dracut-048/dracut.sh        2018-07-21 21:09:03.431060990 +0000
4 @@ -195,8 +195,6 @@ Creates initial ramdisk images for prelo
5    --install-optional [LIST]  Install the space separated list of files into the
6                           initramfs, if they exist.
7    --gzip                Compress the generated initramfs using gzip.
8 -                         This will be done by default, unless another
9 -                         compression option or --no-compress is passed.
10    --bzip2               Compress the generated initramfs using bzip2.
11                           Make sure your kernel has bzip2 decompression support
12                           compiled in, otherwise you will not be able to boot.
13 @@ -204,6 +202,8 @@ Creates initial ramdisk images for prelo
14                           Make sure your kernel has lzma support compiled in,
15                           otherwise you will not be able to boot.
16    --xz                  Compress the generated initramfs using xz.
17 +                         This will be done by default, unless another
18 +                         compression option or --no-compress is passed.
19                           Make sure that your kernel has xz support compiled
20                           in, otherwise you will not be able to boot.
21    --lzo                 Compress the generated initramfs using lzop.
22 @@ -821,7 +821,7 @@ fi
23  
24  if ! [[ $compress ]]; then
25      # check all known compressors, if none specified
26 -    for i in pigz gzip lz4 lzop zstd lzma xz lbzip2 bzip2 cat; do
27 +    for i in xz lzma bzip2 lbzip2 gzip pigz lz4 lzop zstd cat; do
28          command -v "$i" &>/dev/null || continue
29          compress="$i"
30          break