From: Denys Dmytriyenko <[email protected]> Commit 292b4549c14c73c7b9d50051ef7a999377ab8f40 changed how login_manager gets set conditionally for systemd vs. sysvinit builds. But tiny image is rather special as it uses sysvinit even during systemd build. That's why all other conditional VIRTUAL_RUNTIME variables were being forced in the packagegroup-arago-sysvinit-boot - need to do the same for login_manager. Otherwise it pulls shadow-base into a tiny image w/o additional required dependencies for securetty and few pam plugins, preventing root user from being able to login.
Signed-off-by: Denys Dmytriyenko <[email protected]> --- .../packagegroups/packagegroup-arago-sysvinit-boot.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-sysvinit-boot.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-sysvinit-boot.bb index 9f937343..df7ff960 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-sysvinit-boot.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-sysvinit-boot.bb @@ -12,3 +12,4 @@ VIRTUAL-RUNTIME_dev_manager = "" VIRTUAL-RUNTIME_init_manager = "sysvinit" VIRTUAL-RUNTIME_initscripts = "initscripts" VIRTUAL-RUNTIME_initramfs = "sysvinit-initramfs" +VIRTUAL-RUNTIME_login_manager = "busybox" -- 2.25.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14805): https://lists.yoctoproject.org/g/meta-arago/message/14805 Mute This Topic: https://lists.yoctoproject.org/mt/100246905/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/leave/10763299/21656/89520264/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
