On my PC the device in recovery mode is shown as "Nvidia Corp.", so the flash.sh script does not work.
Adding a -i to the grepin check_recovery_mode() resolves the issue.
check_recovery_mode() {
if [[ -z $(lsusb | grep -i "NVIDIA Corp.") ]]; then
echo "Recovery Mode not startet!"
exit 1
fi
}
OS: Ubuntu 20.04
On my PC the device in recovery mode is shown as "Nvidia Corp.", so the flash.sh script does not work. Adding a
-i
to thegrep
incheck_recovery_mode()
resolves the issue.