View Single Post
  #497 (permalink)  
Old 11-30-2011, 08:38 PM
muziling's Avatar
muziling
PPCGeeks Regular
Offline
 
Join Date: Nov 2010
Posts: 175
Reputation: 55
muziling is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (Latest version 1.2.3) - 400/500 Only

Quote:
Originally Posted by [ACL] View Post
I think muzling will be happy with the next release. I made it easier for cdma folk to use usernames and passwords for ppp. Since ril is hardcoded to use dummy, they can butcher a script to make it happen. Nice stop gap for now i suppose.
Nice work, I try upgrade ppp to version 2.4.5, ppp version is too old, maybe related with phone reboot,freeze
(I disable data connection, phone will reboot or freeze)
EDIT: new version not help me fix issue

Use command ‘busybox ifconfig -a’ , will see an eth call dummy0

Now I wrote a script to start pppd
Quote:
#!/system/bin/sh

USER=`getprop net.gprs.user`
PASSWORD=`getprop net.gprs.password`
DEVICE=`getprop net.gprs.device`
/system/bin/pppd $DEVICE defaultroute local usepeerdns noipdefault unit 0 nodetach linkname gprs lcp-restart 1 lcp-max-configure 3 ipcp-restart 1 ipcp-max-configure 3 debug user $USER password $PASSWORD

Last edited by muziling; 12-01-2011 at 12:14 AM.
Reply With Quote