From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: Sascha Hauer <s.hauer@pengutronix.de>,
Barebox List <barebox@lists.infradead.org>
Cc: Marco Felsch <m.felsch@pengutronix.de>
Subject: Re: [PATCH] firmware: fix external firmware dependencies
Date: Tue, 16 Jan 2024 10:15:38 +0100 [thread overview]
Message-ID: <098a9970-632d-4534-987c-bb4acef89076@pengutronix.de> (raw)
In-Reply-To: <20240116091020.2971875-1-s.hauer@pengutronix.de>
Hello Sascha,
On 16.01.24 10:10, Sascha Hauer wrote:
> A pbl is not rebuilt when the firmware file specified in fw-external-y
> changes.
>
> $(patsubst %.gen.o,$(obj)/%.extgen.pbl.o, $(pbl-y)) is executed before
> pbl-y actually contains the contents of fw-external-y. Also we want to
> do the subsitution only for the external firmware files, not for pbl-y.
>
> To fix this use a intermediate variable pbl-fwext-y instead of pbl-y and
> initialize it before usage.
>
> Also, use $$(wildcard $(fwdir)/%) instead of $(fwdir)/% to successfully
> compile when the external firmware file is missing.
>
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Thanks for fixing!
Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Cheers,
Ahmad
> ---
> firmware/Makefile | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/firmware/Makefile b/firmware/Makefile
> index 4c68817fc6..27504e9442 100644
> --- a/firmware/Makefile
> +++ b/firmware/Makefile
> @@ -42,6 +42,7 @@ fwobjdir := $(objtree)/firmware
>
> pbl-y := $(addsuffix .gen.o, $(pbl-firmware-y))
> obj-pbl-y := $(addsuffix .gen.o, $(firmware-y))
> +pbl-fwext-y := $(addsuffix .extgen.o, $(fw-external-y))
>
> FWNAME = $(patsubst $(obj)/%.extgen.S,%,$(patsubst $(obj)/%.gen.S,%,$@))
> FWSTR = $(subst /,_,$(subst .,_,$(subst -,_,$(FWNAME))))
> @@ -104,9 +105,9 @@ $(patsubst %.gen.o,$(obj)/%.gen.o, $(obj-pbl-y)): $(obj)/%.gen.o: $(fwdir)/%
> # The same for pbl:
> .SECONDEXPANSION:
> $(patsubst %.gen.o,$(obj)/%.gen.pbl.o, $(obj-pbl-y) $(pbl-y)): $(obj)/%.gen.pbl.o: $$(wildcard $(fwdir)/%)
> -$(patsubst %.gen.o,$(obj)/%.extgen.pbl.o, $(pbl-y)): $(obj)/%.extgen.pbl.o: $(fwdir)/%
> +$(patsubst %.extgen.o,$(obj)/%.extgen.pbl.o, $(pbl-fwext-y)): $(obj)/%.extgen.pbl.o: $$(wildcard $(fwdir)/%)
>
> -pbl-y += $(addsuffix .extgen.o, $(fw-external-y))
> +pbl-y += $(pbl-fwext-y)
>
> targets := $(patsubst $(obj)/%,%, \
> $(shell find $(obj) -name \*.gen.S 2>/dev/null))
--
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 |
next prev parent reply other threads:[~2024-01-16 9:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-16 9:10 Sascha Hauer
2024-01-16 9:15 ` Ahmad Fatoum [this message]
2024-01-16 9:51 ` Marco Felsch
2024-01-17 7:17 ` Sascha Hauer
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=098a9970-632d-4534-987c-bb4acef89076@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=m.felsch@pengutronix.de \
--cc=s.hauer@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