mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Fixed cRemux::ScanVideoPacket() to make sure it doesn't access memory beyond the end of the given buffer, which has caused some unjustified "unknown picture type errors" (thanks to Marco Schlüßler). - Fixed a possible crash when pausing live video and the recording was unable to start, maybe because there was no lock on the device (thanks to Andreas Brugger for reporting this one). - Fixed some characters in the iso8859-2 font file (thanks to Dino Ravnic). - Fixed some errors in the Croatian language texts (thanks to Dino Ravnic). - Fixed a possible recursion in cControl::Shutdown() (thanks to Sascha Volkenandt). - Now setting the VPID before the APID in live mode to avoid unnecessary overhead in the firmware (thanks to Werner Fink). - Now checking available OSD memory at runtime (thanks to Oliver Endriss). - Fixed some typos in the Makefile's 'font' target (thanks to Olaf Titz). - Fixed handling childTid in cThread to avoid possible race conditions (thanks to Stefan Huelswitt for pointing this out). - Fixed toggling the "Day" item in the "Timers" menu, so that it selects the right day of week for timers in the future. - Some improvements to cPoller (thanks to Marco Schlüßler).
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.14 2004/11/21 11:30:00 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 $VDRUSR -c "$VDRCMD"
|
|
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
|