mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
image: Rename fit_image_check_hashes() to fit_image_verify()
This is the main entry point to the FIT image verification code. We will be using it to handle image verification with signatures, so rename the function. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
b7260910dc
commit
b8da836650
8 changed files with 17 additions and 17 deletions
|
@ -127,7 +127,7 @@ source (ulong addr, const char *fit_uname)
|
|||
|
||||
/* verify integrity */
|
||||
if (verify) {
|
||||
if (!fit_image_check_hashes (fit_hdr, noffset)) {
|
||||
if (!fit_image_verify(fit_hdr, noffset)) {
|
||||
puts ("Bad Data Hash\n");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue