diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-11-21 11:30:41 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-11-21 11:30:41 +0100 |
commit | 969864aacbe593fb237aa173f68eb61f859e8e66 (patch) | |
tree | 196905c9e6e80cf204efab8ac33293661bdd7a53 /runvdr | |
parent | c33dccf9ba217add7e1dcfe8f8a4ea4fafb81008 (diff) | |
download | vdr-969864aacbe593fb237aa173f68eb61f859e8e66.tar.gz vdr-969864aacbe593fb237aa173f68eb61f859e8e66.tar.bz2 |
Back to the old DVB driver due to tuning failures with dvb-kernel
Diffstat (limited to 'runvdr')
-rwxr-xr-x | runvdr | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -18,9 +18,9 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: runvdr 1.13 2004/11/19 15:53:03 kls Exp $ +# $Id: runvdr 1.14 2004/11/21 11:30:00 kls Exp $ -DVBDIR="../DVB/build-2.4" +DVBDIR="../DVB/driver" 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; ./insmod.sh load) + (cd $DVBDIR; make insmod) fi while (true) do @@ -39,6 +39,6 @@ while (true) do echo "restarting VDR" $KILL $VDRPRG sleep 10 - (cd $DVBDIR; ./insmod.sh reload) + (cd $DVBDIR; make rmmod; make insmod) date done |