diff mbox series

[U-Boot,v2,1/4] tools: zynqmpimage: Align image_size/image_stored_size

Message ID abdcc3e3431f5cc3294c7ee680402c81c6ca4d92.1547637828.git.michal.simek@xilinx.com
State Accepted
Commit 775ed87ac4015c8b17bc9d828e3bafe4a0f7ed03
Delegated to: Michal Simek
Headers show
Series [U-Boot,v2,1/4] tools: zynqmpimage: Align image_size/image_stored_size | expand

Commit Message

Michal Simek Jan. 16, 2019, 11:23 a.m. UTC
Bootrom is not capable to work with non aligned bootloader sizes.
SPL with OF_SEPARATE generates non-align images quite often that's
why this change is required before OF_SEPARATE enableding.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

Changes in v2:
- Remove zynqmpimage.c changes
- Fix subject

 tools/zynqmpbif.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/tools/zynqmpbif.c b/tools/zynqmpbif.c
index a33c15e1f018..8c47107c7b94 100644
--- a/tools/zynqmpbif.c
+++ b/tools/zynqmpbif.c
@@ -425,8 +425,8 @@  static int bif_add_part(struct bif_entry *bf, const char *data, size_t len)
 		if (!bif_output.header->image_offset)
 			bif_output.header->image_offset =
 				cpu_to_le32(bf->offset);
-		bif_output.header->image_size = cpu_to_le32(len);
-		bif_output.header->image_stored_size = cpu_to_le32(len);
+		bif_output.header->image_size = cpu_to_le32(len_padded);
+		bif_output.header->image_stored_size = cpu_to_le32(len_padded);
 
 		bif_output.header->image_attributes &= ~HEADER_CPU_SELECT_MASK;
 		switch (bf->dest_cpu) {