mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-23 23:01:28 +02:00
imx: hab: Use size parameter
The current code works by sheer coincidence, because (see HABv4 API documentation, section 3.4) the RVT authenticate_image call updates the size that is passed in with the actual size ROM code pulls from IVT/CSF . So if the input size is larger, that is "fine" . Pass in size instead to make this really correct. Signed-off-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
cc7df0b9e8
commit
b0296e22cb
@ -353,7 +353,7 @@ void *spl_load_simple_fit_fix_load(const void *fit)
|
||||
debug("%s: ivt: %p offset: %lx size: %lx\n", __func__, ivt, offset, size);
|
||||
debug("%s: ivt self: %x\n", __func__, ivt->self);
|
||||
|
||||
if (imx_hab_authenticate_image((uintptr_t)fit, (uintptr_t)ivt, offset))
|
||||
if (imx_hab_authenticate_image((uintptr_t)fit, (uintptr_t)size, offset))
|
||||
panic("spl: ERROR: image authentication unsuccessful\n");
|
||||
|
||||
return (void *)fit;
|
||||
|
Loading…
x
Reference in New Issue
Block a user