From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 26 Jan 2024 20:53:13 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1rTSGG-004zjd-0u for lore@lore.pengutronix.de; Fri, 26 Jan 2024 20:53:13 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1rTSGH-00052E-B1; Fri, 26 Jan 2024 20:53:13 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rTSG7-00051k-HK; Fri, 26 Jan 2024 20:53:03 +0100 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rTSG7-002ZoB-4Q; Fri, 26 Jan 2024 20:53:03 +0100 Received: from localhost ([::1] helo=dude05.red.stw.pengutronix.de) by dude05.red.stw.pengutronix.de with esmtp (Exim 4.96) (envelope-from ) id 1rTSG7-0047f4-0A; Fri, 26 Jan 2024 20:53:03 +0100 From: Ahmad Fatoum To: ptxdist@pengutronix.de Date: Fri, 26 Jan 2024 20:53:00 +0100 Message-Id: <20240126195301.982623-1-a.fatoum@pengutronix.de> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH 1/2] optee-client: install PKCS#11 module libckteec X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Ahmad Fatoum Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false On next update, the imx platform will enable CFG_PKCS11_TA by default and optee-test will fail to build, because we don't install the respective PKCS#11 module. PKCS#11 is important enough of a use case that it makes sense to just ship it always by default, so let's do just that. Signed-off-by: Ahmad Fatoum --- v1 -> v2: - new patch, suggested by mol --- rules/optee-client.make | 1 + 1 file changed, 1 insertion(+) diff --git a/rules/optee-client.make b/rules/optee-client.make index 726a3edabafb..2703e0a8f602 100644 --- a/rules/optee-client.make +++ b/rules/optee-client.make @@ -49,6 +49,7 @@ $(STATEDIR)/optee-client.targetinstall: @$(call install_fixup, optee-client,DESCRIPTION,missing) @$(call install_lib, optee-client, 0, 0, 0644, libteec) + @$(call install_lib, optee-client, 0, 0, 0644, libckteec) @$(call install_copy, optee-client, 0, 0, 0755, -, /usr/sbin/tee-supplicant) ifdef PTXCONF_OPTEE_CLIENT_SYSTEMD_UNIT @$(call install_alternative, optee-client, 0, 0, 0644, \ -- 2.39.2