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
210d8d8b
Unverified
Commit
210d8d8b
authored
Jan 10, 2018
by
davidcunado-arm
Committed by
GitHub
Jan 10, 2018
Browse files
Merge pull request #1208 from masahir0y/build
Build: trivial fixes
parents
8d356425
87ebd20d
Changes
1
Hide whitespace changes
Inline
Side-by-side
make_helpers/build_macros.mk
View file @
210d8d8b
...
...
@@ -101,7 +101,7 @@ endef
# FIP_ADD_PAYLOAD appends the command line arguments required by fiptool
# to package a new payload. Optionally, it adds the dependency on this payload
# $(1) = payload filename (i.e. bl31.bin)
# $(2) = command line option for the specified payload (i.e. --
bl31
)
# $(2) = command line option for the specified payload (i.e. --
soc-fw
)
# $(3) = fip target dependency (optional) (i.e. bl31)
define
FIP_ADD_PAYLOAD
$(eval
FIP_ARGS
+=
$(2)
$(1)
)
...
...
@@ -121,14 +121,15 @@ endef
# using a build option. It also adds a dependency on the image file, aborting
# the build if the file does not exist.
# $(1) = build option to specify the image filename (SCP_BL2, BL33, etc)
# $(2) = command line option for fiptool (scp
_bl2, bl33
, etc)
# $(2) = command line option for fiptool (
--
scp
-fw, --nt-fw
, etc)
# Example:
# $(eval $(call FIP_ADD_IMG,BL33,--
bl33
))
# $(eval $(call FIP_ADD_IMG,BL33,--
nt-fw
))
define
FIP_ADD_IMG
CRT_DEPS
+=
check_
$(1)
FIP_DEPS
+=
check_
$(1)
$(call
FIP_ADD_PAYLOAD,$(value
$(1)),$(2))
.PHONY
:
check_$(1)
check_$(1)
:
$
$(
if
$(
value
$(1)
)
,,
$
$(
error
"Platform '
${PLAT}
' requires
$(1)
. Please set
$(1)
to point to the right file"
))
endef
...
...
@@ -154,14 +155,15 @@ endef
# FWU_FIP_ADD_IMG allows the platform to pack a binary image in the FWU FIP
# $(1) build option to specify the image filename (BL2U, NS_BL2U, etc)
# $(2) command line option for fiptool (
bl2u, ns_bl2
u, etc)
# $(2) command line option for fiptool (
--ap-fwu-cfg, --fw
u, etc)
# Example:
# $(eval $(call FWU_FIP_ADD_IMG,BL2U,--
bl2u
))
# $(eval $(call FWU_FIP_ADD_IMG,BL2U,--
ap-fwu-cfg
))
define
FWU_FIP_ADD_IMG
FWU_CRT_DEPS
+=
check_
$(1)
FWU_FIP_DEPS
+=
check_
$(1)
$(call
FWU_FIP_ADD_PAYLOAD,$(value
$(1)),$(2))
.PHONY
:
check_$(1)
check_$(1)
:
$
$(
if
$(
value
$(1)
)
,,
$
$(
error
"Platform '
${PLAT}
' requires
$(1)
. Please set
$(1)
to point to the right file"
))
endef
...
...
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