diff options
Diffstat (limited to 'include/common')
-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[]; |