Hi, I’m the Toradex AI Assistant. The Toradex Support team will follow up with you shortly!
Did you like my answer?
-
Difference between
gpandhs-fsversions:The
tiboot3-am62x-gp-verdin.binandtiboot3-am62x-hs-fs-verdin.binfiles represent different configurations of the bootloader for the Verdin AM62 module. Thegpversion typically stands for “General Purpose,” which is used for standard, non-secure boot processes. Thehs-fsversion stands for “High Security - Field Secure,” which is used for secure boot processes. If your application does not require secure boot features, thegpversion is the correct one to use. -
Using
ddto flash U-Boot:Yes, you can use the
ddcommand to flash U-Boot, but you need to be careful with the offsets specified in thedd_options. Each file needs to be written to a specific location on the storage device. Thedd_optionsin theimage.jsonfile specify theseekparameter, which determines the offset in blocks where the file should be written.For example, to write the
tiboot3-am62x-gp-verdin.binfile, you would use:dd if=tiboot3-am62x-gp-verdin.bin of=/dev/mmcblk0boot0 bs=1M seek=0Similarly, for
tispl.binandu-boot.img, you would use:dd if=tispl.bin of=/dev/mmcblk0boot0 bs=1M seek=1024 dd if=u-boot.img of=/dev/mmcblk0boot0 bs=1M seek=5120Ensure that you replace
/dev/mmcblk0boot0with the correct device path for your module. -
Recovery:
If you incorrectly install something and the board does not boot, you can use the Toradex Easy Installer in recovery mode to restore the module. This involves booting the module into recovery mode and using a host PC to re-flash the module with a known good image. Always ensure you have a backup of your working images and configurations before attempting manual updates.
Please, also check if these links can help you solve your problem: