Changes between Version 42 and Version 43 of venice/secure_boot


Ignore:
Timestamp:
08/12/2025 06:58:45 PM (3 months ago)
Author:
Tim Harvey
Comment:

added '--soc' argument to mkimage_jtag invocation to help avoid flashing the wrong image on an soc

Legend:

Unmodified
Added
Removed
Modified
  • venice/secure_boot

    v42 v43  
    186186[ -f doc/imx/habv4/csf_examples/mx8m/csf.sh ] && /bin/sh doc/imx/habv4/csf_examples/mx8m/csf.sh
    187187# create a JTAG image (if needed) using one of the following (dependent on which SoC you are using)
    188 mkimage_jtag --emmc -s --partconf=boot0 \
     188mkimage_jtag --soc imx8mm --emmc -s --partconf=boot0 \
    189189  flash.bin@boot0:erase_none:66-8192 > signed_u-boot_spl-imx8mm.bin # imx8mm emmc boot0 partition
    190 mkimage_jtag --emmc -s --partconf=boot0 \
     190mkimage_jtag --soc imx8mp --emmc -s --partconf=boot0 \
    191191  flash.bin@boot0:erase_none:0-8192 > signed_u-boot_spl-imx8mp.bin # imx8mp/imx8mn emmc boot0 partition
    192192}}}
     
    494494[ -f doc/imx/habv4/csf_examples/mx8m/csf.sh ] && /bin/sh doc/imx/habv4/csf_examples/mx8m/csf.sh
    495495# create a JTAG image (if needed) using one of the following depending on your SoC
    496 mkimage_jtag --emmc -s --partconf=boot0 \
     496mkimage_jtag --soc imx8mm --emmc -s --partconf=boot0 \
    497497  flash.bin@boot0:erase_all:66-8192 > signed_u-boot_spl-imx8mm.bin # imx8mm emmc boot0 partition
    498 mkimage_jtag --emmc -s --partconf=boot0 \
     498mkimage_jtag --soc imx8mp --emmc -s --partconf=boot0 \
    499499  flash.bin@boot0:erase_all:0-8192 > signed_u-boot_spl-imx8mp.bin # imx8mp emmc boot0 partition
    500 mkimage_jtag --emmc -s --partconf=boot0 \
     500mkimage_jtag --soc imx8mn --emmc -s --partconf=boot0 \
    501501  flash.bin@boot0:erase_all:0-8192 > signed_u-boot_spl-imx8mn.bin # imx8mn emmc boot0 partition
    502502}}}