summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2010-01-17 12:45:44 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2010-01-17 12:45:44 +0100
commit3c5b11abbb9c0897eedcc7506af804c62093ec66 (patch)
treeac8b9cb903073fa43fe667a71fd61e564da81896
parentc198a259432a5ee612ac8dd211f8017f0786fedb (diff)
downloadvdr-3c5b11abbb9c0897eedcc7506af804c62093ec66.tar.gz
vdr-3c5b11abbb9c0897eedcc7506af804c62093ec66.tar.bz2
Renamed 'runvdr' to 'runvdr.template' and no longer copying it to the BINDIR in 'make install'
-rw-r--r--CONTRIBUTORS2
-rw-r--r--HISTORY2
-rw-r--r--INSTALL11
-rw-r--r--Makefile4
-rwxr-xr-xrunvdr.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
diff --git a/HISTORY b/HISTORY
index 9ab71fb3..febccc8d 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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).
diff --git a/INSTALL b/INSTALL
index 3af62d77..e0fc016a 100644
--- a/INSTALL
+++ b/INSTALL
@@ -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:
------------------------
diff --git a/Makefile b/Makefile
index 1901fa2d..01408cb1 100644
--- a/Makefile
+++ b/Makefile
@@ -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"