A101 tether start usb.sh — различия между версиями

Материал из YourcmcWiki
Перейти к: навигация, поиск
м (Новая страница: «<div style="height: 100px; overflow: scroll; padding: 2px; border: 1px solid gray; background-color: white"> <source lang="bash"> #!/bin/sh # $1 is the user (not a ...»)
 
м
 
(не показаны 2 промежуточные версии этого же участника)
Строка 1: Строка 1:
<div style="height: 100px; overflow: scroll; padding: 2px; border: 1px solid gray; background-color: white">
 
<source lang="bash">
 
 
#!/bin/sh
 
#!/bin/sh
  
Строка 6: Строка 4:
 
# $2 is the password (not a mandatory argument)
 
# $2 is the password (not a mandatory argument)
  
echo "tether_start" >> /sdcard/LOG
 
 
insmod /lib/modules/musb_hdrc.ko mode_default=1
 
insmod /lib/modules/musb_hdrc.ko mode_default=1
 
insmod /lib/modules/cdc-acm.ko
 
insmod /lib/modules/cdc-acm.ko
Строка 25: Строка 22:
 
     /system/bin/pppd $DEV 921600 name $1 password $2 call tether
 
     /system/bin/pppd $DEV 921600 name $1 password $2 call tether
 
fi
 
fi
</source>
 
</div>
 

Текущая версия на 15:15, 28 апреля 2011

  1. !/bin/sh
  1. $1 is the user (not a mandatory argument)
  2. $2 is the password (not a mandatory argument)

insmod /lib/modules/musb_hdrc.ko mode_default=1 insmod /lib/modules/cdc-acm.ko insmod /lib/modules/usbserial.ko insmod /sdcard/option.ko

if [ -c /dev/ttyACM0 ]; then

   DEV=/dev/ttyACM0

else

   DEV=/dev/ttyUSB0
   cp -a /dev/ttyUSB0 /dev/ttyACM0

fi

if [$# -eq 0 ] then

   /system/bin/pppd $DEV 921600 call tether

else

   /system/bin/pppd $DEV 921600 name $1 password $2 call tether

fi