I tried, but it didn’t solved the issue. I had the “Drivers for Jetson AGX” (the stage with problems for libbz2) extracted without CRC errors.
At the flashing I’m getting the pop-up: “Could not detect the target hardware. Please make sure the target hardware is connected and it is in recovery mode, click OK and RETRY”.
Also I found in the logs this two error (that refers to the virtual ethernet address because it is making a scp, which is failing and ignoring) in the log NV_L4T_FLASH_XAVIER_WITH_OS_IMAGE_COMP.log:
Info: [ Disk Avail:29.22 GB ]
Info: change working directory to /home/mr/nvidia/nvidia_sdk/JetPack_4.2_Linux_P2888/Linux_for_Tegra
Info: [ Component Install Started ]
Info: current working directory is /home/mr/nvidia/nvidia_sdk/JetPack_4.2_Linux_P2888/Linux_for_Tegra
Info: exec_command [target]:
**********************
#!/bin/bash
set -e
function safe_apt_install {
echo "*begin $1, $2"
tmp_log=/tmp/jetpack_dpkg_log.txt
sudo rm -f $tmp_log
set +e; $1 2>&1 | tee $tmp_log; CMD_STATUS=${PIPESTATUS[0]}; set -e
while [ ${CMD_STATUS} -ne 0 ]; do
if grep -q -e "is locked by another process" -e "E: Could not get lock /var/lib" $tmp_log; then
sudo rm -f $tmp_log
set +e; $1 2>&1 | tee $tmp_log; CMD_STATUS=${PIPESTATUS[0]}; set -e
echo "Waiting $2 seconds for apt to be available"; sleep ${2}
else
echo "Unhandled error when running $1"; exit 1
fi
done
}
export LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8
sudo reboot forced-recovery
**********************
Info: exec_command: scp -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no /tmp/tmp_NV_L4T_FLASH_XAVIER_WITH_OS_IMAGE_COMP.sh nvidia@192.168.55.1:~; ssh -t -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no nvidia@192.168.55.1 "~/tmp_NV_L4T_FLASH_XAVIER_WITH_OS_IMAGE_COMP.sh && rm -f ~/tmp_NV_L4T_FLASH_XAVIER_WITH_OS_IMAGE_COMP.sh"
Warning: command scp -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no /tmp/tmp_NV_L4T_FLASH_XAVIER_WITH_OS_IMAGE_COMP.sh nvidia@192.168.55.1:~; ssh -t -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no nvidia@192.168.55.1 "~/tmp_NV_L4T_FLASH_XAVIER_WITH_OS_IMAGE_COMP.sh && rm -f ~/tmp_NV_L4T_FLASH_XAVIER_WITH_OS_IMAGE_COMP.sh" finished with error, but ignored
Info: exec_command: sleep 20
Info: exec_command: sudo ./flash.sh jetson-xavier mmcblk0p1
###############################################################################
# L4T BSP Information:
# R32 (release), REVISION: 1.0, GCID: 14531094, BOARD: t186ref, EABI: aarch64,
# DATE: Wed Mar 13 07:41:08 UTC 2019
###############################################################################
Error: probing the target board failed.
Make sure the target board is connected through
USB port and is in recovery mode.
Info: [ Component Install Finished with Error ]
Error: NV_L4T_FLASH_XAVIER_WITH_OS_IMAGE_COMP command sudo ./flash.sh jetson-xavier mmcblk0p1 finished with error
Info: [ 12.00 KB used. Disk Avail: 29.22 GB ]
Info: [ NV_L4T_FLASH_XAVIER_WITH_OS_IMAGE_COMP Install took 4m47s ]
Again, the board is in recovery, and it is listed in lsusb.
EDIT: tried also a complete uninstall e retry and it fails again at the same point…