summaryrefslogtreecommitdiffstats
path: root/meta-yocto/conf
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2012-06-13 21:05:17 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-26 15:34:40 +0100
commitbcc04b2880b44140176e1d2dcc955a3d3942c392 (patch)
treec1b4491208579707e5e2fa4dde0bb342f4225e87 /meta-yocto/conf
parent20a426b975ab6131989fb99b455fec9a39439531 (diff)
downloadpoky-bcc04b2880b44140176e1d2dcc955a3d3942c392.tar.gz
tiny-init: Basic init mechanism for poky-tiny
Currently poky-tiny images will boot and run /bin/sh, which results in error messages to the console about being unable to open the tty and job control being disabled. The shell must be session leader to open the tty, and the tty must not be /dev/console (it should be a vt or a physical tty like ttyS0), the tty is required for job control (handling signals, etc.). The goals of poky-tiny are to be an initial starting point from which to build a distribution that does what you want, and NOTHING more. This patch results in a system that boots with the virtual filesystems mounted, the local network interface up, and a shell with job control running, and a hook (/etc/rc.local) for easy customization. Nothing else. Enabling the basic busybox init, including the ability to give the controlling console to commands starting with a dash in inittab results in a 5664 byte delta (compared with 2560 bytes for enabling setsid and cttyhack). Note that the help in busybox suggests the cttyhack may be more reliable than the init support for handing over the controlling terminal. So the difference between using a standard init and just enabling the two options is about 3k, but enabling setsid and cttyhack may enable others to things besides what I am looking to do. Enabling init in both DISTRO_FEATURES and busybox is fairly trivial to do, so I think it's better to leave that as something to add if needed, rather than something to remove, as that is more consistent with the goals of poky-tiny. Thanks to Tim Bird for his suggestion to include support for rc.local by default. (From meta-yocto rev: 5ae60ed46b34cbf4ab17fe7eab3d46e2f78ee7b8) Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Tim Bird <tim.bird@am.sony.com> CC: Thomas Frydrych <tf+lists.yocto@r-finger.com> CC: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> CC: Paul Eggleton <paul.eggleton@linux.intel.com> CC: Phil Blundell <philb@gnu.org> CC: Khem Raj <raj.khem@gmail.com> CC: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto/conf')
-rw-r--r--meta-yocto/conf/distro/poky-tiny.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
index a34c7dc6ca..8ae1d85e8a 100644
--- a/meta-yocto/conf/distro/poky-tiny.conf
+++ b/meta-yocto/conf/distro/poky-tiny.conf
@@ -95,7 +95,7 @@ DISTRO_FEATURES = "${DISTRO_FEATURES_TINY} \
95# Use tmpdevfs and the busybox runtime services 95# Use tmpdevfs and the busybox runtime services
96VIRTUAL-RUNTIME_dev_manager = "" 96VIRTUAL-RUNTIME_dev_manager = ""
97VIRTUAL-RUNTIME_login_manager = "" 97VIRTUAL-RUNTIME_login_manager = ""
98VIRTUAL-RUNTIME_init_manager = "" 98VIRTUAL-RUNTIME_init_manager = "tiny-init"
99VIRTUAL-RUNTIME_keymaps = "" 99VIRTUAL-RUNTIME_keymaps = ""
100 100
101# FIXME: Consider adding "modules" to MACHINE_FEATURES and using that in 101# FIXME: Consider adding "modules" to MACHINE_FEATURES and using that in