Merge "fix(auth): make key measurement failure fatal" into integration

This commit is contained in:
Manish V Badarkhe 2026-05-12 10:24:53 +00:00 committed by TrustedFirmware Code Review
commit c8525bdbb7

View File

@ -288,6 +288,7 @@ static int auth_signature(const auth_method_param_sig_t *param,
if (rc != 0) {
VERBOSE("[TBB] %s():%d failed with error code %d.\n",
__func__, __LINE__, rc);
return rc;
}
}
@ -581,6 +582,7 @@ int auth_mod_verify_img(unsigned int img_id,
if (rc != 0) {
VERBOSE("[TBB] %s():%d failed with error code %d.\n",
__func__, __LINE__, rc);
return rc;
}
}
}