From patchwork Tue May 21 10:19:58 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ivan Hu X-Patchwork-Id: 1937318 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.ubuntu.com (client-ip=185.125.189.65; helo=lists.ubuntu.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=patchwork.ozlabs.org) Received: from lists.ubuntu.com (lists.ubuntu.com [185.125.189.65]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4Vk9RZ4xv3z20KF for ; Tue, 21 May 2024 20:20:09 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=lists.ubuntu.com) by lists.ubuntu.com with esmtp (Exim 4.86_2) (envelope-from ) id 1s9MbF-0008GD-4a; Tue, 21 May 2024 10:20:05 +0000 Received: from smtp-relay-canonical-0.internal ([10.131.114.83] helo=smtp-relay-canonical-0.canonical.com) by lists.ubuntu.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1s9MbD-0008Fx-Pi for fwts-devel@lists.ubuntu.com; Tue, 21 May 2024 10:20:03 +0000 Received: from canonical.com (unknown [10.101.194.165]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-0.canonical.com (Postfix) with ESMTPSA id B3D6F3F7EF for ; Tue, 21 May 2024 10:20:02 +0000 (UTC) From: Ivan Hu To: fwts-devel@lists.ubuntu.com Subject: [PATCH] efi_runtime: don't build dkms module for those kernels with efi_test Date: Tue, 21 May 2024 18:19:58 +0800 Message-Id: <20240521101958.349960-1-ivan.hu@canonical.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" BugLink: https://bugs.launchpad.net/fwts/+bug/2066243 The commit 4ab38cf1 used the OBSOLETE_BY for not install the DKMS above 4.8.0. but still building the DKMS, make it not build for those kernels with already got CONFIG_EFI_TEST(efi_test). Signed-off-by: Ivan Hu --- debian/fwts-efi-runtime-dkms.dkms | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/fwts-efi-runtime-dkms.dkms b/debian/fwts-efi-runtime-dkms.dkms index 33c24e46..650e8534 100644 --- a/debian/fwts-efi-runtime-dkms.dkms +++ b/debian/fwts-efi-runtime-dkms.dkms @@ -4,4 +4,4 @@ MAKE[0]="KVER=$kernelver make" BUILT_MODULE_NAME[0]="efi_runtime" DEST_MODULE_LOCATION[0]="/updates" AUTOINSTALL="yes" -OBSOLETE_BY="4.8.0" +BUILD_EXCLUSIVE_CONFIG="!CONFIG_EFI_TEST"