mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
tools: kwbimage: Fix endianity when printing kwbimage header
All fields in kwbimage header are in little endian format. Signed-off-by: Pali Rohár <pali@kernel.org>
This commit is contained in:
parent
ee3da92d85
commit
9f39f19926
1 changed files with 3 additions and 3 deletions
|
@ -1928,9 +1928,9 @@ static void kwbimage_print_header(const void *ptr)
|
|||
}
|
||||
|
||||
printf("Data Size: ");
|
||||
genimg_print_size(mhdr->blocksize - sizeof(uint32_t));
|
||||
printf("Load Address: %08x\n", mhdr->destaddr);
|
||||
printf("Entry Point: %08x\n", mhdr->execaddr);
|
||||
genimg_print_size(le32_to_cpu(mhdr->blocksize) - sizeof(uint32_t));
|
||||
printf("Load Address: %08x\n", le32_to_cpu(mhdr->destaddr));
|
||||
printf("Entry Point: %08x\n", le32_to_cpu(mhdr->execaddr));
|
||||
}
|
||||
|
||||
static int kwbimage_check_image_types(uint8_t type)
|
||||
|
|
Loading…
Reference in a new issue