tcesni / crossepg

Automatically exported from code.google.com/p/crossepg
GNU Lesser General Public License v2.1
0 stars 0 forks source link

crossepg in CVS image not work #78

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi
Plugin when restart is no problem but when the receiver is turned off. EPG 
willdownload again.

And the plug on the factory image CVS does not work

Original issue reported on code.google.com by farshad....@gmail.com on 10 Mar 2011 at 6:38

GoogleCodeExporter commented 8 years ago
Hi
Plugin when restart is no problem but when the receiver is turned off. EPG 
willdownload again.

And the plug on the factory image CVS does not work

crossepg 241 and 242-dreambox800-CVS+GP3

Please provide any additional information below.
ALL

Original comment by farshad....@gmail.com on 11 Mar 2011 at 12:02

GoogleCodeExporter commented 8 years ago
enigma2.sh not work for CVS image

#!/bin/sh

prefix=/usr
exec_prefix=/usr
datarootdir=${prefix}/share

if [ -x /usr/bin/showiframe -a -f /usr/share/backdrop.mvi ]; then
    /usr/bin/showiframe /usr/share/backdrop.mvi
fi

# hook to execute scripts always before enigma2 start
if [ -x /usr/bin/enigma2_pre_start.sh ]; then
    /usr/bin/enigma2_pre_start.sh

fi

if [ -d /home/root ]; then
    cd /home/root
fi

/usr/crossepg/crossepg_epgmove.sh
LIBS=/usr/lib/libopen.so.0.0.0

#check for dreambox specific passthrough helper lib
if [ -e /usr/lib/libpassthrough.so ]; then
    LIBS="$LIBS /usr/lib/libpassthrough.so"
fi

LD_PRELOAD=$LIBS /usr/bin/enigma2

# enigma2 exit codes:
#
# 0 - restart enigma
# 1 - halt
# 2 - reboot
#
# >128 signal

ret=$?
case $ret in
    1)
        /sbin/halt
        ;;
    2)
        /sbin/reboot
        ;;
    4)
        /sbin/rmmod lcd
        /usr/sbin/fpupgrade --upgrade 2>&1 | tee /home/root/fpupgrade.log
        sleep 1;
        /sbin/rmmod fp
        /sbin/modprobe fp
        /sbin/reboot
        ;;
    *)
        ;;
esac

plz help

Original comment by farshad....@gmail.com on 14 Mar 2011 at 10:48

GoogleCodeExporter commented 8 years ago
From crossepg r247 doesn't need fix enigma2.sh anymore. Crossepg use 
automatically enigma2_pre_start.sh

Original comment by skama...@gmail.com on 24 Apr 2011 at 1:56