diff options
author | danh-arm <dan.handley@arm.com> | 2016-06-08 16:06:43 +0100 |
---|---|---|
committer | danh-arm <dan.handley@arm.com> | 2016-06-08 16:06:43 +0100 |
commit | ae43c9493d2c6a2a878f3cee0c240c69fe88f130 (patch) | |
tree | 4b6bbc493d577feea0358b8b181c4e7299759472 /include | |
parent | 174baeed26db653dd59fdcad227e85567dddc045 (diff) | |
parent | 04943d33cf379868a1dfa3971c2c2250526f0670 (diff) |
Merge pull request #642 from soby-mathew/sm/override_rotpk
Allow dynamic overriding of ROTPK verification
Diffstat (limited to 'include')
-rw-r--r-- | include/plat/common/platform.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/plat/common/platform.h b/include/plat/common/platform.h index a08a12e4..390721f2 100644 --- a/include/plat/common/platform.h +++ b/include/plat/common/platform.h @@ -49,6 +49,9 @@ struct image_desc; * plat_get_rotpk_info() flags ******************************************************************************/ #define ROTPK_IS_HASH (1 << 0) +/* Flag used to skip verification of the certificate ROTPK while the platform + ROTPK is not deployed */ +#define ROTPK_NOT_DEPLOYED (1 << 1) /******************************************************************************* * Function declarations |