mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Now explicitly handling exit value 0 and 2 in 'runvdr'. - Added a missing 'w' to the allowed characters for Finnish and Swedish (thanks to Lauri Tischler and Ragnar Sundblad). - Added channels for DVB-T Hannover (Germany) to channels.cont.terr (thanks to Peter Waechtler). - Fixed a hangup in SVDRP when the client disappears without sending QUIT (thanks to Robert Bartl for reporting this one). The problem was introduced in version 1.2.2 through the fix for an occasional "Broken pipe" error in SVDRP connections. - Updated 'channels.conf.terr' for Berlin. - Fixed displaying still pictures, now using the driver's VIDEO_STILLPICTURE call directly (thanks to Oliver Endriss). This also improves navigating through DVD menus with the DVD plugin. If this causes problems with your particular system (maybe because you are using the 'analogtv' plugin) you can reactivate the previous behaviour by commenting out the line #define VIDEO_STILLPICTURE_WORKS_WITH_VDR_FRAMES in VDR/dvbdevice.c. Note that you need driver version 2003-08-23 or later for this to work! - Fixed handling extra blanks in plugin command lines. - Actually implemented the SVDRP command DELC. - Now clearing the player device if there are too many poll timeouts in 'Transfer Mode', which avoids buffer overflows and black screens in such cases.
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.11 2003/08/26 16:15:41 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 $? -eq 0 -o $? -eq 2; then exit; fi
|
|
date
|
|
echo "restarting VDR"
|
|
$KILL $VDRPRG
|
|
sleep 10
|
|
(cd $DVBDIR; make rmmod; make insmod)
|
|
date
|
|
done
|