summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Castillo <juan.castillo@arm.com>2015-03-02 16:16:13 +0000
committerJuan Castillo <juan.castillo@arm.com>2015-03-05 16:37:33 +0000
commit85cdfdb25c9d3947884b80f7c96b2f991db5030a (patch)
tree4e6caf5c2610dd3f7aa15f1c2da7029653461914
parent5930eadbe5d8d4c3f15fd910476f72cd5bf86f44 (diff)
TBB: fix build target 'all' dependency on certificates
Build target 'all' fails when GENERATE_COT=1 and no BL3-3 or BL3-0 (if required) images are specified. The reason is that, when GENERATE_COT=1, a dependency on the certificates is added to the target 'all', and the certificates depend on the BL3-3 and BL3-0 images, causing the build process to fail if the images are not specified. This patch moves the dependency on the certificates from 'all' to 'fip'. Target 'all' may be used to build the individual images. The certificates will be created by calling the target 'fip', where BL3-3 and BL3-0 (if required) must be specified. Change-Id: I870beb4e8f9f1bfad1d35b09c850a7ce3c9f4ec6
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1e2f324c..43d3e326 100644
--- a/Makefile
+++ b/Makefile
@@ -600,7 +600,7 @@ endif
# Add the dependency on the certificates
ifneq (${GENERATE_COT},0)
- all: certificates
+ fip: certificates
endif
certificates: ${CRT_DEPS} ${CRTTOOL} check_bl30 check_bl33