2001-02-24 16:18:43 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
# runvdr: Loads the DVB driver and runs VDR
|
|
|
|
#
|
|
|
|
# If VDR exits abnormally, the driver will be reloaded
|
|
|
|
# and VDR restarted.
|
|
|
|
#
|
|
|
|
# Set the environment variable VDRUSR to the user id you
|
|
|
|
# want VDR to run with. If VDRUSR is not set, VDR will run
|
|
|
|
# as 'root', which is not necessarily advisable.
|
|
|
|
#
|
|
|
|
# Since this script loads the DVB driver, it must be started
|
|
|
|
# as user 'root'.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2004-11-21 11:30:41 +01:00
|
|
|
# $Id: runvdr 1.14 2004/11/21 11:30:00 kls Exp $
|
2001-06-02 10:47:40 +02:00
|
|
|
|
2004-11-21 11:30:41 +01:00
|
|
|
DVBDIR="../DVB/driver"
|
2001-03-31 08:55:37 +02:00
|
|
|
VDRPRG="./vdr"
|
2001-06-02 10:47:40 +02:00
|
|
|
VDRCMD="$VDRPRG -w 60 $*"
|
2001-02-24 16:18:43 +01:00
|
|
|
|
2001-07-27 07:37:33 +02:00
|
|
|
LSMOD="`/sbin/lsmod | grep -w '^dvb' | wc -l`"
|
2002-03-16 16:22:12 +01:00
|
|
|
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
|
2004-11-21 11:30:41 +01:00
|
|
|
(cd $DVBDIR; make insmod)
|
2001-06-09 12:20:04 +02:00
|
|
|
fi
|
2001-06-02 10:47:40 +02:00
|
|
|
|
2001-03-31 08:55:37 +02:00
|
|
|
while (true) do
|
2004-01-09 16:21:03 +01:00
|
|
|
su $VDRUSR -c "$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"
|
2002-03-16 16:22:12 +01:00
|
|
|
$KILL $VDRPRG
|
2001-02-24 16:18:43 +01:00
|
|
|
sleep 10
|
2004-11-21 11:30:41 +01:00
|
|
|
(cd $DVBDIR; make rmmod; make insmod)
|
2001-06-02 10:47:40 +02:00
|
|
|
date
|
2001-02-24 16:18:43 +01:00
|
|
|
done
|