diff options
author | 2023-07-19 02:33:42 +0300 | |
---|---|---|
committer | 2023-07-27 11:58:58 +0100 | |
commit | eb778e05720d2721204231e457df6948446d9af5 (patch) | |
tree | a27a96867d40690fdd3175449b6a8efb9c689681 | |
parent | defaults/initrd.scripts: kill off some more `which` stragglers (diff) | |
download | genkernel-eb778e05720d2721204231e457df6948446d9af5.tar.gz genkernel-eb778e05720d2721204231e457df6948446d9af5.tar.bz2 genkernel-eb778e05720d2721204231e457df6948446d9af5.zip |
Enabling zstd multithreaded compression
Enabling zstd multithreaded compression gives same boost as enabling it for
XZ compression in previous commit.
Signed-off-by: Marat Buharov <marat.buharov@gmail.com>
Closes: https://github.com/gentoo/genkernel/pull/47
Closes: https://github.com/gentoo/genkernel/pull/48
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | defaults/compression_methods.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/defaults/compression_methods.sh b/defaults/compression_methods.sh index 37abf46..8cdc38c 100644 --- a/defaults/compression_methods.sh +++ b/defaults/compression_methods.sh @@ -37,6 +37,6 @@ GKICM_XZ_EXT=".xz" GKICM_XZ_PKG="app-arch/xz-utils" GKICM_ZSTD_KOPTNAME="ZSTD" -GKICM_ZSTD_CMD="zstd -f -19 -q" +GKICM_ZSTD_CMD="zstd -f -19 -q -T0" GKICM_ZSTD_EXT=".zst" GKICM_ZSTD_PKG="app-arch/zstd" |