diff options
Diffstat (limited to 'src/include/securerom/ROM.H')
-rw-r--r-- | src/include/securerom/ROM.H | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/include/securerom/ROM.H b/src/include/securerom/ROM.H index 5b5e46635..f4cf76528 100644 --- a/src/include/securerom/ROM.H +++ b/src/include/securerom/ROM.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2016,2017 */ +/* Contributors Listed Below - COPYRIGHT 2016,2018 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -31,6 +31,7 @@ #include <securerom/ecverify.H> #include <string.h> #include <array> +#include <vector> /** * @brief Indicates container header section versions @@ -345,4 +346,10 @@ enum SB_FUNC_VERS : sbFuncVer_t */ extern const std::array<sbFuncType_t, SB_FUNC_TYPES::MAX_TYPES> SecRomFuncTypes; +/** + * @brief Vector of IDds (PNOR or Lid Id(s)) associated with the blob that is + * being verified. + */ +typedef std::vector<uint32_t> RomVerifyIds; + #endif |