summaryrefslogtreecommitdiff
path: root/package/base-files
diff options
context:
space:
mode:
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-06-21 16:53:55 +0000
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-06-21 16:53:55 +0000
commit6ea890978d811dca5c4814c38d79fbd2bf44114e (patch)
treec9812d32c579a14ba933949a0158e1a4b84a4988 /package/base-files
parent05077c373d5d833dd8a56539f701cc4366779b46 (diff)
base-files: /etc/init.d/rcS is no longer needed, procd handles this for us now
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37002 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-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 9599bbf32e..0000000000
--- 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