oscam-ymod

tobyman6

Member
Messages
50
Have loaded oscam-ymod 18-49bh-ipk
Installed ipk manually,
installed correctly
when I go to change cam it isnt there !!
(msg said it is installed )
How do I use it??
 

BODO1960

Registered
Messages
24
Übersetzen











oscam-ymod 18-49bh-ipk
von wo bekomme ich sie her
danke

oscam-ymod 18-49bh-ipk
von wo bekomme ich sie her
danke






oscam-ymod 18-49bh-ipk
from where I get it
Thank you
 

just4fun2

Senior Member
Messages
361
Have loaded oscam-ymod 18-49bh-ipk
Installed ipk manually,
installed correctly
when I go to change cam it isnt there !!
(msg said it is installed )
How do I use it??
You have pb with the script for shure....
make a file named " oscam-ymodv18-49 " with this script, then put it in /usr/camscript (schmod 644) you should see the cam & start it :)
**check also that the bin file in /usr/bin have the same name

#!/bin/sh

CAMNAME="oscam-ymodv18-49"

remove_tmp () {
rm -rf /tmp/*.info* /tmp/*.tmp*
}

case "$1" in
start)
echo "[SCRIPT] $1: $CAMNAME"
remove_tmp
/usr/bin/oscam-ymodv18-49 -b &
sleep 2
;;
stop)
echo "[SCRIPT] $1: $CAMNAME"
killall -9 oscam-ymodv18-49 2>/dev/null
sleep 1
remove_tmp
;;
*)
$0 stop
exit 0
;;
esac

exit 0
 
Top