Es kommt immer wieder zu Problemen, weil einige User die camd2 auch in jffs2 Images
in das Verzeichnis /var/bin/ kopieren.
Das ist bei Yadi und JtG Images auch richtig so.
Mein Vorschlag wäre, das in allen Images einheitlich zu machen, egal ob Yadi, JtG,
oder DietmarW Images und das ins CVS zu übernehmen.
Beispiel start_neutrino in jffs2 Images:
Code: Alles auswählen
#!/bin/sh
sectionsd
timerd
if [ -e /var/bin/camd2 ]; then
chmod +x /var/bin/camd2
/var/bin/camd2
else
/bin/camd2
fi;
zapit
controld
nhttpd
neutrino -u -f
pzapit -kill
i=9
while expr $i != 0 > /dev/null
do
if pidof controld > /dev/null; then echo "Waiting for controld (max. $i seconds)"
elif pidof timerd > /dev/null; then echo "Waiting for timerd (max. $i seconds)"
elif pidof zapit > /dev/null; then echo "Waiting for zapit (max. $i seconds)"
else break;
fi
i=`expr $i - 1`
sleep 1
done
halt