diff options
-rw-r--r-- | CONTRIBUTORS | 2 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | INSTALL | 11 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rwxr-xr-x | runvdr.template (renamed from runvdr) | 14 |
5 files changed, 24 insertions, 9 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 4ab11a85..249546b1 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1562,6 +1562,8 @@ Martin Dauskardt <md001@gmx.de> recorded for suggesting to add a table of the used trick speed values to the description of cDevice::TrickSpeed() + for renaming 'runvdr' to 'runvdr.template' and no longer copying it to the BINDIR + in 'make install' Maynard Cedric <maynard.cedric@wanadoo.fr> for reporting a problem in handling the color button texts in cMenuEditStrItem @@ -6285,3 +6285,5 @@ Video Disk Recorder Revision History - Updated the Italian OSD texts (thanks to Diego Pierotto). - If svdrphosts.conf contains only the address of the local host, the SVDRP port is opened only for the local host (thanks to Manuel Reimer). +- Renamed 'runvdr' to 'runvdr.template' and no longer copying it to the BINDIR + in 'make install' (thanks to Martin Dauskardt). @@ -121,8 +121,12 @@ Users who want to set the default character set to something different can do this by setting the environment variable VDR_CHARSET_OVERRIDE to something like ISO-8859-9. -Automatic restart in case of hangups: -------------------------------------- +Start script with automatic restart in case of hangups: +------------------------------------------------------- + +The VDR source directory contains a 'runvdr.template'. Just copy it as 'runvdr' +into your /usr/bin or /usr/local/bin directory and adjust it to your particular +requirements. (See the comments inside the script for more information.) If you run VDR using the 'runvdr' shell script it will use the built-in watchdog timer to restart the program in case something happens that @@ -131,9 +135,6 @@ call to the VDR program, be sure to NOT use the '-d' option! Otherwise VDR will go into 'daemon' mode and the initial program call will return immediately! 'runvdr' needs to be started as user 'root'. Use the '-u' option to run the actual 'vdr' program under a different user id. -Note that the 'runvdr' script needs to be adjusted to your particular -requirements before you can actually use it. See the comments inside -the script for more information. Setting the system time: ------------------------ @@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 2.5 2009/12/31 15:36:00 kls Exp $ +# $Id: Makefile 2.6 2010/01/17 12:32:18 kls Exp $ .DELETE_ON_ERROR: @@ -164,7 +164,7 @@ install: install-bin install-conf install-doc install-plugins install-i18n install-bin: vdr @mkdir -p $(DESTDIR)$(BINDIR) - @cp --remove-destination vdr runvdr svdrpsend.pl $(DESTDIR)$(BINDIR) + @cp --remove-destination vdr svdrpsend.pl $(DESTDIR)$(BINDIR) # Configuration files: diff --git a/runvdr b/runvdr.template index 96c95bf2..ebc2f04d 100755 --- a/runvdr +++ b/runvdr.template @@ -20,10 +20,20 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: runvdr 1.19 2006/05/14 16:02:05 kls Exp $ +# $Id: runvdr.template 2.1 2010/01/17 12:39:27 kls Exp $ VDRPRG="./vdr" -VDRCMD="$VDRPRG -w 60 $*" + +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" +# DVB card that would be +# VDRPLUGINS="-P dvbsddevice" + +VDRCMD="$VDRPRG $VDROPTIONS $VDRPLUGINS $*" KILL="/usr/bin/killall -q -TERM" |