mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: Re: [ptxdist] [APPLIED] Add host-pkcs11-provider
Date: Fri,  5 Jun 2026 10:51:33 +0200	[thread overview]
Message-ID: <20260605085133.3937567-1-m.olbrich@pengutronix.de> (raw)
In-Reply-To: <20260423-code-signing-provider-v2-2-be62a422e84a@pengutronix.de>

Thanks, applied as 99ce47b3bd79229f12c6c551306be92b85b01a06.

Michael

[sent from post-receive hook]

On Fri, 05 Jun 2026 10:51:33 +0200, Sascha Hauer <s.hauer@pengutronix.de> wrote:
> Add host-pkcs11-provider in preparation to add provider support to the
> ptxdist code signing infrastructure.
> 
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> Message-Id: <20260423-code-signing-provider-v2-2-be62a422e84a@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/pkcs11-provider-0.6/0001-meson-fix-provider-installation-path-with-DESTDIR.patch b/patches/pkcs11-provider-0.6/0001-meson-fix-provider-installation-path-with-DESTDIR.patch
> new file mode 100644
> index 000000000000..b75132ea303a
> --- /dev/null
> +++ b/patches/pkcs11-provider-0.6/0001-meson-fix-provider-installation-path-with-DESTDIR.patch
> @@ -0,0 +1,36 @@
> +From fbbb2835505f45cc84c17def5bd0e9d0fc7fb271 Mon Sep 17 00:00:00 2001
> +From: Sascha Hauer <s.hauer@pengutronix.de>
> +Date: Thu, 23 Apr 2026 11:08:17 +0200
> +Subject: [PATCH] meson: fix provider installation path with DESTDIR
> +
> +provider_path is set from the modulesdir pkg-config variable, which
> +expands to an absolute path with the prefix baked in. When meson
> +installs with DESTDIR set, it prepends DESTDIR to this absolute path,
> +resulting in a doubled prefix in the install location.
> +
> +Fix this by passing pkgconfig_define to override ${prefix} during
> +variable expansion, so modulesdir is re-evaluated relative to the
> +current meson --prefix rather than whatever was recorded in the .pc
> +file at the time OpenSSL was installed.
> +
> +Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> +---
> + meson.build | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/meson.build b/meson.build
> +index b3912cb..f54b52f 100644
> +--- a/meson.build
> ++++ b/meson.build
> +@@ -46,7 +46,7 @@ conf.set('PACKAGE_MAJOR', major_version)
> + conf.set('PACKAGE_MINOR', minor_version)
> + 
> + libcrypto = dependency('libcrypto', version: '>= 3.0.7')
> +-provider_path = libcrypto.get_variable(pkgconfig: 'modulesdir')
> ++provider_path = libcrypto.get_variable(pkgconfig: 'modulesdir', pkgconfig_define: ['prefix', get_option('prefix')])
> + libssl = dependency('libssl', version: '>= 3.0.7')
> + 
> + host_system = host_machine.system()
> +-- 
> +2.47.3
> +
> diff --git a/patches/pkcs11-provider-0.6/series b/patches/pkcs11-provider-0.6/series
> new file mode 100644
> index 000000000000..9750a31a6d9a
> --- /dev/null
> +++ b/patches/pkcs11-provider-0.6/series
> @@ -0,0 +1 @@
> +0001-meson-fix-provider-installation-path-with-DESTDIR.patch
> diff --git a/rules/host-pkcs11-provider.in b/rules/host-pkcs11-provider.in
> new file mode 100644
> index 000000000000..7d37f401ccfb
> --- /dev/null
> +++ b/rules/host-pkcs11-provider.in
> @@ -0,0 +1,10 @@
> +## SECTION=hosttools_noprompt
> +
> +config HOST_PKCS11_PROVIDER
> +	tristate
> +	default y if ALLYES
> +	select HOST_MESON
> +	select HOST_OPENSSL
> +
> +
> +# vim: ft=kconfig tw=80
> diff --git a/rules/host-pkcs11-provider.make b/rules/host-pkcs11-provider.make
> new file mode 100644
> index 000000000000..f634e662b84c
> --- /dev/null
> +++ b/rules/host-pkcs11-provider.make
> @@ -0,0 +1,28 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2026 by Sascha Hauer <s.hauer@pengutronix.de>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +HOST_PACKAGES-$(PTXCONF_HOST_PKCS11_PROVIDER) += host-pkcs11-provider
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +HOST_PKCS11_PROVIDER_CONF_ENV	:= \
> +	$(HOST_ENV)
> +
> +#
> +# meson
> +#
> +HOST_PKCS11_PROVIDER_CONF_TOOL	:= meson
> +HOST_PKCS11_PROVIDER_CONF_OPT	:=  \
> +	$(HOST_MESON_OPT)
> +
> +# vim: ft=make



  reply	other threads:[~2026-06-05  8:51 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-23  9:25 [ptxdist] [PATCH v2 0/3] code-signing: add provider support Sascha Hauer
2026-04-23  9:25 ` [ptxdist] [PATCH v2 1/3] host-libp11: use correct path for ossl-modules Sascha Hauer
2026-06-05  8:51   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-04-23  9:25 ` [ptxdist] [PATCH v2 2/3] Add host-pkcs11-provider Sascha Hauer
2026-06-05  8:51   ` Michael Olbrich [this message]
2026-04-23  9:25 ` [ptxdist] [PATCH v2 3/3] code-signing: enable provider support Sascha Hauer
2026-04-24  7:12   ` Michael Olbrich
2026-04-27 12:29     ` Sascha Hauer
2026-06-05  8:51   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-04-23 10:51 ` [ptxdist] [PATCH v2 0/3] code-signing: add " Thorsten Scherer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260605085133.3937567-1-m.olbrich@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox