diff options
author | Manuel Reimer <manuel.reimer@gmx.de> | 2014-02-19 17:09:08 +0100 |
---|---|---|
committer | Manuel Reimer <manuel.reimer@gmx.de> | 2014-02-19 17:09:08 +0100 |
commit | 03282468b5f42dabb58142f239637df80c8f8f61 (patch) | |
tree | bc725ca98558bfe2e0f71b77a5086d268087d1f7 | |
parent | d5e80bd588c4db55de479c5e3fe40a03c55ff11a (diff) | |
download | runvdr-extreme-03282468b5f42dabb58142f239637df80c8f8f61.tar.gz runvdr-extreme-03282468b5f42dabb58142f239637df80c8f8f61.tar.bz2 |
Documented the requirement of the "-noreset" parameter
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | runvdr.conf.example | 4 | ||||
-rw-r--r-- | runvdr.conf.pod | 5 |
3 files changed, 9 insertions, 2 deletions
@@ -3,6 +3,8 @@ runvdr extreme Revision History XXXX-XX-XX: Version X.X.X - New: Replaced xinit with own, builtin, X server handling. + Note: Please be sure to have the "-noreset" parameter in your "XSERVER" + command line or the detach feature of softhddevice will fail. 2013-10-20: Version 0.5.0 - New: If VDRPRG is not given, runvdr-extreme defaults to "vdr" in $PATH diff --git a/runvdr.conf.example b/runvdr.conf.example index ae29f4e..5f8a798 100644 --- a/runvdr.conf.example +++ b/runvdr.conf.example @@ -181,7 +181,9 @@ DIRNAMES= # USERDUMP="1" # Fire up own X server as output device -# XSERVER="/usr/bin/X -nolisten tcp -config /etc/X11/xorg-runvdr.conf :0" +# Note: You need the "-noreset" parameter if you want to use the "detach" +# feature of the softhddevice output plugin +# XSERVER="/usr/bin/X -nolisten tcp -config /etc/X11/xorg-runvdr.conf -noreset :0" # X startup commands, called within the X server #function XSTARTUP() { diff --git a/runvdr.conf.pod b/runvdr.conf.pod index 9ad0243..b4cad8a 100644 --- a/runvdr.conf.pod +++ b/runvdr.conf.pod @@ -305,12 +305,15 @@ The command "AddPlugin" is used to load a plugin, defined by the given options. =head1 X SERVER HANDLING - XSERVER="/usr/bin/X -nolisten tcp -config /etc/X11/xorg-runvdr.conf :0" + XSERVER="/usr/bin/X -nolisten tcp -config /etc/X11/xorg-runvdr.conf -noreset :0" =over 5 Fire up own X server as output device +Note: You need the "-noreset" parameter if you want to use the "detach" +feature of the softhddevice output plugin + =back function XSTARTUP() { |