Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: L: unknown signal



Ewald Maier wrote:
> here is part of runvdr:
> ------------------
 <snip>

You added parmeters to the VDRPRG var. So killall tries to kill a proc
whose name is 
"/usr/local/bin/vdr -L /usr/local/src/VDR/PLUGINS/lib -c
/usr/local/vdr/etc"
-> not good

try this one:

-------------- (snip) ------------------------

DVBDIR="/usr/local/src/DVB/driver"
VDRPRG="/usr/local/bin/vdr"
VDRCMD="$VDRPRG -L /usr/local/src/VDR/PLUGINS/lib -c /usr/local/vdr/etc
\
    -w 60 -t /dev/tty8 -s /usr/local/bin/vdrshutdown $* \
    -P vcd \
    -P dvd \
    -P'mp3 -m /usr/local/vdr/mount.sh' \
    -P'mplayer -m /usr/local/vdr/mount.sh -M /usr/local/vdr/mplayer.sh'
\
    -P teletext \
    -P stream"
export DVDCSS_METHOD=key

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
      $VDRCMD
      if test $? -eq 0; then exit; fi
      date
      echo "restarting VDR"
      $KILL $VDRPRG
      sleep 10
      (cd $DVBDIR; make rmmod; make insmod)
      date
      done

------------- (snap) --------------------

> Feb  3 20:07:04 vdr vdr[3899]: VDR version 1.1.20 started
> Feb  3 20:07:04 vdr vdr[3899]: loading plugin:
> /usr/local/src/VDR/PLUGINS/lib/libvdr-vcd.so.1.1.20
> Feb  3 20:07:04 vdr vdr[3899]: loading plugin:
> /usr/local/src/VDR/PLUGINS/lib/libvdr-dvd.so.1.1.20
> Feb  3 20:07:04 vdr vdr[3899]: ERROR:
> /usr/local/src/VDR/PLUGINS/lib/libvdr-dvd.so.1.1.20: cannot open
> shared object file: No such file or directory

~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^
the vcd-plugin does not work cuase it cannot find the above lib.
So vdr restarts in an endless loop.

First try to run vdr without any plugins and then add them one by one to
see if any problems occur.

Cu Ulrich



-- 
Info:
To unsubscribe send a mail to listar@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index