From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: From: Bastian Krause Date: Fri, 15 May 2020 16:26:38 +0200 Message-Id: <20200515142641.812-13-bst@pengutronix.de> In-Reply-To: <20200515142641.812-1-bst@pengutronix.de> References: <20200515142641.812-1-bst@pengutronix.de> MIME-Version: 1.0 Subject: [ptxdist] [PATCH v2 12/15] code-signing: introduce for ptxconfig, add sanity check List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de Cc: Bastian Krause Create a new rules/code-signing.in to be able to select CODE_SIGNING not only in platformconfig but also in ptxconfig. Also make sure that PTXCONF_CODE_SIGNING_PROVIDER is set correctly if PTXCONF_CODE_SIGNING is set. Signed-off-by: Bastian Krause --- Changes since (implicit) v1: - re-add accidentally dropped rules/code-signing.in introducing CODE_SIGNING for ptxconfig - move before "rauc/image-rauc: use code signing infrastructure for key retrieval" --- rules/code-signing.in | 4 ++++ rules/code-signing.make | 13 +++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 rules/code-signing.in create mode 100644 rules/code-signing.make diff --git a/rules/code-signing.in b/rules/code-signing.in new file mode 100644 index 000000000..ae2ba726d --- /dev/null +++ b/rules/code-signing.in @@ -0,0 +1,4 @@ +## SECTION=hosttools_noprompt_ptx + +config CODE_SIGNING + bool diff --git a/rules/code-signing.make b/rules/code-signing.make new file mode 100644 index 000000000..db1c5ab88 --- /dev/null +++ b/rules/code-signing.make @@ -0,0 +1,13 @@ +# -*-makefile-*- +# +# Copyright (C) 2020 by Bastian Krause +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +ifdef PTXCONF_CODE_SIGNING +ifeq ($(call remove_quotes,$(PTXCONF_CODE_SIGNING_PROVIDER)),) +$(error PTXCONF_CODE_SIGNING_PROVIDER must be set correctly) +endif +endif -- 2.26.2 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de