sorry I forgot DM 800 SE with openpli 4
- Forums
- → Viewing Profile: Posts: Furby
ATTENTION !!!
Due to a database corruption issue, we were forced to restore last-nights backup. This means all posts of Saterday Febuary 17th have been lost.Community Stats
- Group Member
- Active Posts 9 ( per day)
- Profile Views 1,308
- Age 63 years old
- Birthday April 17, 1961
-
Gender
Not Telling
Contact Information
0
Neutral
User Tools
Friends
Furby hasn't added any friends yet.
Latest Visitors
No latest visitors to show
Posts I've Made
In Topic: softcam startup script more universal
6 February 2020 - 13:09
In Topic: softcam startup script more universal
6 February 2020 - 11:47
when I start gbox manually via the terminal my HD + 04a works perfectly.
unfortunately my attached start script does not work
blue button etc. work, it is also displayed when selecting embox gbox, only does not start.
Maybe someone can help.
Thank you
gbox.mips >> usr / bin
gbox.cfg etc >> etc / tuxbox / config / gbox
chmod 755
#!/bin/sh
# Define parameters here
# start-exe = executable to launch
# softcam_param = full command line parameters to pass to executable
# softcam_version = For information only, version of the executable
softcam_exe="/usr/bin/gbox.mips"
softcam_param="-b -r 2 -c /etc/tuxbox/config/gbox"
softcam_version="8.11k"
remove_tmp ()
{
[ -e /tmp/ecm.info ] && rm -rf /tmp/ecm.info
[ -e /tmp/.oscam ] && rm -rf /tmp/.oscam
[ -e /tmp/.console ] && rm -rf /tmp/.console
[ -e /tmp/camd.socket ] && rm -rf /tmp/camd.socket
}
case "$1" in
start)
exec start-stop-daemon -S -x $softcam_exe -- $softcam_param
;;
stop)
exec start-stop-daemon -K -R 2 -x $softcam_exe &
sleep 2
ps | grep $softcam_exe | grep -v grep > /dev/null
if [ $? -eq 0 ]
then
killall -9 $softcam_exe 2>/dev/null
fi
sleep 2
remove_tmp
;;
restart|reload)
$0 stop
sleep 1
$0 start
;;
version)
echo $softcam_version
;;
info)
echo "oscam"
;;
values)
echo "Command line started:"
echo $softcam_exe $softcam_param
;;
*)
echo "Usage: $0 start|stop|restart|version|info|values"
exit 1
;;
esac
exit 0
unfortunately my attached start script does not work
blue button etc. work, it is also displayed when selecting embox gbox, only does not start.
Maybe someone can help.
Thank you
gbox.mips >> usr / bin
gbox.cfg etc >> etc / tuxbox / config / gbox
chmod 755
#!/bin/sh
# Define parameters here
# start-exe = executable to launch
# softcam_param = full command line parameters to pass to executable
# softcam_version = For information only, version of the executable
softcam_exe="/usr/bin/gbox.mips"
softcam_param="-b -r 2 -c /etc/tuxbox/config/gbox"
softcam_version="8.11k"
remove_tmp ()
{
[ -e /tmp/ecm.info ] && rm -rf /tmp/ecm.info
[ -e /tmp/.oscam ] && rm -rf /tmp/.oscam
[ -e /tmp/.console ] && rm -rf /tmp/.console
[ -e /tmp/camd.socket ] && rm -rf /tmp/camd.socket
}
case "$1" in
start)
exec start-stop-daemon -S -x $softcam_exe -- $softcam_param
;;
stop)
exec start-stop-daemon -K -R 2 -x $softcam_exe &
sleep 2
ps | grep $softcam_exe | grep -v grep > /dev/null
if [ $? -eq 0 ]
then
killall -9 $softcam_exe 2>/dev/null
fi
sleep 2
remove_tmp
;;
restart|reload)
$0 stop
sleep 1
$0 start
;;
version)
echo $softcam_version
;;
info)
echo "oscam"
;;
values)
echo "Command line started:"
echo $softcam_exe $softcam_param
;;
*)
echo "Usage: $0 start|stop|restart|version|info|values"
exit 1
;;
esac
exit 0
In Topic: DM 800 se V2
19 May 2019 - 18:38
Leider alles Geschäftssache, habe eine alte dreambox 800hd ORGINAL und durch Zufall ein open pli 7.0 im Netz gefunden, welches einwandfrei bei mir funzt.-
In Topic: Bootbild passt nicht mehr
7 April 2019 - 03:12
mount -t jffs2 mtd:'boot partition' /boot
damit hat es bei mir gefunzt bei meiner 800 hd
auf die Grösse achten 1280*720 Pixel bei der 800 hd
In Topic: OpenPli 7 nicht für et4x00 brauchbar?
23 March 2019 - 21:26
Lösche die Sprachen, welche du nicht brauchst mit Filezilla client
/usr/share/enigma2/po
- Forums
- → Viewing Profile: Posts: Furby