diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2013-06-06 15:53:19 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-25 17:44:52 +0100 |
commit | d704b0360c05b71880c692586fe2abcfeb016bdd (patch) | |
tree | 1d1d81032264502db139ce114187e83cfd690960 | |
parent | c31537a06293cb86e3087736a152fa7b81b5c7ba (diff) | |
download | poky-d704b0360c05b71880c692586fe2abcfeb016bdd.tar.gz |
packagegroup-core-basic: set the default login manager
Set the default login manager to 'busybox', drop the mingetty in
the RDEPENDS, use ${VIRTUAL-RUNTIME_login_manager} instead.
mingetty doesn't work with serial consoles, so if the login console
is ttyS0 for example, we get error messages on screen and cannot login
on ttyS0.
The login manager, no matter it's tinylogin or busybox, provides
getty, so we can just rdepend on it.
[YOCTO #4207]
(From OE-Core rev: 878596c0943c015f9995997cdaf894c2c236f9a0)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/packagegroups/packagegroup-core-basic.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-basic.bb b/meta/recipes-extended/packagegroups/packagegroup-core-basic.bb index 31cac335f1..00405d6ec1 100644 --- a/meta/recipes-extended/packagegroups/packagegroup-core-basic.bb +++ b/meta/recipes-extended/packagegroups/packagegroup-core-basic.bb | |||
@@ -92,11 +92,12 @@ RDEPENDS_packagegroup-core-dev-utils = "\ | |||
92 | 92 | ||
93 | VIRTUAL-RUNTIME_initscripts ?= "initscripts" | 93 | VIRTUAL-RUNTIME_initscripts ?= "initscripts" |
94 | VIRTUAL-RUNTIME_init_manager ?= "sysvinit" | 94 | VIRTUAL-RUNTIME_init_manager ?= "sysvinit" |
95 | VIRTUAL-RUNTIME_login_manager ?= "busybox" | ||
95 | RDEPENDS_packagegroup-core-initscripts = "\ | 96 | RDEPENDS_packagegroup-core-initscripts = "\ |
96 | ${VIRTUAL-RUNTIME_initscripts} \ | 97 | ${VIRTUAL-RUNTIME_initscripts} \ |
97 | ${VIRTUAL-RUNTIME_init_manager} \ | 98 | ${VIRTUAL-RUNTIME_init_manager} \ |
98 | ethtool \ | 99 | ethtool \ |
99 | mingetty \ | 100 | ${VIRTUAL-RUNTIME_login_manager} \ |
100 | sysklogd \ | 101 | sysklogd \ |
101 | " | 102 | " |
102 | 103 | ||