diff options
Diffstat (limited to 'package/adk-test-tools/files')
-rw-r--r-- | package/adk-test-tools/files/adk-test-tools.postinst | 3 | ||||
-rwxr-xr-x | package/adk-test-tools/files/test.init | 34 |
2 files changed, 0 insertions, 37 deletions
diff --git a/package/adk-test-tools/files/adk-test-tools.postinst b/package/adk-test-tools/files/adk-test-tools.postinst deleted file mode 100644 index f193b2823..000000000 --- a/package/adk-test-tools/files/adk-test-tools.postinst +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -. $IPKG_INSTROOT/etc/functions.sh -add_rcconf test NO diff --git a/package/adk-test-tools/files/test.init b/package/adk-test-tools/files/test.init deleted file mode 100755 index 203a8c973..000000000 --- a/package/adk-test-tools/files/test.init +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -#PKG adk-test-tools -#INIT 90 -. /etc/rc.conf - -case $1 in -autostop) ;; -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 - ;; -esac -exit $? |