lib: avb: print the permanent attribute certificate is exist or not

Change-Id: I10775dd06a6fb1bfdddcfda37fe2e1178c3fde21
Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
This commit is contained in:
Jason Zhu 2019-09-18 10:34:40 +08:00
parent 35cd2352c8
commit c2bb0fd141
1 changed files with 3 additions and 1 deletions

View File

@ -42,8 +42,10 @@ int rk_avb_get_pub_key(struct rk_pub_key *pub_key)
int rk_avb_get_perm_attr_cer(uint8_t *cer, uint32_t size)
{
#ifdef CONFIG_OPTEE_CLIENT
if (trusty_read_permanent_attributes_cer((uint8_t *)cer, size))
if (trusty_read_permanent_attributes_cer((uint8_t *)cer, size)) {
printf("AVB: perm attr cer is not exist.\n");
return -EIO;
}
return 0;
#else