From 4d9d34a7f280ba0e14896d4157ede677899f83a2 Mon Sep 17 00:00:00 2001 From: Lokesh Vutla Date: Tue, 24 May 2016 10:34:37 +0530 Subject: spl: fit: Fix the number of bytes read when reading fdt from fit sectors field is not being updated when reading fdt from fit image. Because of this size_of(u-boot.bin) is being read when reading fdt. Fixing it by updating the sectors field properly. Tested-by: Michal Simek Reviewed-by: Simon Glass Reviewed-by: Tom Rini Signed-off-by: Lokesh Vutla --- common/spl/spl_fit.c | 1 + 1 file changed, 1 insertion(+) (limited to 'common/spl/spl_fit.c') diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c index 90acbb2..79cc06e 100644 --- a/common/spl/spl_fit.c +++ b/common/spl/spl_fit.c @@ -182,6 +182,7 @@ int spl_load_simple_fit(struct spl_load_info *info, ulong sector, void *fit) */ dst = load_ptr + data_size; fdt_offset += base_offset; + sectors = (fdt_len + info->bl_len - 1) / info->bl_len; count = info->read(info, sector + fdt_offset / info->bl_len, sectors, dst); debug("fit read %x sectors to %x, dst %p, data_offset %x\n", -- cgit v1.1