summaryrefslogtreecommitdiff
path: root/nslu2-binary-only/nslu2-unslung-ramdisk/rc.unslung
diff options
context:
space:
mode:
Diffstat (limited to 'nslu2-binary-only/nslu2-unslung-ramdisk/rc.unslung')
-rw-r--r--nslu2-binary-only/nslu2-unslung-ramdisk/rc.unslung27
1 files changed, 0 insertions, 27 deletions
diff --git a/nslu2-binary-only/nslu2-unslung-ramdisk/rc.unslung b/nslu2-binary-only/nslu2-unslung-ramdisk/rc.unslung
deleted file mode 100644
index 86bfdf0029..0000000000
--- a/nslu2-binary-only/nslu2-unslung-ramdisk/rc.unslung
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-if ( [ -f /unslung/rc.unslung ] && . /unslung/rc.unslung ) ; 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