I am experiencing an issue with my Jetson Orin where it fails to boot properly. I faced with a similar issue when I was using an SD card to boot my Jetson. That issue resolved after switching to an SSD however the issue is happening again.
Jetson is not booting after reboot
Here are the logs I captured when the device was in recovery mode.
bootup.log (60.1 KB)
Below are the key points from the serial console logs that highlight the problem:
-
Missing Kernel Module:
modprobe: FATAL: Module r8168 not found in directory /lib/modules/5.10.192-tegra
- The system reports a fatal error due to the missing
r8168
module, which is likely required for the Realtek Ethernet driver.
- The system reports a fatal error due to the missing
-
Mounting Issues:
- The system attempts to locate and mount the OTA work directory but encounters several errors:
Checking whether device /dev/mmcblk?p1 exist Device /dev/mmcblk?p1 does not exist Checking whether device /dev/sd?1 exist Device /dev/sd?1 does not exist Checking whether device /dev/nvme?n1p1 exist Looking for OTA work directory on the device(s): /dev/nvme0n1p1 mount /dev/nvme0n1p1 /mnt OTA work directory /mnt/ota_work is not found on /dev/nvme0n1p1 mount /dev/mmcblk0p1 /mnt mount: /mnt: special device /dev/mmcblk0p1 does not exist. Failed to mount /dev/mmcblk0p1 on the /mnt
- The device
/dev/mmcblk0p1
does not exist, indicating a possible issue with the internal storage. - The OTA work directory
/mnt/ota_work
is not found on the NVMe device/dev/nvme0n1p1
.
- The system attempts to locate and mount the OTA work directory but encounters several errors:
-
Entering Recovery Mode:
- Due to these issues, the system mounts the root filesystem from initrd and enters recovery mode.
Here are the logs after I switched to the direct booting mode. At this point device is just rebooting itself after bootup
bootup_2.log (61.4 KB)