summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRoger Quadros <rogerq@kernel.org>2022-02-17 22:18:48 +0200
committerPraneeth Bajjuri <praneeth@ti.com>2022-02-18 17:59:11 -0600
commit91377bdb68978908ae1ee584006820f2c520e993 (patch)
treef9c3d17e0c843b5bf755fbde077333349ebcffec /Makefile
parent0ce2a44cfc3790c31266cb491eca0e4afa426ba3 (diff)
tools: binman: Rename atf-bl32 to tee-os
tee-os is a more appropriate name for OP-TEE binary. Fixes: dd0bb6313c97 ("binman: Add support for TEE BL32") Signed-off-by: Roger Quadros <rogerq@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5a9909e979..1fe59a9bbd 100644
--- a/Makefile
+++ b/Makefile
@@ -1329,9 +1329,6 @@ u-boot.ldr: u-boot
ifneq ($(ATF),)
BL31 = $(ATF)
endif
-ifneq ($(TEE),)
-BL32 = $(TEE)
-endif
default_dt := $(if $(DEVICE_TREE),$(DEVICE_TREE),$(CONFIG_DEFAULT_DEVICE_TREE))
quiet_cmd_binman = BINMAN $@
cmd_binman = $(srctree)/tools/binman/binman $(if $(BINMAN_DEBUG),-D) \
@@ -1341,7 +1338,7 @@ cmd_binman = $(srctree)/tools/binman/binman $(if $(BINMAN_DEBUG),-D) \
-I . -I $(srctree) -I $(srctree)/board/$(BOARDDIR) \
-I arch/$(ARCH)/dts -a of-list=$(CONFIG_OF_LIST) \
-a atf-bl31-path=${BL31} \
- -a atf-bl32-path=${BL32} \
+ -a tee-os-path=${TEE} \
-a default-dt=$(default_dt) \
-a scp-path=$(SCP) \
$(BINMAN_$(@F))