Skip to content

Commit

Permalink
[Review] Add support for early Trusted Applications
Browse files Browse the repository at this point in the history
Address Etienne's comments (round #3).

Signed-off-by: Jerome Forissier <[email protected]>
  • Loading branch information
jforissier committed Aug 8, 2017
1 parent 1343282 commit 1349800
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/sub.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ recipe-early-ta-$1 = scripts/ta_bin_to_c.py --compress --ta $1 \
cleanfiles += $(sub-dir-out)/early_ta_$$(early-ta-$1-uuid).c
cflags-remove-early-ta-$1-y := -pedantic
endef
$(foreach f, $(EARLY_TA), $(eval $(call process_early_ta,$(f))))
$(foreach f, $(EARLY_TA_PATHS), $(eval $(call process_early_ta,$(f))))
endif
2 changes: 1 addition & 1 deletion mk/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ CFG_REE_FS_TA ?= y
# $ make ... CFG_EARLY_TA=y # Enable the feature to avoid later recompilation
# <build some TAs>
# $ make ... EARLY_TA_PATHS=<paths> # Embbed the TA(s) (will re-link OP-TEE)
ifneq ($(EARLY_TA),)
ifneq ($(EARLY_TA_PATHS),)
$(call force,CFG_EARLY_TA,y)
else
CFG_EARLY_TA ?= n
Expand Down

0 comments on commit 1349800

Please sign in to comment.