SPRADK5 June 2025 TDA4VM
To support MMC/SD boot as the backup boot mode, a separate set of boot images must be prepared. Use the appropriate build commands to generate the required binaries. After building, the following files are produced:
cd ${PDK_PATH}/packages/ti/build
make -sj6 sbl_emmc_uda_img BOARD=j721e_evm CORE=mcu1_0
make -sj6 boot_app_mmcsd_qnx HLOSBOOT=qnx BOARD=j721e_evm CORE=mcu1_0Copy these binaries to the eMMC User Data Area (UDA) partition, as the backup boot process loads the binaries from this region.
mount /dev/mmcblk0p1 ./emmc_uda_partition
export DST_DIR=/home/root/emmc_uda_partition
cp tiboot3.bin ${DST_DIR}/
cp app ${DST_DIR}/
cp tifs.bin ${DST_DIR}/
sync