From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: From: Bastian Krause Date: Thu, 24 Sep 2020 12:48:11 +0200 Message-Id: <20200924104811.30246-1-bst@pengutronix.de> MIME-Version: 1.0 Subject: [ptxdist] [PATCH] rauc: fix previous private key location triggering key creation message 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 Prior to the code signing infrastructure introduction, 001a500ed ("scripts: add script that generates test certificates for RAUC") suggested to move the private key to /config/rauc/rauc.key.pem. This is the location that should be checked for key material. Fixes: c420c0745 ("rauc/image-rauc: use code signing infrastructure for key retrieval") Signed-off-by: Bastian Krause --- rules/rauc.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/rauc.make b/rules/rauc.make index c1cba47e9..75a7d3521 100644 --- a/rules/rauc.make +++ b/rules/rauc.make @@ -48,7 +48,7 @@ RAUC_CONF_OPT := \ $(STATEDIR)/rauc.prepare: @$(call targetinfo) - @test ! -e "$(call ptx/in-platformconfigdir, config/rauc/rauc.key)" || \ + @test ! -e "$(call ptx/in-platformconfigdir, config/rauc/rauc.key.pem)" || \ ptxd_bailout "Please use the signing provider infrastructure desribed in:" \ "https://www.ptxdist.org/doc/dev_code_signing.html" @$(call world/prepare, RAUC) -- 2.28.0 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de