Hi,
I am trying to flash my custom BSP(based on Jetson Linux 35.5.0) to two identical custom boards(based on Xavier NX) at the same time by using the method in the developer guide:Flashing to Multiple Jetson Devices. Now assume that the name of my custom board is “custom_board”.
1.Run the following command:
sudo BOARDID=3668 FAB=301 BOARDSKU=0001 ./tools/kernel_flash/l4t_initrd_flash.sh --no-flash --network usb0 -massflash 5 custom_board mmcblk0p1
2.Connect the two custom Jetson devices to the flashing hosts(Ubuntu18.04).
3.Ensure that the two custom devices have the identical hardware revision.
I have checked the /etc/nv_boot_control.conf
on the two custom boards and they are completely identical:
TNSPEC 3668-301-0001-G.0-1-2-custom_board-
COMPATIBLE_SPEC 3668-301---1--custom_board-
TEGRA_LEGACY_UPDATE false
TEGRA_EMMC_ONLY false
TEGRA_CHIPID 0x19
TEGRA_OTA_BOOT_DEVICE /dev/mtdblock0
TEGRA_OTA_GPT_DEVICE /dev/mtdblock0
4.Place all of the connected Jetson devices into RCM mode.
5.Run the following command:
sudo ./tools/kernel_flash/l4t_initrd_flash.sh --flash-only --network usb0 --massflash 5
However, the two boards got stuck in the same error.
board1:
......
Waiting for target to boot-up...
Unknown device, absolute path in /dev/ or /sys expected.
Waiting for target to boot-up...
Waiting for device to expose ssh ......RTNETLINK answers: File exists
RTNETLINK answers: File exists
...RTNETLINK answers: File exists
RTNETLINK answers: File exists
Waiting for device to expose ssh ...Run command: flash on fc00:1:1:0::2
SSH ready
mount: /mnt/proc: mount point does not exist.
Flash failure
Cleaning up...
board2:
......
Waiting for target to boot-up...
Unknown device, absolute path in /dev/ or /sys expected.
Waiting for target to boot-up...
Waiting for device to expose ssh ......RTNETLINK answers: File exists
RTNETLINK answers: File exists
...RTNETLINK answers: File exists
RTNETLINK answers: File exists
Waiting for device to expose ssh ...Run command: flash on fc00:1:1:1::2
SSH ready
mount: /mnt/proc: mount point does not exist.
Flash failure
Cleaning up...
How can I solve this problem? Thanks very much.