Aniplay läuft durchgehend ;(

Games, Plugins, Utils, Tools, 3rdParty, etc...
Larion99
Beiträge: 1
Registriert: Mittwoch 14. April 2004, 02:18

Aniplay läuft durchgehend ;(

Beitrag von Larion99 »

Ich habe volgendes Prob:

Habe Ein animiertes Loge eingebaut, es funtz auch nur es läuft durchgehend...

hier ein auszug meine rsC:

#!/bin/sh

/bin/mount -n -t proc proc /proc
/bin/mount -t jffs2 /dev/mtdblock/3 /var
/bin/mount -n -t ramfs ramfs /tmp

export INSMOD="/sbin/insmod"
export MODDIR="/lib/modules/"$(uname -r)"/misc"
export TZ=CET-1CEST,M3.5.0/2,M10.5.0/3

$INSMOD $MODDIR/misc/lcd.o
/bin/aniplay /var/aniplay/start.ani &

if [ ! -e /var/etc/.v1.7.1 ] ; then
echo "Update altes Baseimage..."
/etc/init.d/update
fi;

/etc/init.d/init1 &

/sbin/ifup -a &
/sbin/inetd
if [ -e /var/etc/.tuxmaild ] ; then
/bin/tuxmaild
fi;

/bin/sleep 2

until [ -e /tmp/init ]; do
/bin/sleep 1
done
rm /tmp/init

killall chk_inputseq
if [ -e /tmp/rescue ]; then
killall -9 aniplay &
/bin/rescue
fi;

/etc/init.d/init2

if [ -e /var/tuxbox/config/lirc/lircd.conf ]; then
/sbin/lircd /var/tuxbox/config/lirc/lircd.conf
fi;

/var/tuxbox/start_neutrino

exit 0

sieht wer fehler?

---Sagem Kabel 2xAMDI
Python
Interessierter
Interessierter
Beiträge: 34
Registriert: Donnerstag 29. August 2002, 11:41

Beitrag von Python »

Hi,
killall chk_inputseq
if [ -e /tmp/rescue ]; then
killall -9 aniplay &
/bin/rescue
fi;
bedeutet doch, daß die Animation nur im "rescue-Fall", was das auch immer ist, gekillt=beendet wird.

Sonst rennt die halt immer weiter ...

ru