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.
|
|
|
|
#
|
2006-05-01 13:47:28 +02:00
|
|
|
# In order to actually use this script you need to implement
|
|
|
|
# the functions DriverLoaded(), LoadDriver() and UnloadDriver()
|
|
|
|
# and maybe adjust the VDRPRG and VDRCMD to your particular
|
|
|
|
# requirements.
|
|
|
|
#
|
2001-06-02 10:47:40 +02:00
|
|
|
# Since this script loads the DVB driver, it must be started
|
2006-02-04 15:26:13 +01:00
|
|
|
# as user 'root'. Add the option "-u username" to run VDR
|
|
|
|
# under the given user name.
|
2001-06-02 10:47:40 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2006-05-14 16:03:34 +02:00
|
|
|
# $Id: runvdr 1.19 2006/05/14 16:02:05 kls Exp $
|
2001-06-02 10:47:40 +02:00
|
|
|
|
2001-03-31 08:55:37 +02:00
|
|
|
VDRPRG="./vdr"
|
2006-02-04 15:26:13 +01:00
|
|
|
VDRCMD="$VDRPRG -w 60 $*"
|
2001-02-24 16:18:43 +01:00
|
|
|
|
2002-03-16 16:22:12 +01:00
|
|
|
KILL="/usr/bin/killall -q -TERM"
|
2001-03-31 08:55:37 +02:00
|
|
|
|
2006-05-01 13:47:28 +02:00
|
|
|
# Detect whether the DVB driver is already loaded
|
|
|
|
# and return 0 if it *is* loaded, 1 if not:
|
|
|
|
function DriverLoaded()
|
|
|
|
{
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Load all DVB driver modules needed for your hardware:
|
|
|
|
function LoadDriver()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
# Unload all DVB driver modules loaded in LoadDriver():
|
|
|
|
function UnloadDriver()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-06-09 12:20:04 +02:00
|
|
|
# Load driver if it hasn't been loaded already:
|
2006-05-01 13:47:28 +02:00
|
|
|
if ! DriverLoaded; then
|
|
|
|
LoadDriver
|
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
|
2006-05-01 14:52:19 +02:00
|
|
|
eval "$VDRCMD"
|
2003-08-26 16:15:41 +02:00
|
|
|
if test $? -eq 0 -o $? -eq 2; then exit; fi
|
2006-05-01 13:47:28 +02:00
|
|
|
echo "`date` reloading DVB driver"
|
2002-03-16 16:22:12 +01:00
|
|
|
$KILL $VDRPRG
|
2001-02-24 16:18:43 +01:00
|
|
|
sleep 10
|
2006-05-01 13:47:28 +02:00
|
|
|
UnloadDriver
|
|
|
|
LoadDriver
|
|
|
|
echo "`date` restarting VDR"
|
2001-02-24 16:18:43 +01:00
|
|
|
done
|