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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 93DD2158232 for ; Fri, 6 Dec 2024 05:10:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48832E0AB0; Fri, 6 Dec 2024 05:10:34 +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 24D49E0AB0 for ; Fri, 6 Dec 2024 05:10:34 +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 3B3AC33EDD8 for ; Fri, 6 Dec 2024 05:10:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D0C41F42 for ; Fri, 6 Dec 2024 05:10:30 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1733461808.81c8ffec6e3f587993081be4d64cda604f6aa61d.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/linux-mod-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 81c8ffec6e3f587993081be4d64cda604f6aa61d X-VCS-Branch: master Date: Fri, 6 Dec 2024 05:10:30 +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: 5a81d1d1-7ac1-4f5c-92e0-b86dde2cce02 X-Archives-Hash: f591ed21ed72c5ef9642b140209d6fcb commit: 81c8ffec6e3f587993081be4d64cda604f6aa61d Author: Ionen Wolkens gentoo org> AuthorDate: Fri Dec 6 04:21:58 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri Dec 6 05:10:08 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81c8ffec linux-mod-r1.eclass: pass COMPRESS_ALL= in MAKEARGS usable in >=6.12 Technically a no-op so quick-adding without review. It could mean something if the kernel adds new compression methods in the future (_ALL ensures everything is disabled rather than have to list each of them, which is what we want there). When the day comes when we drop support for <=6.12 kernels or the change was backported (if ever) for long enough, we could cleanup passing COMRESS_GZIP/XZ/ZSTD there and only keep _ALL. Signed-off-by: Ionen Wolkens gentoo.org> eclass/linux-mod-r1.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclass/linux-mod-r1.eclass b/eclass/linux-mod-r1.eclass index f8a45c607dfd..4e5b17548b04 100644 --- a/eclass/linux-mod-r1.eclass +++ b/eclass/linux-mod-r1.eclass @@ -1263,7 +1263,8 @@ _modules_set_makeargs() { # these are only needed if using these arguments for installing, lets # eclass handle strip, sign, compress, and depmod (CONFIG_ should # have no impact on building, only used by Makefile.modinst) - CONFIG_MODULE_{SIG_ALL,COMPRESS_{GZIP,XZ,ZSTD}}= + # note: COMPRESS_ALL is enough for kernel >=6.12, rest is for compat + CONFIG_MODULE_{SIG_ALL,COMPRESS_{ALL,GZIP,XZ,ZSTD}}= DEPMOD=true #916587 STRIP=true )