From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A3DE2158004 for ; Thu, 27 Jul 2023 10:59:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2725E096A; Thu, 27 Jul 2023 10:59:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B8672E096A for ; Thu, 27 Jul 2023 10:59:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CE22B335C7D for ; Thu, 27 Jul 2023 10:59:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B1E1DD0 for ; Thu, 27 Jul 2023 10:59:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1690455538.eb778e05720d2721204231e457df6948446d9af5.sam@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/compression_methods.sh X-VCS-Directories: defaults/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: eb778e05720d2721204231e457df6948446d9af5 X-VCS-Branch: master Date: Thu, 27 Jul 2023 10:59:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 12ddc298-9210-43c6-89ec-d84579b4e08f X-Archives-Hash: f5cbfb21f1c528c36442edcc55a972c3 commit: eb778e05720d2721204231e457df6948446d9af5 Author: Marat Buharov gmail com> AuthorDate: Tue Jul 18 23:33:42 2023 +0000 Commit: Sam James gentoo 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 gmail.com> Closes: https://github.com/gentoo/genkernel/pull/47 Closes: https://github.com/gentoo/genkernel/pull/48 Signed-off-by: Sam James 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"