Jump to content


mark_hopley

Member Since 20 Feb 2010
Offline Last Active 27 Aug 2012 18:06
-----

Topics I've Started

cccam script help

22 July 2012 - 10:16

I am using a DM500HD as my server. I use oscam to read card but because cccam starts before oscam it accesses the cardreader and prevents oscam from using it.

I am trying to delay the start of ccccam to enable oscam to use the cardreader before cccam. I have added a sleep line in the softcam.cccam209 script as shown here

#!/bin/sh
case "$1" in
start)
sleep 30
exec start-stop-daemon -S -x /usr/bin/CCcam209
;;
stop)
exec start-stop-daemon -K -R 2 -x /usr/bin/CCcam209
;;
restart|reload)
$0 stop
sleep 1
$0 start
;;
version)
echo "2.0.9"
;;
info)
echo "CCcam209 2.0.9"
;;
*)
echo "Usage: $0 start|stop|restart"
exit 1
;;
esac
exit 0

However this just seems to stop cccam from running at all. Is there any way I can acheive oscam running first?

Oscam version number

22 January 2012 - 11:01

I have installed oscam on my DM500HD from the downloads in latest openpli image. I have then changed the binaries in usr/bin to change to version 6089. When I restart oscam though it still reports as the version I downloaded. How can I get this to update to the new version?

Keeping time via ntp

24 August 2011 - 17:50

Hi

Is it possible to get a dm500 running openpli to keep time/date via ntp over net?