[SOLVED] LTE QMI Troubles

just edit qmi.sh and add this strings

uqmi -s -d "$device" --get-pin-status &
sleep 3
killall uqmi || echo "UQMI works fine!"

before

while uqmi -s -d "$device" --get-pin-status | grep '"UIM uninitialized"' > /dev/null; do
	[ -e "$device" ] || return 1
	sleep 1;
done

this workaround works for me.

4 Likes