commit: eb778e05720d2721204231e457df6948446d9af5 Author: Marat Buharov <marat.buharov <AT> gmail <DOT> com> AuthorDate: Tue Jul 18 23:33:42 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Jul 27 10:58:58 2023 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=eb778e05
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 <AT> gmail.com> Closes: https://github.com/gentoo/genkernel/pull/47 Closes: https://github.com/gentoo/genkernel/pull/48 Signed-off-by: Sam James <sam <AT> gentoo.org> defaults/compression_methods.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"
