mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Checking for loaded driver in 'runvdr'
This commit is contained in:
parent
9abd07af9a
commit
47c5bd66a8
@ -75,3 +75,7 @@ J
|
|||||||
|
|
||||||
Benjamin Reichardt <reichard@math.uni-goettingen.de>
|
Benjamin Reichardt <reichard@math.uni-goettingen.de>
|
||||||
for his help in debugging the transition to the new API
|
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
|
||||||
|
|
||||||
|
6
runvdr
6
runvdr
@ -18,15 +18,19 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# 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"
|
DVBDIR="../DVB/driver"
|
||||||
VDRPRG="./vdr"
|
VDRPRG="./vdr"
|
||||||
VDRCMD="$VDRPRG -w 60 $*"
|
VDRCMD="$VDRPRG -w 60 $*"
|
||||||
|
|
||||||
|
LSMOD="`/sbin/lsmod | grep dvbdev | wc -l`"
|
||||||
KILLPROC="/sbin/killproc -TERM"
|
KILLPROC="/sbin/killproc -TERM"
|
||||||
|
|
||||||
|
# Load driver if it hasn't been loaded already:
|
||||||
|
if [ $LSMOD -eq 0 ] ; then
|
||||||
(cd $DVBDIR; make insmod)
|
(cd $DVBDIR; make insmod)
|
||||||
|
fi
|
||||||
|
|
||||||
while (true) do
|
while (true) do
|
||||||
su -c "$VDRCMD" $VDRUSR
|
su -c "$VDRCMD" $VDRUSR
|
||||||
|
Loading…
Reference in New Issue
Block a user