mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
splash_source: Verify FIT magic
Before reading entire FIT image, add sanity check by testing image header against FDT_MAGIC. This should help avoid problems in situations where FIT is not yet available from storage device, for example when performing initial programming of device. Cc: Anatolij Gustschin <agust@denx.de> Acked-by: Tomas Melin <tomas.melin@vaisala.com>
This commit is contained in:
parent
f8ba7f2774
commit
a7126edcb3
1 changed files with 5 additions and 0 deletions
|
@ -317,6 +317,11 @@ static int splash_load_fit(struct splash_location *location, u32 bmp_load_addr)
|
|||
return res;
|
||||
|
||||
img_header = (struct image_header *)bmp_load_addr;
|
||||
if (image_get_magic(img_header) != FDT_MAGIC) {
|
||||
printf("Could not find FDT magic\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
fit_size = fdt_totalsize(img_header);
|
||||
|
||||
/* Read in entire FIT */
|
||||
|
|
Loading…
Reference in a new issue