Page 1 of 1
Re: AR video fix v2 through serial console
Posted: Thu Oct 14, 2010 5:28 am
by erdem_ua
You can try to gdb attach way. Search at forum...
Re: AR video fix v2 through serial console
Posted: Thu Oct 14, 2010 10:38 am
by flo-ogb
only if you want the patch to automatically run at startup
also i recommend this injector and not the gdb version:
http://forum.samygo.tv/viewtopic.php?f=6&t=862
just rember to ONCE create the directory "etc" under "/mtd_rwarea". this injector is much, much faster and extremly lightweight (no additional binary needed). I hacked up a small wrapper script that calls the injector with the right parameters
Code: Select all
#!/bin/sh
if [ -z $1 ];then
echo "SamyGO Injector: Invalid argument"
exit
fi
echo "SamyGO Injector: Injecting \"$1\""
if [ -f $1 ];then
# Inject with very high nice value. For some reason exeDSP and authuld run
# as nice processes. Running injectso without high nice value causes the
# tv to react very slow to input during inject, very, very much complaining
# in kernel log and even authuld timeout (-> tv shutdown) when injecting many
# plugins. With nice everything runs smooth...
nice -n 19 /mtd_rwarea/SamyGO/injectso `pidof exeDSP` $1 Game_Main ${1%/*}/
else
echo "SamyGO Injector: File not found!"
fi
exit
just adjust the path to the injectso binary near the end of the script. add the module you want to inject as the first parameter. please be sure to use an absolute path (eg /mtd_rwarea/myplugin.so instead of just myplugin.so)
Re: AR video fix v2 through serial console
Posted: Thu Oct 28, 2010 3:52 pm
by erdem_ua
Can't you enter serial console? What is your firmware version? You cannot enable ExLink on latest firmwares. They stop access from exlink at those versions.