diff options
author | John Crispin <john@openwrt.org> | 2013-06-21 16:53:55 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-06-21 16:53:55 +0000 |
commit | d0db343fc4bf2afc98e333e2957bd2cde249ae8b (patch) | |
tree | 2166b99f36fcf6e7eb66c7fab9221799603dd803 /package/base-files/files/etc/init.d | |
parent | 533dfc39e32c975706f6a632e0c34cb83abb5d6c (diff) | |
download | upstream-d0db343fc4bf2afc98e333e2957bd2cde249ae8b.tar.gz upstream-d0db343fc4bf2afc98e333e2957bd2cde249ae8b.tar.bz2 upstream-d0db343fc4bf2afc98e333e2957bd2cde249ae8b.zip |
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/init.d')
-rwxr-xr-x | package/base-files/files/etc/init.d/rcS | 9 |
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 |