diff options
author | Dimitris Papastamos <dimitris.papastamos@arm.com> | 2018-05-23 12:45:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-23 12:45:13 +0100 |
commit | 0d018306d41a36582830e58761cba9d5b647f05b (patch) | |
tree | 07ffc5132c502130034b2e27745350226b2e30f6 /include/common/bl_common.h | |
parent | 41e48fed9a2ccecf7e8a53b8ad5574d038176dd7 (diff) | |
parent | 1d71ba141d32c9e8974d4e3e973a90fd0c6bf458 (diff) | |
download | platform_external_arm-trusted-firmware-0d018306d41a36582830e58761cba9d5b647f05b.tar.gz platform_external_arm-trusted-firmware-0d018306d41a36582830e58761cba9d5b647f05b.tar.bz2 platform_external_arm-trusted-firmware-0d018306d41a36582830e58761cba9d5b647f05b.zip |
Merge pull request #1386 from soby-mathew/sm/dyn_bl31
Extend dynamic configuration
Diffstat (limited to 'include/common/bl_common.h')
-rw-r--r-- | include/common/bl_common.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/common/bl_common.h b/include/common/bl_common.h index 09a394dd1..c7c748729 100644 --- a/include/common/bl_common.h +++ b/include/common/bl_common.h @@ -233,6 +233,14 @@ void reserve_mem(uintptr_t *free_base, size_t *free_size, #endif /* LOAD_IMAGE_V2 */ +#if TRUSTED_BOARD_BOOT && defined(DYN_DISABLE_AUTH) +/* + * API to dynamically disable authentication. Only meant for development + * systems. + */ +void dyn_disable_auth(void); +#endif + extern const char build_message[]; extern const char version_string[]; |