Hi all,
I’m working with a Jetson Xavier NX Devkit and need help with restoring a working NVMe backup to a fresh board.
Backup Process
On my working Xavier NX, I had everything set up:
- JetPack 5.1.3 (flashed via SDK Manager, using NVMe as rootfs)
- DeepStream, OpenCV (built with CUDA), custom libraries, and my full codebase
I followed this thread to create a backup:
- I did not rename mmcblk to nvme in the script, assuming it’s fixed in JetPack 5.1.3.
$ sudo ./tools/backup_restore/l4t_backup_restore.sh -e nvme0n1 -b jetson-xavier-nx-devkit
Backup using nv_backup_partitions.sh completed successfully.
-
The .tar.gz file is about 78.1 GB
-
The generated partition table also seems fine (attached in my post)
nvpartitionmap.txt (1.8 KB)
Restore Process
I used nv_restore_partitions.sh on a fresh Jetson Xavier NX Devkit:
- It has JetPack 5.1.3 on eMMC
- The NVMe is new and empty
sudo ./tools/backup_restore/l4t_backup_restore.sh -e nvme0n1 -r jetson-xavier-nx-devkit
- Restore completed without any errors
33554432 bytes (34 MB, 32 MiB) copied, 2.52372 s, 13.3 MB/s
nvrestore_partitions.sh Restoring nvme0n1 with image nvme0n1p5_bak.img…
131072+0 records in
131072+0 records out
67108864 bytes (67 MB, 64 MiB) copied, 5.00121 s, 13.4 MB/s
nvrestore_partitions.sh Restoring nvme0n1 with image nvme0n1p6_bak.img…
896+0 records in
896+0 records out
458752 bytes (459 kB, 448 KiB) copied, 0.0376251 s, 12.2 MB/s
nvrestore_partitions.sh Restoring nvme0n1 with image nvme0n1p7_bak.img…
65536+0 records in
65536+0 records out
33554432 bytes (34 MB, 32 MiB) copied, 2.51688 s, 13.3 MB/s
nvrestore_partitions.sh Restoring nvme0n1 with image nvme0n1p8_bak.img…
163840+0 records in
163840+0 records out
83886080 bytes (84 MB, 80 MiB) copied, 6.26612 s, 13.4 MB/s
nvrestore_partitions.sh Restoring nvme0n1 with image nvme0n1p9_bak.img…
1024+0 records in
1024+0 records out
524288 bytes (524 kB, 512 KiB) copied, 0.0419881 s, 12.5 MB/s
nvrestore_partitions.sh Restoring nvme0n1 with image nvme0n1p10_bak.img…
204800+0 records in
204800+0 records out
104857600 bytes (105 MB, 100 MiB) copied, 7.81574 s, 13.4 MB/s
nvrestore_partitions.sh Restoring nvme0n1 with image nvme0n1p11_bak.img…
131072+0 records in
131072+0 records out
67108864 bytes (67 MB, 64 MiB) copied, 4.94964 s, 13.6 MB/s
nvrestore_partitions.sh Restoring nvme0n1 with image nvme0n1p12_bak.img…
163840+0 records in
163840+0 records out
83886080 bytes (84 MB, 80 MiB) copied, 6.19052 s, 13.6 MB/s
nvrestore_partitions.sh Restoring nvme0n1 with image nvme0n1p13_bak.img…
1024+0 records in
1024+0 records out
524288 bytes (524 kB, 512 KiB) copied, 0.0419075 s, 12.5 MB/s
nvrestore_partitions.sh Restoring nvme0n1 with image nvme0n1p14_bak.img…
131072+0 records in
131072+0 records out
67108864 bytes (67 MB, 64 MiB) copied, 4.9238 s, 13.6 MB/s
~
nvrestore_partitions.sh Successful restore of partitions on target board.
Operation finishes. You can manually reset the device
The Problem
After restoring, the Jetson does not boot from NVMe.
i get this :
What i think is that while restoring some nvme configuration is mismatched since different nvme and thats why it is not able to boot.
This is one of the issue i have faced , apart from this i have tried various other combinations but nothing is working . I am going in the wrong direction.
Can you give me a structured approach to fix this issue
Thanks :)
