vdr/runvdr

42 lines
987 B
Plaintext
Raw Normal View History

2001-02-24 16:18:43 +01:00
#!/bin/sh
# runvdr: Loads the DVB driver and runs VDR
#
# If VDR exits abnormally, the driver will be reloaded
# and VDR restarted.
#
# Since this script loads the DVB driver, it must be started
# as user 'root'. Add the option "-u username" to run VDR
# under the given user name.
#
# Any command line parameters will be passed on to the
# actual 'vdr' program.
#
# See the main source file 'vdr.c' for copyright information and
# how to reach the author.
#
# $Id: runvdr 1.16 2006/02/04 15:20:48 kls Exp $
DVBDIR="../DVB/driver"
2001-03-31 08:55:37 +02:00
VDRPRG="./vdr"
VDRCMD="$VDRPRG -w 60 $*"
2001-02-24 16:18:43 +01:00
LSMOD="`/sbin/lsmod | grep -w '^dvb' | wc -l`"
KILL="/usr/bin/killall -q -TERM"
2001-03-31 08:55:37 +02:00
2001-06-09 12:20:04 +02:00
# Load driver if it hasn't been loaded already:
if [ $LSMOD -eq 0 ] ; then
(cd $DVBDIR; make insmod)
2001-06-09 12:20:04 +02:00
fi
2001-03-31 08:55:37 +02:00
while (true) do
$VDRCMD
2003-08-26 16:15:41 +02:00
if test $? -eq 0 -o $? -eq 2; then exit; fi
2001-02-24 16:18:43 +01:00
date
echo "restarting VDR"
$KILL $VDRPRG
2001-02-24 16:18:43 +01:00
sleep 10
(cd $DVBDIR; make rmmod; make insmod)
date
2001-02-24 16:18:43 +01:00
done