From the log your shared, it seems booting into UEFI menu.
Do you press ENTER or F11 to interrupt the boot process and enter into UEFI menu?
Or do you connect any serial device which may cause serial input?
We are using Custom board.
For base and target version of the OTA update, are you looking for Jetson os version information or our internal software version information?
flashJetson .sh is the script we call to initiate the software update, below is the content of the script.
elif [ “$1” = “-i” ]
then
echo “Flasing Jetson Base SW…”
export TOOLSDIR=${WORKDIR}/Linux_for_Tegra/tools/ota_tools/version_upgrade
cd ${TOOLSDIR}
if [ “$?” -ne 0 ]
then
echo "update failed to acces ota_tools directory: " $TOOLSDIR
exit 1
fi
sudo ./nv_ota_start.sh /ota/ota_payload_package.tar.gz
if [ “$?” -ne 0 ]
then
echo “Flashing Jetson Base SW failed.”
exit 1
else
echo “Flashing Jetson Base SW Successful.”
fi
fi
I did not press ENTER or F11 to interrupt process.
Yes there is another serial device connected, which inputs wifi data over a serial port. This is always connected, but we are seeing boot interruption only after ota software update.