AR video fix v2 through serial console
- erdem_ua
- SamyGO Admin
- Posts: 3126
- Joined: Thu Oct 01, 2009 6:02 am
- Location: Istanbul, Turkey
- Contact:
Re: AR video fix v2 through serial console
You can try to gdb attach way. Search at forum...
Re: AR video fix v2 through serial console
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
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)
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
- erdem_ua
- SamyGO Admin
- Posts: 3126
- Joined: Thu Oct 01, 2009 6:02 am
- Location: Istanbul, Turkey
- Contact:
Re: AR video fix v2 through serial console
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.