summaryrefslogtreecommitdiff
path: root/recipes/nslu2-binary-only/unslung-rootfs/rc.optware-start
diff options
context:
space:
mode:
authorRod Whitby <rod@whitby.id.au>2009-05-01 00:16:54 +0000
committerRod Whitby <rod@whitby.id.au>2009-05-01 00:16:54 +0000
commite8410422c0d3a3621ee5a604cd5a52e80604532f (patch)
tree9fde706f2e6acaa0b1874f9e3cd1f888c5805903 /recipes/nslu2-binary-only/unslung-rootfs/rc.optware-start
parente34ffc1bf774a0a6561d7b9e0e6800e1029c0ef1 (diff)
Unslung: Removed all trace of the unslung distro from OE
Diffstat (limited to 'recipes/nslu2-binary-only/unslung-rootfs/rc.optware-start')
-rwxr-xr-xrecipes/nslu2-binary-only/unslung-rootfs/rc.optware-start27
1 files changed, 0 insertions, 27 deletions
diff --git a/recipes/nslu2-binary-only/unslung-rootfs/rc.optware-start b/recipes/nslu2-binary-only/unslung-rootfs/rc.optware-start
deleted file mode 100755
index 53fe7e8262..0000000000
--- a/recipes/nslu2-binary-only/unslung-rootfs/rc.optware-start
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-if ( [ -f /unslung/rc.optware-start ] && . /unslung/rc.optware-start ) ; then return 0 ; fi
-
-# Start all init scripts in /opt/etc/init.d
-# executing them in numerical order.
-#
-for i in /opt/etc/init.d/S??* ;do
-
- # Ignore dangling symlinks (if any).
- [ ! -f "$i" ] && continue
-
- case "$i" in
- *.sh)
- # Source shell script for speed.
- (
- trap - INT QUIT TSTP
- set start
- . $i
- )
- ;;
- *)
- # No sh extension, so fork subprocess.
- $i start
- ;;
- esac
-done