dezertdawg / urukdroid

Automatically exported from code.google.com/p/urukdroid
0 stars 0 forks source link

3G support - errors in script 3Gmodem_init.sh #39

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
There are 2 errors in the script:

/system/xbin/3Gmodem_init.sh

Line 62
ERROR:   if [`cat /proc/modules | grep -c "usbserial"` -ne 0 ]; then
CORRECT: if [ `cat /proc/modules | grep -c "usbserial"` -ne 0 ]; then

Line 71
ERROR:   while [ $n -le 3 ]
CORRECT: while [ $N -le 3 ]

After having corrected it I was able to use my USB 3G dongle.

Original issue reported on code.google.com by michele....@gmail.com on 7 Jun 2011 at 10:24

GoogleCodeExporter commented 8 years ago
Fix applied - thanks!

Original comment by adrian.s...@gmail.com on 17 Jun 2011 at 12:39