diff options
author | danh-arm <dan.handley@arm.com> | 2016-01-13 11:42:30 +0000 |
---|---|---|
committer | danh-arm <dan.handley@arm.com> | 2016-01-13 11:42:30 +0000 |
commit | 6cf9b6ac547c21cf045d3089bd9437f0c6aae854 (patch) | |
tree | 5e3376495a5db59308c53482e0e31884c375c94b /tools/cert_create/src/tbbr/tbb_ext.c | |
parent | e123b2a37aa8c0be445bd1f0284b3907b91e5b29 (diff) | |
parent | 159807e2faa50a2940f09d57dfa6132220508cce (diff) |
Merge pull request #484 from jcastillo-arm/jc/tf-issues/337
cert_create: update help message
Diffstat (limited to 'tools/cert_create/src/tbbr/tbb_ext.c')
-rw-r--r-- | tools/cert_create/src/tbbr/tbb_ext.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/cert_create/src/tbbr/tbb_ext.c b/tools/cert_create/src/tbbr/tbb_ext.c index 1400fbfd..8bcb0704 100644 --- a/tools/cert_create/src/tbbr/tbb_ext.c +++ b/tools/cert_create/src/tbbr/tbb_ext.c @@ -61,6 +61,7 @@ static ext_t tbb_ext[] = { [TRUSTED_BOOT_FW_HASH_EXT] = { .oid = TRUSTED_BOOT_FW_HASH_OID, .opt = "tb-fw", + .help_msg = "Trusted Boot Firmware image file", .sn = "TrustedBootFirmwareHash", .ln = "Trusted Boot Firmware hash (SHA256)", .asn1_type = V_ASN1_OCTET_STRING, @@ -93,6 +94,7 @@ static ext_t tbb_ext[] = { [SCP_FW_HASH_EXT] = { .oid = SCP_FW_HASH_OID, .opt = "scp-fw", + .help_msg = "SCP Firmware image file", .sn = "SCPFirmwareHash", .ln = "SCP Firmware hash (SHA256)", .asn1_type = V_ASN1_OCTET_STRING, @@ -109,6 +111,7 @@ static ext_t tbb_ext[] = { [SOC_AP_FW_HASH_EXT] = { .oid = SOC_AP_FW_HASH_OID, .opt = "soc-fw", + .help_msg = "SoC AP Firmware image file", .sn = "SoCAPFirmwareHash", .ln = "SoC AP Firmware hash (SHA256)", .asn1_type = V_ASN1_OCTET_STRING, @@ -125,6 +128,7 @@ static ext_t tbb_ext[] = { [TRUSTED_OS_FW_HASH_EXT] = { .oid = TRUSTED_OS_FW_HASH_OID, .opt = "tos-fw", + .help_msg = "Trusted OS image file", .sn = "TrustedOSHash", .ln = "Trusted OS hash (SHA256)", .asn1_type = V_ASN1_OCTET_STRING, @@ -141,6 +145,7 @@ static ext_t tbb_ext[] = { [NON_TRUSTED_WORLD_BOOTLOADER_HASH_EXT] = { .oid = NON_TRUSTED_WORLD_BOOTLOADER_HASH_OID, .opt = "nt-fw", + .help_msg = "Non-Trusted World Bootloader image file", .sn = "NonTrustedWorldBootloaderHash", .ln = "Non-Trusted World hash (SHA256)", .asn1_type = V_ASN1_OCTET_STRING, @@ -149,6 +154,7 @@ static ext_t tbb_ext[] = { [SCP_FWU_CFG_HASH_EXT] = { .oid = SCP_FWU_CFG_HASH_OID, .opt = "scp-fwu-cfg", + .help_msg = "SCP Firmware Update Config image file", .sn = "SCPFWUpdateConfig", .ln = "SCP Firmware Update Config hash (SHA256)", .asn1_type = V_ASN1_OCTET_STRING, @@ -158,6 +164,7 @@ static ext_t tbb_ext[] = { [AP_FWU_CFG_HASH_EXT] = { .oid = AP_FWU_CFG_HASH_OID, .opt = "ap-fwu-cfg", + .help_msg = "AP Firmware Update Config image file", .sn = "APFWUpdateConfig", .ln = "AP Firmware Update Config hash (SHA256)", .asn1_type = V_ASN1_OCTET_STRING, @@ -167,6 +174,7 @@ static ext_t tbb_ext[] = { [FWU_HASH_EXT] = { .oid = FWU_HASH_OID, .opt = "fwu", + .help_msg = "Firmware Updater image file", .sn = "FWUpdaterHash", .ln = "Firmware Updater hash (SHA256)", .asn1_type = V_ASN1_OCTET_STRING, |