From: Pali Rohár Date: Thu, 17 Feb 2022 09:43:38 +0000 (+0100) Subject: tools: kwbimage: Add support for NAND_BLKSZ and NAND_BADBLK_LOCATION for v0 images X-Git-Tag: v2022.07~176^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a6661a0ea26c6747e7b4639ec5950a5fff370711;p=platform%2Fkernel%2Fu-boot.git tools: kwbimage: Add support for NAND_BLKSZ and NAND_BADBLK_LOCATION for v0 images These two commands are currently not processed when generating v0 images. Signed-off-by: Pali Rohár Tested-by: Tony Dinh Reviewed-by: Stefan Roese --- diff --git a/tools/kwbimage.c b/tools/kwbimage.c index 73788d8..bf8ab0f 100644 --- a/tools/kwbimage.c +++ b/tools/kwbimage.c @@ -998,9 +998,15 @@ static void *image_create_v0(size_t *imagesz, struct image_tool_params *params, e = image_find_option(IMAGE_CFG_NAND_ECC_MODE); if (e) main_hdr->nandeccmode = e->nandeccmode; + e = image_find_option(IMAGE_CFG_NAND_BLKSZ); + if (e) + main_hdr->nandblocksize = e->nandblksz / (64 * 1024); e = image_find_option(IMAGE_CFG_NAND_PAGESZ); if (e) main_hdr->nandpagesize = cpu_to_le16(e->nandpagesz); + e = image_find_option(IMAGE_CFG_NAND_BADBLK_LOCATION); + if (e) + main_hdr->nandbadblklocation = e->nandbadblklocation; main_hdr->checksum = image_checksum8(image, sizeof(struct main_hdr_v0));