mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Bastian Krause <bst@pengutronix.de>
Cc: barebox@lists.infradead.org,
	Rouven Czerwinski <r.czerwinski@pengutronix.de>,
	Marco Felsch <m.felsch@pengutronix.de>,
	Stefan Kerkmann <s.kerkmann@pengutronix.de>
Subject: Re: [PATCH] scripts: imx: pass semicolons as substitute chars to compiler macros for CSF templating
Date: Thu, 16 Jan 2025 11:01:24 +0100	[thread overview]
Message-ID: <Z4jY9Eo6X35dFqqH@pengutronix.de> (raw)
In-Reply-To: <fc432540-ec96-461b-9660-80b5b66aee17@pengutronix.de>

On Fri, Jan 10, 2025 at 05:18:51PM +0100, Bastian Krause wrote:
> Hi Sascha,
> 
> On 1/10/25 12:31 PM, Sascha Hauer wrote:
> > On Mon, Jan 06, 2025 at 12:33:40PM +0100, Bastian Krause wrote:
> > > With CONFIG_HAB_CERTS_ENV=y, paths and PKCS#11 URIs to the HAB
> > > certificates are taken from environment variables (allowing for better
> > > integration with build systems). In this case these values are passed
> > > internally via compiler macros (-D) to the imx-image host tool. PKCS#11
> > > URIs usually contain semicolons. Semicolons, however, cannot be passed
> > > via compiler macros and cannot be escaped.
> > 
> > Try harder.
> > 
> > gcc -DFOO='"bar;baz"' test.c
> > 
> > #include <stdio.h>
> > 
> > int main(void)
> > {
> > 	printf(FOO);
> > }
> > 
> > Works as expected, so does it work when you add single quotes around the
> > URI?
> 
> This actually works:
> 
> --- a/scripts/Makefile.lib
> +++ b/scripts/Makefile.lib
> @@ -570,8 +570,8 @@ imxcfg_cpp_flags  = -Wp,-MD,$(depfile) -nostdinc -x
> assembler-with-cpp \
>        $(call overwrite-hab-env,CONFIG_HABV3_CSF_CRT_DER) \
>        $(call overwrite-hab-env,CONFIG_HABV3_IMG_CRT_DER) \
>        $(call overwrite-hab-env,CONFIG_HABV4_TABLE_BIN) \
> -      $(call overwrite-hab-env,CONFIG_HABV4_CSF_CRT_PEM) \
> -      $(call overwrite-hab-env,CONFIG_HABV4_IMG_CRT_PEM) \
> +      -DCONFIG_HABV4_CSF_CRT_PEM='"$(CONFIG_HABV4_CSF_CRT_PEM)"' \
> +      -DCONFIG_HABV4_IMG_CRT_PEM='"$(CONFIG_HABV4_IMG_CRT_PEM)"' \
>        $(call overwrite-fit-env,CONFIG_BOOTM_FITIMAGE_PUBKEY) \
> 
>  dcd-tmp = $(subst $(comma),_,$(dot-target).dcd.tmp)
> 
> 
> But I had no luck integrating the single quote approach in overwrite-
> hab-env. Maybe my quoting/escaping fu is not strong enough. Could you
> take a look?

Took some time, but it should work now. See the patch I just sent.

Sascha


-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



  reply	other threads:[~2025-01-16 10:02 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-06 11:33 Bastian Krause
2025-01-10 11:31 ` Sascha Hauer
2025-01-10 16:18   ` Bastian Krause
2025-01-16 10:01     ` Sascha Hauer [this message]
2025-01-16 10:15       ` Bastian Krause

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=Z4jY9Eo6X35dFqqH@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=bst@pengutronix.de \
    --cc=m.felsch@pengutronix.de \
    --cc=r.czerwinski@pengutronix.de \
    --cc=s.kerkmann@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