| 12345678910111213141516171819202122232425262728293031323334 | #!/bin/sh#PKG adk-test-tools#INIT 90. /etc/rc.confcase $1 inautostop) ;;autostart)	test x"${test:-NO}" = x"NO" && exit 0	test x"$test" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start	exec sh $0 start	;;start)	echo "Setting time via network ..."	rdate -nv pool.ntp.org	grep shell /proc/cmdline > /dev/null 2&>1	if [ $? -eq 0 ];then		exit 0	fi	echo "Starting test script ..."	if [ -x /run.sh ];then		/run.sh		quit	else		echo "no run.sh found"		quit	fi	;;*)	echo "Usage: $0 {start}"	exit 1	;;esacexit $?
 |