I have 2 Jetson Nano. the one is no problem, but another one cannot boot by USB memory and stop like attached photo.
It can boot by USB a few times, but after installing Arducam camera driver (IMX477) then reboot, it cannot be booted by USB everafter.
I made boot USB and installed Jetpack several times, but no meaning.
JetPack : first installed 4.6, after installed 4.5.1
USB Memory : Samsung USB 3.1 256GB
Just want to tell you that your log file is still being cut.
The kernel command line is still not full.
But I can see the cause of your issue now, your root device looks like still mmcblk0p1. This is the default node for sdcard. But appears that sdcard does not exist on your board so it is not able to find the rootfs.
[ 6.584544] Root device found: mmcblk0p1
[ 8.088769] scsi 0:0:0:0: Direct-Access Samsung Flash Drive FIT 1100 PQ: 0 ANSI: 6
[ 8.097569] sd 0:0:0:0: [sda] 501253132 512-byte logical blocks: (257 GB/239 GiB)
[ 8.105234] sd 0:0:0:0: [sda] Write Protect is off
[ 8.110193] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
[ 8.127453] sda: sda1
[ 8.130936] sd 0:0:0:0: [sda] Attached SCSI removable disk
[ 16.742326] ERROR: mmcblk0p1 not found
You can learn by reading this post to understand what gets missing on your board now.
A simple solution is put your sdcard image back, let it boot into filesystem.
Then, you mount your sda1 to a mount point by using mount command. Goes to the your_mount_point/boot/extlinux/extlinux.conf and add root=/dev/sda1 to the kernel command line. Reboot and see if it helps.
But again, you need to get the full log so that we can see the kernel cmdline.