Page 5 of 8
Re: [APP] SamyGO ChannelInfo for D(arm)/E/F series!
Posted: Sun Jan 19, 2014 12:02 pm
by miazza
Hi to all,
it is a rainy day and I play with my TV.
When I launch
Code: Select all
./samyGOso -p $(pidof exeAPP || pidof exeDSP) -l /mtd_down/so/libChannelInfo.so
The TV reboot.
may be it is because I have already samyGOso injected from the OScam script ?
How can I bypass the issue ?
Re: [APP] SamyGO ChannelInfo for D(arm)/E/F series!
Posted: Sun Jan 19, 2014 1:38 pm
by juusso
try to disable oscam, reboot tv and inject channinfo again
Re: [APP] SamyGO ChannelInfo for D(arm)/E/F series!
Posted: Sun Jan 19, 2014 5:01 pm
by miazza
I tried again and this time it worked:
Code: Select all
VDLinux#> cd /mtd_down/so
VDLinux#> ./samyGOso -p $(pidof exeAPP || pidof exeDSP) -l /mtd_down/so/libChann
elInfo.so
Injecting '/mtd_down/so/libChannelInfo.so' resident: '0' succeeded.
VDLinux#>
may be before I was plating a Divx from USB and that created the issue..
Re: [APP] SamyGO ChannelInfo for D(arm)/E/F series!
Posted: Fri Jan 24, 2014 8:56 am
by miazza
Trying to put is autoexec but I cannot chmod 99_99_ChannInfoON.init.
Code: Select all
VDLinux#> chmod 755 $SYSROOT/etc/init.d/
chmod: /etc/init.d/: No such file or directory
VDLinux#> chmod 755 $SYSROOT/etc/init.d/99_99_ChannInfoON.init
chmod: /etc/init.d/99_99_ChannInfoON.init: No such file or directory
the file is there:
Code: Select all
VDLinux#> cd /mnt/etc/init.d
VDLinux#> ls
01_01_catch_crap.init
01_03_hotplug.init.dis
01_04_server_replacement.init
01_05_framebuffer.init.dis
01_05_hiddev.init
02_04_replace_wifi_mod.init.dis
02_04_vusb.init
02_04_vusb.init.remi71
02_10_wakelan.init.dis
03_01_fuse.init
03_03_djmount.init.dis
03_03_nfsmount.init
03_03_nfsmount.init.remi71
03_03_sshd.init
03_03_udpxy.init.dis
04_04_fusesmb.init.dis
04_04_httpfs.init.dis
04_04_samba.init
04_04_samba.zoelchat.init.dis
06_05_apache.init
06_05_bb_httpd.init.dis
06_05_samba-server.init
06_05_samba-server.init.dis
06_05_vsftp.init.dis
06_06_obexpush.init.dis
30_09_xserver.init.dis
70_70_arfix-sh.init.dis
80_80_record_to_nwshare.init.kayaweed
80_80_record_to_nwshare.init.remi71
90_90_injectso.init.dis
90_90_loadGameMains.init.dis
99_99_ChannInfoON.init
99_99_start_exeDSP.init.disabled_by_default_to_protect_the_innocent
99_99_z_sendinfo.init
but 99_99_ChannInfoON.init is the only grey one (others are green).
Really strange, chmod 755 $DISTROOT/usr/bin/samyGOso worked.
Any idea ?
Also chmod +x did not work.
Update: I do not know why nut depending from the moment in which I am sending the commands they are accepted or not.
Now after a few reboot I succeded to chmod the init and it is working.
Re: [APP] SamyGO ChannelInfo for D(arm)/E/F series!
Posted: Fri Jan 24, 2014 9:28 am
by juusso
put
source /dtv/SGO.env
and perform all your operations with relative path like $SYSROOT, $DISTROOT etc. Now your TV does not know where it is.
Or replace $SYSROOT to /mnt
Code: Select all
source /dtv/SGO.env
chmod +x $SYSROOT/etc/init.d/*.*
Re: [APP] SamyGO ChannelInfo for D(arm)/E/F series!
Posted: Mon Jan 27, 2014 12:22 pm
by miazza
After having tested it in autoexec for a few days I have to say that the TV results a but more slower in accepting commands from remote.
Also, access to Smarthub is much slower.
Sometimes while in streaming from youtube or looking at a Divx or from Mediaset Play App, the TV freezes and reboot.
Finally I have disabled the script and TV has come back to normal behaviour.
This of course is valid for my TV set (ES8000).
Re: [APP] SamyGO ChannelInfo for D(arm)/E/F series!
Posted: Wed Feb 11, 2015 9:29 pm
by cmuc05
Is it possible and makes it sense to build in a sleep of lets say 1s in order to get the title info when you switch to a programm where the epg is not loaded yet
Re: [APP] SamyGO ChannelInfo for D(arm)/E/F series!
Posted: Sun Mar 08, 2015 10:20 am
by stony2k
Copied and gave permissions to the files as mentioned. Manual start via
samyGOso -p $(pidof exeTV || pidof exeDSP) -l /mnt/opt/privateer/usr/so/libChannelInfo.so works
Code: Select all
samyGOso v1.2.4 (c) bugficks 2013, sectroyer 2014
Injecting '/mnt/opt/privateer/usr/so/libChannelInfo.so' resident: '0'
Succeeded.
edited the startup script to fit the paths ($systemroot is unknown to my system):
Code: Select all
#!/bin/sh
#
# ? Copyright 1996-2013, SamyGO
#
#
. /dtv/SGO.env
libPATH=/mnt/opt/privateer/usr/so
case $1 in
start)
samyGOso -p `pidof exeDSP` -l $libPATH/libChannelInfo.so
sleep 1
#Code for exeDSP crash protection
#while [ "$( ps -A | grep -c 'exeDSP')" -gt 0 ] ; do
# sleep 60
#done
#mv $0 $0.dis
;;
status)
;;
*)
echo "Usage: $0 {start|stop|status}" 1>&2
exit 0
;;
esac
But autostart doesn work. What did I miss?
Re: [APP] SamyGO ChannelInfo for D(arm)/E/F series!
Posted: Sun Mar 08, 2015 11:04 am
by zoelechat
stony2k wrote:edited the startup script to fit the paths ($systemroot is unknown to my system)
Yeah, because it's not $systemroot but $SYSROOT
stony2k wrote:But autostart doesn work. What did I miss?
Did you use Notepad++ to edit script, and set linefeeds to UNIX format?
Re: [APP] SamyGO ChannelInfo for D(arm)/E/F series!
Posted: Sun Mar 08, 2015 11:25 am
by stony2k
zoelechat wrote:
Yeah, because it's not $systemroot but $SYSROOT
My fault, I ment $SYSROOT
zoelechat wrote:Did you use Notepad++ to edit script, and set linefeeds to UNIX format?
1st try edited the file with notepad
2nd try edited it within winscp
3rd try edited it with Notepad++, line feeds were set to UNIX format. No success so far.
I can start the script in putty with
/mnt/etc/init.d/99_99_ChannInfoON.init start so the file must be correct or?