summaryrefslogtreecommitdiffstats
path: root/import-layers/yocto-poky/meta/recipes-core/busybox/files/rcS
diff options
context:
space:
mode:
Diffstat (limited to 'import-layers/yocto-poky/meta/recipes-core/busybox/files/rcS')
-rw-r--r--import-layers/yocto-poky/meta/recipes-core/busybox/files/rcS27
1 files changed, 0 insertions, 27 deletions
diff --git a/import-layers/yocto-poky/meta/recipes-core/busybox/files/rcS b/import-layers/yocto-poky/meta/recipes-core/busybox/files/rcS
deleted file mode 100644
index bb03eb608..000000000
--- a/import-layers/yocto-poky/meta/recipes-core/busybox/files/rcS
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-# 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
-
- case "$i" in
- *.sh)
- # Source shell script for speed.
- (
- trap - INT QUIT TSTP
- set start
- . $i
- )
- ;;
- *)
- # No sh extension, so fork subprocess.
- $i start
- ;;
- esac
-done
-
OpenPOWER on IntegriCloud