I have a jetson orin nano devkit currently setup with customized kernel (r36.4.3) and additional required applications. I want to create its setup’s clone so that I can flash other kits with the same setup. What’s the procedure for that?
Yes, you should have your device in recovery mode. After performing this, you will find the backup image at Linux_for_Tegra/tools/backup_restore/images directory.
Thank you very much, the solution works (although on same model platforms).
I have jetson orin nano kits of different models:
Bus 001 Device 124: ID 0955:7523 NVIDIA Corp. APX
Bus 001 Device 123: ID 0955:7035 NVIDIA Corp. Linux for Tegra
Even though they are both Orin nano, when I tried to restore the backup image, it failed and gave nvrestore_partitions.sh: You are trying to flash images from a board model that does not match the current board you're flashing onto.
However, when I removed the nvme from the backup device and installed it in the restore device (of different model), it was able to boot without any error. So why does the command not work?
Also, should I now go with dd instead of backup_restore?
According to this answer: Difference between device 0955:7035 and 0955:7e19? - #2 by lhoang 7035 is USB ID for when a Jetson Device exposes itself for initrd flash method. Which makes sense with your usage. My question would be, is this device another Jetson Orin Nano (7523)?
Could you point me out to any of the dd documentation or give me any context regarding this tool?
This code exists in this script to make sure the restore image go to the device with the correct model.
tools/backup_restore/nvrestore_partitions.sh
if [ ${BOARD_MATCH} = false ]; then
echo “${SCRIPT_NAME}: You are trying to flash images from a board model that does not”
echo “match the current board you’re flashing onto.”
exit 1
fi
You could comment it out to ignore the error. However note that, the DTB could be wrong when you put it into Orin Nano devkit of a different model.
Also note that, you should not have another Jetson in initrd mode (0955:7035) plugged in when running