diff options
-rw-r--r-- | CONTRIBUTORS | 4 | ||||
-rwxr-xr-x | runvdr | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 8cb99a71..37c47874 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -75,3 +75,7 @@ Jürgen Sauer <jojo@automatix.de> Benjamin Reichardt <reichard@math.uni-goettingen.de> for his help in debugging the transition to the new API + +Henning Holtschneider <hh@holtschneider.com> + for patching 'runvdr' to check whether the driver is already loaded + @@ -18,15 +18,19 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: runvdr 1.5 2001/06/01 16:23:29 kls Exp $ +# $Id: runvdr 1.6 2001/06/09 12:20:04 kls Exp $ DVBDIR="../DVB/driver" VDRPRG="./vdr" VDRCMD="$VDRPRG -w 60 $*" +LSMOD="`/sbin/lsmod | grep dvbdev | wc -l`" KILLPROC="/sbin/killproc -TERM" -(cd $DVBDIR; make insmod) +# Load driver if it hasn't been loaded already: +if [ $LSMOD -eq 0 ] ; then + (cd $DVBDIR; make insmod) + fi while (true) do su -c "$VDRCMD" $VDRUSR |