To assemble FIT images outside TF-A, we will need to collect more than can be expressed by a single wildcard, so extend TF_A_ARTIFACTS to support multiple space separated patterns.
Signed-off-by: Ahmad Fatoum <[email protected]> --- rules/tf-a.make | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rules/tf-a.make b/rules/tf-a.make index 7695a4c546e3..e96aaf3aa6f9 100644 --- a/rules/tf-a.make +++ b/rules/tf-a.make @@ -89,7 +89,8 @@ $(STATEDIR)/tf-a.compile: # ---------------------------------------------------------------------------- tf-a/inst_plat = $(foreach artifact, \ - $(wildcard $(TF_A_BUILDDIR)/$(1)/$(if $(filter DEBUG=1,$(call remove_quotes,$(PTXCONF_TF_A_EXTRA_ARGS))),debug,release)/$(TF_A_ARTIFACTS)), \ + $(foreach pattern, $(TF_A_ARTIFACTS), \ + $(wildcard $(TF_A_BUILDDIR)/$(1)/$(if $(filter DEBUG=1,$(call remove_quotes,$(PTXCONF_TF_A_EXTRA_ARGS))),debug,release)/$(pattern))), \ install -v -D -m 644 $(artifact) \ $(2)/$(1)-$(notdir $(artifact))$(ptx/nl)) -- 2.30.2
