From: Albert ARIBAUD \(3ADEV\) Date: Fri, 19 Jun 2015 12:18:30 +0000 (+0200) Subject: tools: mkimage: fix imximage header size X-Git-Tag: v2015.10-rc1~2^2~56 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=699279cac0ed0816433e0922aba26fe6dd0a8066;p=u-boot tools: mkimage: fix imximage header size imximage header size is 4-byte, not 8-byte aligned. This produces .imx images that a Vybrid cannot boot on. Fix by adding a "padding" field in header. Signed-off-by: Albert ARIBAUD (3ADEV) --- diff --git a/tools/imximage.h b/tools/imximage.h index 36fe0958fe..a913329f34 100644 --- a/tools/imximage.h +++ b/tools/imximage.h @@ -129,6 +129,7 @@ typedef struct { ivt_header_t header; write_dcd_command_t write_dcd_command; dcd_addr_data_t addr_data[MAX_HW_CFG_SIZE_V2]; + uint32_t padding[1]; /* end up on an 8-byte boundary */ } dcd_v2_t; typedef struct {