summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/busybox/files
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-01-22 20:49:09 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-25 12:44:12 +0000
commitbe145ad5dc4edfd7dffc74b8970aaafd0eb247f7 (patch)
treee8994340c4b994e244344e35abe6112dcf075d8d /meta/recipes-core/busybox/files
parent716fa93a8e0ce83bc602e53cf03b63c7966eaf4b (diff)
downloadpoky-be145ad5dc4edfd7dffc74b8970aaafd0eb247f7.tar.gz
busybox: Add support for busybox-init
in config metadata we can configure busybox based init and device initializer ( mdev ) using e.g. VIRTUAL-RUNTIME_dev_manager = "busybox-mdev" VIRTUAL-RUNTIME_login_manager = "busybox" VIRTUAL-RUNTIME_init_manager = "busybox" VIRTUAL-RUNTIME_initscripts = "initscripts" VIRTUAL-RUNTIME_keymaps = "keymaps" DISTRO_FEATURES_BACKFILL_CONSIDERED += "sysvinit" busybox can be used to provide init system combined with mdev it makes it a complete init system for really tiny systems. This patch uses above defines to configure features in busybox to enable the init system and mdev in a configurable manner (From OE-Core rev: 75cb4fe38fade382450c5f6f35d5dcf55962143e) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/busybox/files')
-rw-r--r--meta/recipes-core/busybox/files/inittab24
-rw-r--r--meta/recipes-core/busybox/files/rcK25
-rw-r--r--meta/recipes-core/busybox/files/rcS26
-rw-r--r--meta/recipes-core/busybox/files/runlevel11
4 files changed, 86 insertions, 0 deletions
diff --git a/meta/recipes-core/busybox/files/inittab b/meta/recipes-core/busybox/files/inittab
new file mode 100644
index 0000000000..bfec4a7743
--- /dev/null
+++ b/meta/recipes-core/busybox/files/inittab
@@ -0,0 +1,24 @@
1# This is run first except when booting in single-user mode.
2
3# Startup the system
4null::sysinit:/bin/mount -t proc proc /proc
5null::sysinit:/bin/mount -t sysfs sysfs /sys
6null::sysinit:/bin/mount -t devtmpfs devtmpfs /dev
7null::sysinit:/bin/mount -o remount,rw /
8null::sysinit:/bin/mkdir -p /dev/pts
9null::sysinit:/bin/mount -t devpts devpts /dev/pts
10null::sysinit:/bin/mount -a
11
12::sysinit:/etc/init.d/rcS
13
14# Stuff to do before rebooting
15::ctrlaltdel:/sbin/reboot
16::shutdown:/etc/init.d/rcK
17::shutdown:/sbin/swapoff -a
18::shutdown:/bin/umount -a -r
19
20# Stuff to do when restarting the init process
21::restart:/sbin/init
22
23# set hostname
24null::sysinit:/bin/busybox hostname -F /etc/hostname
diff --git a/meta/recipes-core/busybox/files/rcK b/meta/recipes-core/busybox/files/rcK
new file mode 100644
index 0000000000..050086ecd8
--- /dev/null
+++ b/meta/recipes-core/busybox/files/rcK
@@ -0,0 +1,25 @@
1#!/bin/sh
2
3# Stop all init scripts in /etc/init.d
4# executing them in reversed numerical order.
5#
6for i in /etc/rc6.d/K??*; do
7 # Ignore dangling symlinks (if any).
8 [ ! -f "$i" ] && continue
9
10 case "$i" in
11 *.sh)
12 # Source shell script for speed.
13 (
14 trap - INT QUIT TSTP
15 set stop
16 . $i
17 )
18 ;;
19 *)
20 # No sh extension, so fork subprocess.
21 $i stop
22 ;;
23 esac
24done
25
diff --git a/meta/recipes-core/busybox/files/rcS b/meta/recipes-core/busybox/files/rcS
new file mode 100644
index 0000000000..d18c26b4c3
--- /dev/null
+++ b/meta/recipes-core/busybox/files/rcS
@@ -0,0 +1,26 @@
1#!/bin/sh
2
3# Stop all init scripts in /etc/init.d
4# executing them in reversed numerical order.
5#
6
7for i in /etc/rcS.d/S??* /etc/rc5.d/S??* ;do
8 # Ignore dangling symlinks (if any).
9 [ ! -f "$i" ] && continue
10
11 case "$i" in
12 *.sh)
13 # Source shell script for speed.
14 (
15 trap - INT QUIT TSTP
16 set stop
17 . $i
18 )
19 ;;
20 *)
21 # No sh extension, so fork subprocess.
22 $i start
23 ;;
24 esac
25done
26
diff --git a/meta/recipes-core/busybox/files/runlevel b/meta/recipes-core/busybox/files/runlevel
new file mode 100644
index 0000000000..866f3b5945
--- /dev/null
+++ b/meta/recipes-core/busybox/files/runlevel
@@ -0,0 +1,11 @@
1#!/bin/sh
2# busybox init does not have LSB ( sysvinit ) like initlevels
3# so lets fake it to 5 which is what we default anyway
4# this helps with opkg post installs where it tries to invoke
5# update-rc.d ad post install step.
6# for package upgrades
7# See code in update-rc.d around line 190 where it calls runlevel
8# program
9#
10echo "5"
11