oscam: update to oscam-8695 & improve suspend/resume

This commit is contained in:
Stefan Saraev 2013-06-12 16:04:44 +03:00
parent 1ef19244cc
commit 4d81ab2da9
3 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,7 @@
3.0.12
- update to oscam-8695
- improve suspend/resume
3.0.11
- update to oscam-8678

View File

@ -20,8 +20,8 @@
################################################################################
PKG_NAME="oscam"
PKG_VERSION="8678"
PKG_REV="11"
PKG_VERSION="8695"
PKG_REV="12"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://www.streamboard.tv/oscam/wiki"

View File

@ -41,6 +41,14 @@ if [ "$RESTART_ON_RESUME" == "true" ] ; then
thaw|resume)
progress "Restarting oscam for wakeup..."
if [ -f "$LOCKFILE" ] ; then
oscam.stop
for seq in `seq 1 10` ; do
if [ ! "$(pidof oscam)" ];then
break
fi
usleep 500000
done
killall -9 oscam &>/dev/null
rm -rf "$LOCKFILE"
oscam.start
fi