boredatwork
New member
This happened to me as well, the autostart.sh that is up on whiterabbits site doesnt fully unblock crickets network and i ran into download errors as well, the same exact thing you are having.
I worked with whiterabbit via PM also incorporated his latest suggestions in the autostart.sh fixing thread here:
http://www.howardforums.com/showthread.php/1648155-motorola-droid-autostart-fixing-test-thread
my autostart.sh now looks like this:
This is incorporated into my cricket flash that i have confirmation works on Eris/Hero/Incredible/Evo/Droid, does the same things listed here regarding the autostart/u2nl/apn (YOU STILL NEED TO SET YOUR NV ITEMS CORRECTLY), but automates the process, and does a few more things to make the flash more authentic.
http://forum.xda-developers.com/showthread.php?t=730289
Hope it helps
I worked with whiterabbit via PM also incorporated his latest suggestions in the autostart.sh fixing thread here:
http://www.howardforums.com/showthread.php/1648155-motorola-droid-autostart-fixing-test-thread
my autostart.sh now looks like this:
Code:
#!/system/bin/sh
export PROXYHOST=wap.mycricket.com
export PROXYPORT=8080
#you shouldn't have to edit anything below this line
export PATH="$PATH:/system/bin"
until netcfg|grep -v DOWN|awk '{print $1}'|grep -v wlan|grep -v lo >/dev/null 2>&1 ; do sleep 1 ; done
export INTERFACE=`netcfg|grep -v DOWN|awk '{print $1}'|grep -v wlan|grep -v lo`
export PROXYIP=`ping -c 1 $PROXYHOST|grep PING|cut -d\) -f1|cut -d\( -f2`
iptables -P INPUT ACCEPT
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -F
iptables -t nat -F
iptables -X
iptables -t nat -A OUTPUT -o $INTERFACE -p tcp -d 10/8 -j ACCEPT
iptables -t nat -A OUTPUT -o $INTERFACE -p tcp -d 172.16/12 -j ACCEPT
iptables -t nat -A OUTPUT -o $INTERFACE -p tcp -d 192.168/16 -j ACCEPT
iptables -t nat -A OUTPUT -o $INTERFACE -p tcp -j REDIRECT --to-port 1025
u2nl $PROXYIP $PROXYPORT 127.0.0.1 1025 >/dev/null 2>&1 &
sh -c "sleep 5;kill `ps|grep nk.bla.android.autostart|grep -v grep|awk '{print $2}'`" >/dev/null 2>&1 &
exit 0
This is incorporated into my cricket flash that i have confirmation works on Eris/Hero/Incredible/Evo/Droid, does the same things listed here regarding the autostart/u2nl/apn (YOU STILL NEED TO SET YOUR NV ITEMS CORRECTLY), but automates the process, and does a few more things to make the flash more authentic.
http://forum.xda-developers.com/showthread.php?t=730289
Hope it helps