• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修订版f7e475db4011d18b4ae974154eb022c3af6a4d16 (tree)
时间2019-01-10 01:04:34
作者Peng Fan <peng.fan@nxp....>
CommiterStefano Babic

Log Message

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>

更改概述

差异

--- a/tools/imx8image.c
+++ b/tools/imx8image.c
@@ -968,7 +968,7 @@ int imx8image_copy_image(int outfd, struct image_tool_params *mparams)
968968 fprintf(stdout, "CONTAINER SW VERSION:\t0x%04x\n", sw_version);
969969
970970 build_container(soc, sector_size, emmc_fastboot,
971- img_sp, false, fuse_version, sw_version, outfd);
971+ img_sp, true, fuse_version, sw_version, outfd);
972972
973973 return 0;
974974 }