Dear NVidia
While taking a backup of our Orin NX devices, we saw that the backup of the rootfs partition was not anymore a tar archive but an image file. Checking further, we found an error in the nvbackup_partitions.sh script. In the function is_ext4, the following line needs to be changed:
result=“$( blkid “/dev/${1}” | awk ‘{ print $3 }’ | sed -n 's|TYPE=”(.*)“|\1|p’ )”
change to
result=“$( blkid “/dev/${1}” | awk ‘{ print $4 }’ | sed -n 's|TYPE=”(.*)“|\1|p’ )”
The first line does not anymore give the type of the partition.
Please check this.
Thank you.
Kind regards