From c250ce0f570d89ef579827f8a2d98d1cbc4f1c2a Mon Sep 17 00:00:00 2001 From: Chris Packham Date: Mon, 23 Feb 2015 11:25:20 +1300 Subject: kwbimage: align v1 binary header to 4B According to the Armada-XP documentation the binary header format requires the header length to be aligned to 4B. Signed-off-by: Chris Packham Acked-by: Stefan Roese Acked-by: Prafulla Wadaskar --- tools/kwbimage.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') diff --git a/tools/kwbimage.c b/tools/kwbimage.c index de5c80847e..9540e7eb84 100644 --- a/tools/kwbimage.c +++ b/tools/kwbimage.c @@ -498,6 +498,7 @@ static void *image_create_v1(size_t *imagesz, struct image_tool_params *params, binhdrsz = sizeof(struct opt_hdr_v1) + (binarye->binary.nargs + 1) * sizeof(unsigned int) + s.st_size; + binhdrsz = ALIGN_SUP(binhdrsz, 32); hdr->headersz_lsb = binhdrsz & 0xFFFF; hdr->headersz_msb = (binhdrsz & 0xFFFF0000) >> 16; -- cgit v1.2.1