diff options
author | wdenk <wdenk> | 2005-02-04 15:38:08 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-02-04 15:38:08 +0000 |
commit | f8883cb101061c85c49cc1a3e68b890eab8ab118 (patch) | |
tree | be46ea9e1e7ff03fa34be5a7ee341c64bf741456 /common/cmd_scsi.c | |
parent | 20a80418f9201f81b718aeb6c872b83bd8e929c0 (diff) | |
download | u-boot-imx-f8883cb101061c85c49cc1a3e68b890eab8ab118.zip u-boot-imx-f8883cb101061c85c49cc1a3e68b890eab8ab118.tar.gz u-boot-imx-f8883cb101061c85c49cc1a3e68b890eab8ab118.tar.bz2 |
Fix byteorder problem in usbboot and scsiboot commands.
Diffstat (limited to 'common/cmd_scsi.c')
-rw-r--r-- | common/cmd_scsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_scsi.c b/common/cmd_scsi.c index 062b1c9..61309f9 100644 --- a/common/cmd_scsi.c +++ b/common/cmd_scsi.c @@ -269,7 +269,7 @@ int do_scsiboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) hdr = (image_header_t *)addr; - if (hdr->ih_magic == IH_MAGIC) { + if (ntohl(hdr->ih_magic) == IH_MAGIC) { printf("\n** Bad Magic Number **\n"); return 1; } @@ -283,7 +283,7 @@ int do_scsiboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) } print_image_hdr (hdr); - cnt = (hdr->ih_size + sizeof(image_header_t)); + cnt = (ntohl(hdr->ih_size) + sizeof(image_header_t)); cnt += info.blksz - 1; cnt /= info.blksz; cnt -= 1; |