script to start vdr with softdevice

changes on vdr and w_scan scripts
This commit is contained in:
Arne Fitzenreiter
2008-04-17 19:19:33 +02:00
parent 3a231e36e2
commit 2adf52860c
7 changed files with 30 additions and 5 deletions

View File

@@ -9,11 +9,18 @@
# actual 'vdr' program.
#
PLUGOPTS="-Pstreamdev-server"
VDRPRG="./bin/vdr"
VDRCMD="$VDRPRG -w 60 -c /opt/vdr/etc -Pstreamdev-server $*"
VDRCMD="$VDRPRG -w 60 -c /opt/vdr/etc $PLUGOPTS $*"
KILL="killall -q -TERM"
if [ "$(ps -A | grep " vdr")" != "" ]; then
echo vdr is already running!
exit 1
fi
mkdir -p /var/video
cd /opt/vdr
while (true) do

3
config/vdr/bin/runvdr-soft Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
clear
runvdr -Psoftdevice > /dev/null 2>&1