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.
|
|
|
|
#
|
2015-02-05 10:43:42 +01:00
|
|
|
# $Id: runvdr.template 3.1 2015/02/05 10:28:53 kls Exp $
|
2001-06-02 10:47:40 +02:00
|
|
|
|
2001-03-31 08:55:37 +02:00
|
|
|
VDRPRG="./vdr"
|
2010-01-17 12:45:44 +01:00
|
|
|
|
|
|
|
VDROPTIONS="-w 60"
|
|
|
|
# For other options see manpage vdr.1
|
|
|
|
|
|
|
|
VDRPLUGINS=""
|
|
|
|
# You will need to select your output device plugin if you want
|
|
|
|
# to use VDR to watch video. For instance, for a "Full Featured"
|
2011-04-17 12:35:46 +02:00
|
|
|
# SD DVB card that would be
|
2010-01-17 12:45:44 +01:00
|
|
|
# VDRPLUGINS="-P dvbsddevice"
|
2011-04-17 12:35:46 +02:00
|
|
|
# For a "Full Featured" HD DVB card you could use
|
|
|
|
# VDRPLUGINS="-P dvbhddevice"
|
|
|
|
# There are also other output device plugins available, see
|
|
|
|
# http://www.vdr-wiki.de/wiki/index.php/Plugins.
|
2010-01-17 12:45:44 +01:00
|
|
|
|
|
|
|
VDRCMD="$VDRPRG $VDROPTIONS $VDRPLUGINS $*"
|
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:
|
2015-02-05 10:43:42 +01:00
|
|
|
DriverLoaded()
|
2006-05-01 13:47:28 +02:00
|
|
|
{
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Load all DVB driver modules needed for your hardware:
|
2015-02-05 10:43:42 +01:00
|
|
|
LoadDriver()
|
2006-05-01 13:47:28 +02:00
|
|
|
{
|
2015-02-05 10:43:42 +01:00
|
|
|
return 0
|
2006-05-01 13:47:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Unload all DVB driver modules loaded in LoadDriver():
|
2015-02-05 10:43:42 +01:00
|
|
|
UnloadDriver()
|
2006-05-01 13:47:28 +02:00
|
|
|
{
|
2015-02-05 10:43:42 +01:00
|
|
|
return 0
|
2006-05-01 13:47:28 +02:00
|
|
|
}
|
|
|
|
|
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
|