summaryrefslogtreecommitdiff
path: root/package/base-files/files/etc
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-06-21 16:53:55 +0000
committerJohn Crispin <john@openwrt.org>2013-06-21 16:53:55 +0000
commitd0db343fc4bf2afc98e333e2957bd2cde249ae8b (patch)
tree2166b99f36fcf6e7eb66c7fab9221799603dd803 /package/base-files/files/etc
parent533dfc39e32c975706f6a632e0c34cb83abb5d6c (diff)
downloadmtk-20170518-d0db343fc4bf2afc98e333e2957bd2cde249ae8b.zip
mtk-20170518-d0db343fc4bf2afc98e333e2957bd2cde249ae8b.tar.gz
mtk-20170518-d0db343fc4bf2afc98e333e2957bd2cde249ae8b.tar.bz2
base-files: /etc/init.d/rcS is no longer needed, procd handles this for us now
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37002
Diffstat (limited to 'package/base-files/files/etc')
-rwxr-xr-xpackage/base-files/files/etc/init.d/rcS9
1 files changed, 0 insertions, 9 deletions
diff --git a/package/base-files/files/etc/init.d/rcS b/package/base-files/files/etc/init.d/rcS
deleted file mode 100755
index 9599bbf..0000000
--- a/package/base-files/files/etc/init.d/rcS
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2006 OpenWrt.org
-
-LOGGER="cat"
-[ -x /usr/bin/logger ] && LOGGER="logger -p 6 -t sysinit"
-
-for i in /etc/rc.d/$1*; do
- [ -x $i ] && $i $2 2>&1
-done | $LOGGER