mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-26 23:04:50 +00:00
feat(qemu): add dummy plat_mboot_measure_key() BL1 function
Adds a dummy implementation of the plat_mboot_measure_key() function in BL1 for QEMU platform. Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org> Change-Id: I5923aad962a5e34d657cf49c177e68ed2ea93291
This commit is contained in:
parent
bf2fa7e36d
commit
8e2fd6a84b
1 changed files with 6 additions and 0 deletions
|
@ -26,3 +26,9 @@ int plat_mboot_measure_image(unsigned int image_id, image_info_t *image_data)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int plat_mboot_measure_key(const void *pk_oid, const void *pk_ptr,
|
||||||
|
size_t pk_len)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue