mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
[new uImage] Fix build problems on trab board
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
This commit is contained in:
parent
f773bea8e1
commit
1d1cb4270e
1 changed files with 2 additions and 2 deletions
|
@ -224,7 +224,7 @@ au_check_cksum_valid(int idx, long nbytes)
|
|||
return -1;
|
||||
}
|
||||
/* check the data CRC */
|
||||
if (!image_check_dcrc (hdr)) {
|
||||
if (!image_check_dcrc (hdr))
|
||||
{
|
||||
printf ("Image %s bad data checksum\n", aufile[idx]);
|
||||
return -1;
|
||||
|
@ -284,7 +284,7 @@ au_check_header_valid(int idx, long nbytes)
|
|||
return -1;
|
||||
}
|
||||
if ((idx == IDX_APP) && !image_check_type (hdr, IH_TYPE_RAMDISK)
|
||||
&& !image_check_type (hdr, FILESYSTEM)) {
|
||||
&& !image_check_type (hdr, IH_TYPE_FILESYSTEM)) {
|
||||
printf ("Image %s wrong type\n", aufile[idx]);
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue