Hello! I am interested in flashing multiple Jetson devices (both Xavier NX and TX2NX) and I have to modify Pinmux and Pad control .cfg files but I want to have custom rootfs (system.img).
Now if I want to flash a single device properly I have to do these steps:
- Copy generated padctrl and pinmux .cfg files to BCT folder
- Do full jetson flash:
sudo ./flash.sh jetson-xavier-nx mmcblk0p1
- AFAIK this is the only possible way to flash BCT configs? (This takes about 20 - 30 minutes, because it builds and flashes system.img which is useless for me, I ONLY need BCT, bootloader) - Do system.img flash:
sudo ./flash.sh -r -k APP jetson-xavier-nx mmcblk0p1
(Also 20 - 30 minutes) - Do Kernel flash
- Do DTB flash
My question is - is it possible to flash BCT independently? My dream use case would be:
- Flash everything without system.img
- Flash system.img (no building from rootfs)