Page 1 of 2

Re: SamyGO.sh not executed patch 0.24 LE40B679

Posted: Wed Feb 23, 2011 2:39 am
by erdem_ua
What? Could you put your rc.local file here?

Re: SamyGO.sh not executed patch 0.24 LE40B679

Posted: Wed Feb 23, 2011 9:10 am
by juusso
Please, tell us only one:
what option you have chosen in patcher:
telnet - t or a
If you gave t - you have telnet. To have samygo.sh to be executed, you have to chose advanced option (a)...

Re: SamyGO.sh not executed patch 0.24 LE40B679

Posted: Wed Feb 23, 2011 12:52 pm
by juusso
you have to set permissions to samygo.sh file over telnet (run it from games with help of telnet-enabler game, or over exlink):

Code: Select all

chmod 755 /mtd_rwarea/SamyGO.sh

Re: SamyGO.sh not executed patch 0.24 LE40B679

Posted: Wed Feb 23, 2011 1:05 pm
by juusso
ok, try mount telnet with this code:

Code: Select all

if [ `cat /proc/mounts | grep -c "/dev/pts"` -lt "1" ] ; then
        echo "telnetd Enabled"
             mount -t devpts devpts /dev/pts
             telnetd
     else
        echo "/dev/pts is mounted"
fi

sleep 20
Btw, might you need more time after TV start to connect over telnet?
Power on TV, wait 30 sec and try connect...

One more thing: try add sleep before telnet:

Code: Select all

#!/bin/sh
sleep 10
# Enable Telnetd
mount -t devpts devpts /dev/pts
telnetd
sleep 20