mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Fixed 'runvdr' to stay in the loop only if VDR returns an exit status of '1'. - Completed the Finnish OSD texts (thanks to Rolf Ahrenberg). - Empty values in setup.conf are no longer treated as an error (thanks to Andreas Kool for reporting this one). - Added a note about the config files of plugins to INSTALL (thanks to Thomas Keil). - VDR now continues to start up, even if there is an error in setup.conf. - Fixed a bug in resetting OSD color palettes (thanks to Torsten Herz). - Fixed starting a recording on the primary device if there is a replay session active (thanks to Javier Marcet for reporting this one). - Avoiding an unnecessary stop of an ongoing Transfer Mode when starting a recording on the primary device.
45 lines
1.1 KiB
Bash
Executable File
45 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# 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.
|
|
#
|
|
# $Id: runvdr 1.10 2003/08/17 14:27:31 kls Exp $
|
|
|
|
DVBDIR="../DVB/driver"
|
|
VDRPRG="./vdr"
|
|
VDRCMD="$VDRPRG -w 60 $*"
|
|
|
|
LSMOD="`/sbin/lsmod | grep -w '^dvb' | wc -l`"
|
|
KILL="/usr/bin/killall -q -TERM"
|
|
|
|
# Load driver if it hasn't been loaded already:
|
|
if [ $LSMOD -eq 0 ] ; then
|
|
(cd $DVBDIR; make insmod)
|
|
fi
|
|
|
|
while (true) do
|
|
su -c "$VDRCMD" $VDRUSR
|
|
if test $? -ne 1; then exit; fi
|
|
date
|
|
echo "restarting VDR"
|
|
$KILL $VDRPRG
|
|
sleep 10
|
|
(cd $DVBDIR; make rmmod; make insmod)
|
|
date
|
|
done
|