-
I managed to boot from tftp and to mount the rootfs from NFS. Since I haven't found any documentation on how to properly use the tegraflash tooling generated by the build (and its capabilities); does anybody know if it is possible to flash only the bootloader into the device? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You should be able to create a flash layout file that omits the kernel, APP, and any other partitions not needed for running the bootloader. You could also try patching cboot to prevent it from trying other boot devices, too. As far as flashing specific partitions - the flash helper script has a For Xavier NX devices (and the SDcard-based Nano development kits), there is a |
Beta Was this translation helpful? Give feedback.
-
Thanks again for your support @madisongh |
Beta Was this translation helpful? Give feedback.
You should be able to create a flash layout file that omits the kernel, APP, and any other partitions not needed for running the bootloader. You could also try patching cboot to prevent it from trying other boot devices, too.
As far as flashing specific partitions - the flash helper script has a
-c
option for passing a specific command to tegraflash, rather than than the defaultflash;reboot
string; so specifying-c "write <PARTNAME> <FILENAME>"
to write a single partition should work. However, the boot chain requires flashing several partitions. It would probably be simpler to just create a custom flash layout and/or cboot for your particular use case than to figure out exactly which par…