Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions general/overlay/etc/wireless/modem
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,27 @@ if [ "$1" = "l716-t31-camhi" ]; then
exit 0
fi

# SIMCOM7600G/SIMCOM7600G-H
if [ "$1" = "sim7600g" ]; then
modprobe rndis_host
modprobe option
echo "1e0e 9011" > /sys/bus/usb-serial/drivers/option1/new_id
sleep 5
exit 0
fi

# EG25/EC25-xxx (RNDIS, AT+QCFG="usbnet",3)
if [ "$1" = "rndis-ec25" ]; then
modprobe rndis_host
modprobe option
sleep 5
exit 0
fi

# EG25/EC25-xxx (ECM, AT+QCFG="usbnet",1)
if [ "$1" = "ec25" ]; then
modprobe option
sleep 5
exit 0
fi
exit 1