base-files: /etc/init.d/rcS is no longer needed, procd handles this for us now
authorJohn Crispin <john@openwrt.org>
Fri, 21 Jun 2013 16:53:55 +0000 (16:53 +0000)
committerJohn Crispin <john@openwrt.org>
Fri, 21 Jun 2013 16:53:55 +0000 (16:53 +0000)
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 37002

package/base-files/files/etc/init.d/rcS [deleted file]

diff --git a/package/base-files/files/etc/init.d/rcS b/package/base-files/files/etc/init.d/rcS
deleted file mode 100755 (executable)
index 9599bbf..0000000
+++ /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