Switched to 'dvb-kernel' driver (build-2.4)

This commit is contained in:
Klaus Schmidinger
2004-11-19 15:59:14 +01:00
parent 1d8676e85f
commit 2eda0c4113
3 changed files with 12 additions and 7 deletions

8
runvdr
View File

@@ -18,9 +18,9 @@
# See the main source file 'vdr.c' for copyright information and
# how to reach the author.
#
# $Id: runvdr 1.12 2004/01/09 16:19:26 kls Exp $
# $Id: runvdr 1.13 2004/11/19 15:53:03 kls Exp $
DVBDIR="../DVB/driver"
DVBDIR="../DVB/build-2.4"
VDRPRG="./vdr"
VDRCMD="$VDRPRG -w 60 $*"
@@ -29,7 +29,7 @@ KILL="/usr/bin/killall -q -TERM"
# Load driver if it hasn't been loaded already:
if [ $LSMOD -eq 0 ] ; then
(cd $DVBDIR; make insmod)
(cd $DVBDIR; ./insmod.sh load)
fi
while (true) do
@@ -39,6 +39,6 @@ while (true) do
echo "restarting VDR"
$KILL $VDRPRG
sleep 10
(cd $DVBDIR; make rmmod; make insmod)
(cd $DVBDIR; ./insmod.sh reload)
date
done