I have this module : model : P3448
180-13448 - DAAA - B01
does it needs any HW support? this carrier board support an SD card slot, wich uses SDMMC_DAT0/1/2/3, SDMMC_CMD, SDMMC_CLK signals. Can I boot from it?
Or Can I make an image to boot from this external SD card which is on carrier board?
If I need to create and SD card bootable Image can you please guide me?
Jetson nano is not able to totally boot from external storage. The emmc inside the module is still required.
The boot flow is as below:
nvtboot → cboot → uboot → kernel → kernel to mount the file system (rootfs).
Where you can have options are in bold.
nvtboot (emmc) → cboot (emmc) → uboot (emmc) → kernel → kernel to mount the file system (rootfs).
The option means you can select to boot kernel from any external devices, unless the uboot does not support that device. And same to rootfs.
Thus, there are lots of combinations could be used. For example, have sdcard and usb drive both connected on device, I can ask uboot to use kernel from sdcard and then use that kernel to mount the rootfs from usb drive. Of course common people will not do such things. Just an example to explain.
As for case(2), the only difference is let uboot choose to search kernel on sdcard instead of emmc. Thus, doing the same page as above page, but stop the uboot boot process and change the boot order with following command.
I have a TX2 NX module in my B01 dev kit carrier board. I attempted this solution and when it goes to look at the usb0 as a boot target, uBoot runs “usb start” and it fails saying no controller found. I also tried modifying the extlinux.conf file on the emmc memory to point rootfs=/dev/sda1 so that at least Linux would know to look at my USB flash drive for the rootfs but having done that it caused a Kernel panic and reboot loop. It seems that the USB controller is not being brought up until past when the rootfs is identified and booted. Do you have any suggestions? I have the USB flash drive setup correctly following this guide but even still Linux fails to start