summaryrefslogtreecommitdiff
path: root/root/etc/init.d/rcS
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2005-10-17 12:24:08 +0000
committerImre Kaloz <kaloz@openwrt.org>2005-10-17 12:24:08 +0000
commit15bee86fc3df92f0bbdf0a17eac3915965983396 (patch)
tree6a621c91d22f093f023a29c72252ea47ba9fb32a /root/etc/init.d/rcS
parent487c71693d31836144cd0a55ae73b76c64f71561 (diff)
downloadmtk-20170518-15bee86fc3df92f0bbdf0a17eac3915965983396.zip
mtk-20170518-15bee86fc3df92f0bbdf0a17eac3915965983396.tar.gz
mtk-20170518-15bee86fc3df92f0bbdf0a17eac3915965983396.tar.bz2
removed the old directories, too.. cleanup is ready, yay
SVN-Revision: 2130
Diffstat (limited to 'root/etc/init.d/rcS')
-rwxr-xr-xroot/etc/init.d/rcS25
1 files changed, 0 insertions, 25 deletions
diff --git a/root/etc/init.d/rcS b/root/etc/init.d/rcS
deleted file mode 100755
index 9510e94..0000000
--- a/root/etc/init.d/rcS
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-# Start all init scripts in /etc/init.d
-# executing them in numerical order.
-#
-for i in /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