Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
2b4103f7
Commit
2b4103f7
authored
Aug 24, 2020
by
Madhukar Pappireddy
Committed by
TrustedFirmware Code Review
Aug 24, 2020
Browse files
Merge "tools: Get the tool's binary name from the main makefile" into integration
parents
6f3ee4a8
fafd3ec9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
2b4103f7
...
...
@@ -1209,7 +1209,7 @@ certtool: ${CRTTOOL}
.PHONY
:
${CRTTOOL}
${CRTTOOL}
:
${Q}${MAKE}
PLAT
=
${PLAT}
USE_TBBR_DEFS
=
${USE_TBBR_DEFS}
COT
=
${COT}
OPENSSL_DIR
=
${OPENSSL_DIR}
--no-print-directory
-C
${CRTTOOLPATH}
${Q}${MAKE}
PLAT
=
${PLAT}
USE_TBBR_DEFS
=
${USE_TBBR_DEFS}
COT
=
${COT}
OPENSSL_DIR
=
${OPENSSL_DIR}
CRTTOOL
=
${CRTTOOL}
--no-print-directory
-C
${CRTTOOLPATH}
@
${ECHO_BLANK_LINE}
@
echo
"Built
$@
successfully"
@
${ECHO_BLANK_LINE}
...
...
@@ -1252,12 +1252,12 @@ fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
.PHONY
:
${FIPTOOL}
${FIPTOOL}
:
${Q}${MAKE}
CPPFLAGS
=
"-DVERSION='
\"
${VERSION_STRING}
\"
'"
--no-print-directory
-C
${FIPTOOLPATH}
${Q}${MAKE}
CPPFLAGS
=
"-DVERSION='
\"
${VERSION_STRING}
\"
'"
FIPTOOL
=
${FIPTOOL}
--no-print-directory
-C
${FIPTOOLPATH}
sptool
:
${SPTOOL}
.PHONY
:
${SPTOOL}
${SPTOOL}
:
${Q}${MAKE}
CPPFLAGS
=
"-DVERSION='
\"
${VERSION_STRING}
\"
'"
--no-print-directory
-C
${SPTOOLPATH}
${Q}${MAKE}
CPPFLAGS
=
"-DVERSION='
\"
${VERSION_STRING}
\"
'"
SPTOOL
=
${SPTOOL}
--no-print-directory
-C
${SPTOOLPATH}
.PHONY
:
libraries
romlib.bin
:
libraries
...
...
@@ -1275,7 +1275,7 @@ enctool: ${ENCTOOL}
.PHONY
:
${ENCTOOL}
${ENCTOOL}
:
${Q}${MAKE}
PLAT
=
${PLAT}
BUILD_INFO
=
0
OPENSSL_DIR
=
${OPENSSL_DIR}
--no-print-directory
-C
${ENCTOOLPATH}
${Q}${MAKE}
PLAT
=
${PLAT}
BUILD_INFO
=
0
OPENSSL_DIR
=
${OPENSSL_DIR}
ENCTOOL
=
${ENCTOOL}
--no-print-directory
-C
${ENCTOOLPATH}
@
${ECHO_BLANK_LINE}
@
echo
"Built
$@
successfully"
@
${ECHO_BLANK_LINE}
...
...
tools/cert_create/Makefile
View file @
2b4103f7
...
...
@@ -4,11 +4,10 @@
# SPDX-License-Identifier: BSD-3-Clause
#
PROJECT
:=
cert_create
PLAT
:=
none
V
?=
0
DEBUG
:=
0
BINARY
:=
$
{PROJECT}${BIN_EXT}
BINARY
:=
$
(
notdir
${CRTTOOL}
)
OPENSSL_DIR
:=
/usr
COT
:=
tbbr
...
...
tools/encrypt_fw/Makefile
View file @
2b4103f7
#
# Copyright (c) 2019, Linaro Limited. All rights reserved.
# Copyright (c) 2019
-2020
, Linaro Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
PROJECT
:=
encrypt_fw
V
?=
0
BUILD_INFO
?=
1
DEBUG
:=
0
BINARY
:=
$
{PROJECT}${BIN_EXT}
BINARY
:=
$
(
notdir
${ENCTOOL}
)
OPENSSL_DIR
:=
/usr
OBJECTS
:=
src/encrypt.o
\
...
...
tools/fiptool/Makefile
View file @
2b4103f7
#
# Copyright (c) 2014-20
18
, ARM Limited and Contributors. All rights reserved.
# Copyright (c) 2014-20
20
, ARM Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
...
...
@@ -8,7 +8,7 @@ MAKE_HELPERS_DIRECTORY := ../../make_helpers/
include
${MAKE_HELPERS_DIRECTORY}build_macros.mk
include
${MAKE_HELPERS_DIRECTORY}build_env.mk
PROJECT
:=
fiptool
${BIN_EXT}
PROJECT
:=
$(
notdir
${FIPTOOL}
)
OBJECTS
:=
fiptool.o tbbr_config.o
V
?=
0
...
...
tools/sptool/Makefile
View file @
2b4103f7
#
# Copyright (c) 2018, Arm Limited. All rights reserved.
# Copyright (c) 2018
-2020
, Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
...
...
@@ -8,7 +8,7 @@ MAKE_HELPERS_DIRECTORY := ../../make_helpers/
include
${MAKE_HELPERS_DIRECTORY}build_macros.mk
include
${MAKE_HELPERS_DIRECTORY}build_env.mk
PROJECT
:=
sptool
${BIN_EXT}
PROJECT
:=
$(
notdir
${SPTOOL}
)
OBJECTS
:=
sptool.o
V
?=
0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment