]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
tools: imx8image: Fix the value passed to dcd_skip of build_container()
authorAlice Guo <alice.guo@nxp.com>
Tue, 24 Jun 2025 10:09:22 +0000 (18:09 +0800)
committerTom Rini <trini@konsulko.com>
Tue, 24 Jun 2025 13:50:12 +0000 (07:50 -0600)
The value passed to dcd_skip of build_container() should be obtained by
parsing .cfg file, and should not be fixed to false. For i.MX8QXP, dcd
data needs to be skipped, in which case dcd_skip should be true.

Fixes: 5f28a6599f01("tools: imx8image: add i.MX95 support")
Signed-off-by: Alice Guo <alice.guo@nxp.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Reported-by: Enric Balletbo i Serra <eballetb@redhat.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
tools/imx8image.c

index a333ded46e212ab59d71ea53fdaff226e7d9ebc7..cad55fd3cf211d6ebce71c7c56ad974af52ad936 100644 (file)
@@ -1146,7 +1146,7 @@ int imx8image_copy_image(int outfd, struct image_tool_params *mparams)
        fprintf(stdout, "CONTAINER SW VERSION:\t0x%04x\n", sw_version);
 
        build_container(soc, sector_size, emmc_fastboot,
-                       img_sp, false, fuse_version, sw_version, outfd);
+                       img_sp, dcd_skip, fuse_version, sw_version, outfd);
 
        return 0;
 }