From patchwork Wed Aug 23 11:50:42 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 13362207 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 728E1EE49B2 for ; Wed, 23 Aug 2023 11:51:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231654AbjHWLvA (ORCPT ); Wed, 23 Aug 2023 07:51:00 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47016 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230458AbjHWLvA (ORCPT ); Wed, 23 Aug 2023 07:51:00 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CC32CCF; Wed, 23 Aug 2023 04:50:58 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (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 dfw.source.kernel.org (Postfix) with ESMTPS id 5C44561B0B; Wed, 23 Aug 2023 11:50:58 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2E939C433CB; Wed, 23 Aug 2023 11:50:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692791457; bh=KumweqIbBGlQu/QW8/T6YUQUSRrF4UR/0XH8qL+VBn4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QJK7LN11MkN21EN+wnv0xeHHquHZoCJ5HNP9a77L2swSRzM+PsNSB5zTSAP2Tr9RE 3YCqblj4Ko78zSmsMU67ZLl08u3SJmPIbcaEwG/sPQicTyQOvFr+HTs5RnyOSyf3Vx QPtGYRoJtjv3gfMreOa5AkKd7D9WR55Go2HPI1DvzFiG5gA7+kO9d291nTt2vGDJk7 zmO0/K0iF1OewUVu4NXOK25skKPuwo8yeZ7czpNStx9kF7IgU7KvOJa7U7cEuvCRen c1UcHuB7OBBgi8xCT4jHrMy54Yrqac4m16U7kHnzfqJHH2Di9itS5YeLLu//0L83Ww oRKjY8U7U17zA== From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Masahiro Yamada , Nathan Chancellor , Nick Desaulniers , Nicolas Schier Subject: [PATCH 2/8] kbuild: add modules_sign to no-{compiler,sync-config}-targets Date: Wed, 23 Aug 2023 20:50:42 +0900 Message-Id: <20230823115048.823011-2-masahiroy@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230823115048.823011-1-masahiroy@kernel.org> References: <20230823115048.823011-1-masahiroy@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org Like modules_install, modules_sign should avoid the syncconfig. Signed-off-by: Masahiro Yamada Reviewed-by: Nicolas Schier --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7d54a0700c6e..e2dfa3b994f7 100644 --- a/Makefile +++ b/Makefile @@ -280,8 +280,8 @@ no-dot-config-targets := $(clean-targets) \ # Installation targets should not require compiler. Unfortunately, vdso_install # is an exception where build artifacts may be updated. This must be fixed. no-compiler-targets := $(no-dot-config-targets) install dtbs_install \ - headers_install modules_install kernelrelease image_name -no-sync-config-targets := $(no-dot-config-targets) %install kernelrelease \ + headers_install modules_install modules_sign kernelrelease image_name +no-sync-config-targets := $(no-dot-config-targets) %install modules_sign kernelrelease \ image_name single-targets := %.a %.i %.ko %.lds %.ll %.lst %.mod %.o %.rsi %.s %.symtypes %/