Quote:
Originally Posted by [ACL]
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
|