All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4 1/7] boot/optee-os: correct TA files install
@ 2019-05-14  8:53 Etienne Carriere
  2019-05-14  8:53 ` [Buildroot] [PATCH v4 2/7] boot/optee-os: install trusted shared libraries Etienne Carriere
                   ` (6 more replies)
  0 siblings, 7 replies; 16+ messages in thread
From: Etienne Carriere @ 2019-05-14  8:53 UTC (permalink / raw)
  To: buildroot

This change corrects TA binary files install sequence that
were previously install in target filesystem though
OPTEE_OS_INSTALL_IMAGES_CMDS instead of expected
OPTEE_OS_INSTALL_TARGET_CMDS.

This change removes useless mkdir prior call to $(INSTALL)
that already handles parent directory creation when needed.

This change conditions .ta files install upon their
generation as a custom package repository may not generate
any .ta files.

Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
---
Changes v3 -> v4:
- No change
Changes v2 -> v3:
- No change
Changes v1 -> v2:
- Patch introduced in v2
---
 boot/optee-os/optee-os.mk | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/boot/optee-os/optee-os.mk b/boot/optee-os/optee-os.mk
index 6da20a9f3e..b22f560ba7 100644
--- a/boot/optee-os/optee-os.mk
+++ b/boot/optee-os/optee-os.mk
@@ -75,10 +75,10 @@ endef
 endif # BR2_TARGET_OPTEE_OS_CORE
 
 ifeq ($(BR2_TARGET_OPTEE_OS_SERVICES),y)
-define OPTEE_OS_INSTALL_IMAGES_SERVICES
-	mkdir -p $(TARGET_DIR)/lib/optee_armtz
-	$(INSTALL) -D -m 444 -t $(TARGET_DIR)/lib/optee_armtz \
-		$(@D)/$(OPTEE_OS_BUILDDIR_OUT)/ta/*/*.ta
+define OPTEE_OS_INSTALL_TARGET_CMDS
+	$(if $(wildcard $(@D)/$(OPTEE_OS_BUILDDIR_OUT)/ta/*/*.ta),
+		$(INSTALL) -D -m 444 -t $(TARGET_DIR)/lib/optee_armtz \
+			$(@D)/$(OPTEE_OS_BUILDDIR_OUT)/ta/*/*.ta)
 endef
 endif # BR2_TARGET_OPTEE_OS_SERVICES
 
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2019-05-15  6:48 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-14  8:53 [Buildroot] [PATCH v4 1/7] boot/optee-os: correct TA files install Etienne Carriere
2019-05-14  8:53 ` [Buildroot] [PATCH v4 2/7] boot/optee-os: install trusted shared libraries Etienne Carriere
2019-05-14 15:47   ` Thomas Petazzoni
2019-05-14  8:53 ` [Buildroot] [PATCH v4 3/7] boot/optee-os: bump version to 3.5.0 Etienne Carriere
2019-05-14 16:19   ` Thomas Petazzoni
2019-05-15  6:48     ` Etienne Carriere
2019-05-14  8:53 ` [Buildroot] [PATCH v4 4/7] package/optee-client: " Etienne Carriere
2019-05-14 16:19   ` Thomas Petazzoni
2019-05-14 16:21     ` Thomas Petazzoni
2019-05-14  8:53 ` [Buildroot] [PATCH v4 5/7] package/optee-test: " Etienne Carriere
2019-05-14 16:19   ` Thomas Petazzoni
2019-05-14  8:53 ` [Buildroot] [PATCH v4 6/7] package/optee-examples: " Etienne Carriere
2019-05-14 16:19   ` Thomas Petazzoni
2019-05-14  8:53 ` [Buildroot] [PATCH v4 7/7] package/optee-benchmark: " Etienne Carriere
2019-05-14 16:20   ` Thomas Petazzoni
2019-05-14 15:47 ` [Buildroot] [PATCH v4 1/7] boot/optee-os: correct TA files install Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.