aboutsummaryrefslogtreecommitdiff
path: root/mk/config.mk
diff options
context:
space:
mode:
authorJens Wiklander <jens.wiklander@linaro.org>2018-07-17 15:47:46 +0200
committerJérôme Forissier <jerome.forissier@linaro.org>2018-07-18 09:46:53 +0200
commit3638ea32b015e5bc5c87d0d08d9e75eb77880f73 (patch)
tree82108f0e39fbf944768053496edfee67d495e363 /mk/config.mk
parentb29b419506fae13a625818e4ee4868b7d487bb44 (diff)
Add CFG_IN_TREE_EARLY_TAS
Adds CFG_IN_TREE_EARLY_TAS which is used to embed in-tree TAs as early TAs in the OP-TEE binary. Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
Diffstat (limited to 'mk/config.mk')
-rw-r--r--mk/config.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/mk/config.mk b/mk/config.mk
index ef22cb4f..254563cc 100644
--- a/mk/config.mk
+++ b/mk/config.mk
@@ -199,7 +199,12 @@ CFG_REE_FS_TA ?= y
# # later library recompilations.
# <build some TAs>
# $ make EARLY_TA_PATHS=<paths> # Build OP-TEE and embbed the TA(s)
-ifneq ($(EARLY_TA_PATHS),)
+#
+# Another option is CFG_IN_TREE_EARLY_TAS which is used to point at
+# in-tree TAs. CFG_IN_TREE_EARLY_TAS is formatted as:
+# <name-of-ta>/<uuid>
+# for instance avb/023f8f1a-292a-432b-8fc4-de8471358067
+ifneq ($(EARLY_TA_PATHS)$(CFG_IN_TREE_EARLY_TAS),)
$(call force,CFG_EARLY_TA,y)
else
CFG_EARLY_TA ?= n