aboutsummaryrefslogtreecommitdiff
path: root/make_helpers
diff options
context:
space:
mode:
authorSoby Mathew <soby.mathew@arm.com>2018-03-26 12:43:37 +0100
committerSoby Mathew <soby.mathew@arm.com>2018-05-18 12:26:37 +0100
commit209a60cca5c6a8cd1b68e6e0e53f0b66555a4458 (patch)
treea3f938a7e81ea914cecd244e49c328a481cfe3fc /make_helpers
parent1f4d62df6cba1cb25e40ea050f5327c1c4d4a7b9 (diff)
downloadtrusted-firmware-a-209a60cca5c6a8cd1b68e6e0e53f0b66555a4458.tar.gz
Allow disabling authentication dynamically
This patch allows platforms to dynamically disable authentication of images during cold boot. This capability is controlled via the DYN_DISABLE_AUTH build flag and is only meant for development purposes. Change-Id: Ia3df8f898824319bb76d5cc855b5ad6c3d227260 Signed-off-by: Soby Mathew <soby.mathew@arm.com>
Diffstat (limited to 'make_helpers')
-rw-r--r--make_helpers/defaults.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/make_helpers/defaults.mk b/make_helpers/defaults.mk
index 4bbff03450..cea8533813 100644
--- a/make_helpers/defaults.mk
+++ b/make_helpers/defaults.mk
@@ -58,6 +58,10 @@ DEBUG := 0
# Build platform
DEFAULT_PLAT := fvp
+# Enable capability to disable authentication dynamically. Only meant for
+# development platforms.
+DYN_DISABLE_AUTH := 0
+
# Flag to enable Performance Measurement Framework
ENABLE_PMF := 0