diff options
author | Albert ARIBAUD | 2013-01-08 14:59:37 +0100 |
---|---|---|
committer | Albert ARIBAUD | 2013-01-08 14:59:37 +0100 |
commit | 7528cf5f016b5b8b8b12b373f6f31a10bf89233d (patch) | |
tree | de91b38f0b5a9c06c2000b02372a7cc1c2655e3e /tools | |
parent | 79f38777947ac7685e2cef8bd977f954ab198c0e (diff) | |
parent | 1411fb37b5a8d56bececc5e6ea09d2e0670b9810 (diff) |
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
Diffstat (limited to 'tools')
-rw-r--r-- | tools/imximage.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/imximage.c b/tools/imximage.c index 63f88b6c422..a93d7eb543a 100644 --- a/tools/imximage.c +++ b/tools/imximage.c @@ -515,7 +515,14 @@ static void imximage_set_header(void *ptr, struct stat *sbuf, int ifd, /* Set the imx header */ (*set_imx_hdr)(imxhdr, dcd_len, params->ep, imxhdr->flash_offset); - *header_size_ptr = sbuf->st_size + imxhdr->flash_offset; + + /* + * ROM bug alert + * mx53 only loads 512 byte multiples. + * The remaining fraction of a block bytes would + * not be loaded. + */ + *header_size_ptr = ROUND(sbuf->st_size + imxhdr->flash_offset, 512); } int imximage_check_params(struct mkimage_params *params) |