From b13e3f9f98d08b8583db64d62acd947e727a1a4d Mon Sep 17 00:00:00 2001 From: Manish V Badarkhe <Manish.Badarkhe@arm.com> Date: Sat, 5 Sep 2020 04:40:41 +0100 Subject: [PATCH] tools: Set the tool's default binary name This patch: fafd3ec9c assumes that tools must build from the main makefile folder. This assumption leads to the error when somebody wants to build a tool from the tool's folder. Hence changes are done to provide the default binary name in the tool's makefile. Change-Id: Iae570a7f8d322151376b6feb19e739300eecc3fc Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com> --- tools/cert_create/Makefile | 1 + tools/encrypt_fw/Makefile | 1 + tools/fiptool/Makefile | 1 + tools/sptool/Makefile | 1 + 4 files changed, 4 insertions(+) diff --git a/tools/cert_create/Makefile b/tools/cert_create/Makefile index 418e06cf3..0ec08b054 100644 --- a/tools/cert_create/Makefile +++ b/tools/cert_create/Makefile @@ -7,6 +7,7 @@ PLAT := none V ?= 0 DEBUG := 0 +CRTTOOL ?= cert_create${BIN_EXT} BINARY := $(notdir ${CRTTOOL}) OPENSSL_DIR := /usr COT := tbbr diff --git a/tools/encrypt_fw/Makefile b/tools/encrypt_fw/Makefile index ebbc66a8e..6eb6fae7a 100644 --- a/tools/encrypt_fw/Makefile +++ b/tools/encrypt_fw/Makefile @@ -7,6 +7,7 @@ V ?= 0 BUILD_INFO ?= 1 DEBUG := 0 +ENCTOOL ?= encrypt_fw${BIN_EXT} BINARY := $(notdir ${ENCTOOL}) OPENSSL_DIR := /usr diff --git a/tools/fiptool/Makefile b/tools/fiptool/Makefile index 0ede6cebb..df8ab5c7b 100644 --- a/tools/fiptool/Makefile +++ b/tools/fiptool/Makefile @@ -8,6 +8,7 @@ MAKE_HELPERS_DIRECTORY := ../../make_helpers/ include ${MAKE_HELPERS_DIRECTORY}build_macros.mk include ${MAKE_HELPERS_DIRECTORY}build_env.mk +FIPTOOL ?= fiptool${BIN_EXT} PROJECT := $(notdir ${FIPTOOL}) OBJECTS := fiptool.o tbbr_config.o V ?= 0 diff --git a/tools/sptool/Makefile b/tools/sptool/Makefile index f724c265a..1fa85fb20 100644 --- a/tools/sptool/Makefile +++ b/tools/sptool/Makefile @@ -8,6 +8,7 @@ MAKE_HELPERS_DIRECTORY := ../../make_helpers/ include ${MAKE_HELPERS_DIRECTORY}build_macros.mk include ${MAKE_HELPERS_DIRECTORY}build_env.mk +SPTOOL ?= sptool${BIN_EXT} PROJECT := $(notdir ${SPTOOL}) OBJECTS := sptool.o V ?= 0 -- GitLab