summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2018-12-15 12:19:58 +0000
committerStefano Babic <sbabic@denx.de>2019-01-09 17:04:34 +0100
commitf7e475db4011d18b4ae974154eb022c3af6a4d16 (patch)
treec8b7f2c6ddecdc65d62eb8009ece5c810608ba2a /tools
parentda72574b217d9a7c91371209ba47c2b69502c313 (diff)
tools: imx8image: set dcd_skip to true
To B0[+] chips, dcd_skip needs to be true. For A0 chip, it needs to be false, however A0 chip is no longer being supported anymore. Considering we are moving code from imx-mkimage to uboot mkimage, to make sure we not introduce some surprise, we still keep dcd_skip code there. Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/imx8image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/imx8image.c b/tools/imx8image.c
index 6e8ac464e7..0d856b9d94 100644
--- a/tools/imx8image.c
+++ b/tools/imx8image.c
@@ -968,7 +968,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, true, fuse_version, sw_version, outfd);
return 0;
}