I'm trying to figure out how entware and transmission starts on my AX86U Pro. I installed entware through AMTM and transmission using the opkg command and everything seems to be fine including the swap file which is available after a reboot. On my old AC68U there was a script in jffs called services-start that would start the rc.unslung script that seemed to point to entware. On the new AX86U there is no services-start yet there is a services-stop which stops rc.unslung. Again everything appears to be working even after a reboot. Can someone explain to me how entware starts or is made aware of it's existence in the merlin router software as opposed to my old AC68U running John's Fork. See below the services-start on my old AC68U (created automatically by the entware script at the time) that doesn't exist on the AX86U. Thanks again for any insights. Cheers.
#!/bin/sh
# old AC68U services-start script
sleep 10
RC='/opt/etc/init.d/rc.unslung'
i=30
until [ -x "$RC" ] ; do
i=$(($i-1))
if [ "$i" -lt 1 ] ; then
logger "Could not start Entware-NG"
exit
fi
sleep 5
done
$RC start
#!/bin/sh
# old AC68U services-start script
sleep 10
RC='/opt/etc/init.d/rc.unslung'
i=30
until [ -x "$RC" ] ; do
i=$(($i-1))
if [ "$i" -lt 1 ] ; then
logger "Could not start Entware-NG"
exit
fi
sleep 5
done
$RC start