Skip to content
Snippets Groups Projects
Commit 0dab03ba authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Fix mkimage -l bug with multifile images on 64bit platforms

Patch by David Updegraff, 06 Sep 2006
parent f60ba0d3
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4:
======================================================================
* Fix mkimage -l bug with multifile images on 64bit platforms
Patch by David Updegraff, 06 Sep 2006
* Fix build problems on sorcery board.
* Fix coldfire build problems.
......
......@@ -632,7 +632,7 @@ print_header (image_header_t *hdr)
if (hdr->ih_type == IH_TYPE_MULTI || hdr->ih_type == IH_TYPE_SCRIPT) {
int i, ptrs;
uint32_t pos;
unsigned long *len_ptr = (unsigned long *) (
uint32_t *len_ptr = (uint32_t *) (
(unsigned long)hdr + sizeof(image_header_t)
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment