diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2022-01-05 18:20:55 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2022-01-06 18:17:48 +0100 |
commit | b0038b47799af5fa286fd8c744be2b6f07601a00 (patch) | |
tree | 4c7e74e3b13401b97215d6d9f41fde47b4c3b569 | |
parent | 41054c7c8a45ab59829c80cdd6d390feaa635be7 (diff) | |
download | drakx-b0038b47799af5fa286fd8c744be2b6f07601a00.tar drakx-b0038b47799af5fa286fd8c744be2b6f07601a00.tar.gz drakx-b0038b47799af5fa286fd8c744be2b6f07601a00.tar.bz2 drakx-b0038b47799af5fa286fd8c744be2b6f07601a00.tar.xz drakx-b0038b47799af5fa286fd8c744be2b6f07601a00.zip |
Fix warning & use the intended compression level
"dracut.conf: line 4: -14: command not found"
-rw-r--r-- | images/NEWS | 1 | ||||
-rw-r--r-- | images/dracut.conf | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/images/NEWS b/images/NEWS index 501b31042..5719686ef 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,4 @@ +- Fix warning & use the intended compression level - sync with kernel 5.15 Version 2.83 - 27 February 2021 by Thomas Backlund diff --git a/images/dracut.conf b/images/dracut.conf index 1121c28d6..88efd9a14 100644 --- a/images/dracut.conf +++ b/images/dracut.conf @@ -1,4 +1,4 @@ hostonly=no nofscks=yes omit_dracutmodules+=" dash modsign systemd plymouth btrfs crypt lvm cifs resume rootfs-block biosdevname usrmount shutdown " -compress=zstd -14 +compress="zstd -14" |