diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-06 15:19:56 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-06 15:19:56 +0100 |
commit | b0c6ed20e51bb5a3282dee7db07a524842bd3c26 (patch) | |
tree | 905e753a1784e051bd7d3d8fe952b3a2e3712355 /package | |
parent | 99a84efb7ab42ee4d7613acc99d41115be637bc5 (diff) |
revert bad commit, exec should not be used
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/Makefile | 2 | ||||
-rwxr-xr-x | package/base-files/src/etc/init.d/rcS | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 606b8c50d..04cb298fa 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/mk/rootfs.mk PKG_NAME:= base-files PKG_VERSION:= 1.0 -PKG_RELEASE:= 25 +PKG_RELEASE:= 26 PKG_SECTION:= base PKG_DESCR:= basic files and scripts diff --git a/package/base-files/src/etc/init.d/rcS b/package/base-files/src/etc/init.d/rcS index 46a9a49c1..bf8d786f3 100755 --- a/package/base-files/src/etc/init.d/rcS +++ b/package/base-files/src/etc/init.d/rcS @@ -4,7 +4,7 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin grep '^#INIT ' /etc/init.d/* | \ sort -nk2 | \ while read line; do - exec sh ${line%%:*} autostart 2>&1 + sh ${line%%:*} autostart 2>&1 done test -e /etc/init.d/boot.local && (/bin/sh /etc/init.d/boot.local) 2>&1 } | logger -s -p 6 -t '' & |