Which one? Minidlna from firmware or from Entware\Optware?
Please note that /jffs/script/services-start will be started after last USB-partition is mounted, it ignores SD Card partitions. If you want to delay minidlna start till SD Card will be mounted, you may add:
Quote:
i=0
# Wait up to 15 seconds to make sure SDCARD partition is mounted
while [ $i -le 15 ]
do
if [ -d /tmp/mnt/SDCARD/SomeFolder ]
then
break
fi
sleep 1
i=`expr $i + 1`
done
/opt/etc/init.d/rc.unslung start
|
to /jffs/script/services-start script.