aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/busybox/files/rcS
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/busybox/files/rcS')
-rw-r--r--meta/recipes-core/busybox/files/rcS7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/recipes-core/busybox/files/rcS b/meta/recipes-core/busybox/files/rcS
index d18c26b4c3..bb03eb6088 100644
--- a/meta/recipes-core/busybox/files/rcS
+++ b/meta/recipes-core/busybox/files/rcS
@@ -1,10 +1,11 @@
#!/bin/sh
-# Stop all init scripts in /etc/init.d
-# executing them in reversed numerical order.
+# Start all init scripts in /etc/rcS.d and /etc/rc5.d
+# executing them in numerical order.
#
for i in /etc/rcS.d/S??* /etc/rc5.d/S??* ;do
+
# Ignore dangling symlinks (if any).
[ ! -f "$i" ] && continue
@@ -13,7 +14,7 @@ for i in /etc/rcS.d/S??* /etc/rc5.d/S??* ;do
# Source shell script for speed.
(
trap - INT QUIT TSTP
- set stop
+ set start
. $i
)
;;