1
0
Fork 0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-05-23 07:56:18 +02:00

Allow more ttyUSB<N> devices to use the 3g script (#3098)

SVN-Revision: 10396
This commit is contained in:
Florian Fainelli 2008-02-05 15:43:33 +00:00
parent 2630cb3800
commit 752737ff5b

View File

@ -13,7 +13,7 @@ scan_3g() {
# try to figure out the device if it's invalid
[ -n "$device" -a -e "$device" ] || {
for device in /dev/ttyUSB2 /dev/tts/2 /dev/usb/tts/0 /dev/noz0; do
for device in /dev/ttyUSB0 /dev/ttyUSB1 /dev/ttyUSB2 /dev/tts/2 /dev/usb/tts/0 /dev/noz0; do
[ -e "$device" ] && {
config_set "$1" device "$device"
break