mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 17:26:36 +01:00
Currently VIRTUAL-RUNTIME_dev_manager is defined by some init managers with "??=" and in packagegroup-core-boot with "?=". This means that this variable is different in this package group and in all other the recipes. This was discovered when trying to use new feature INIT_MANAGER when migrating to scarthgap and using systemd distro. After deleting all VIRTUAL_RUNTIME providers defined in init-manager-systemd udev was installed additionally via packagegroup-core-boot. Having a distro settings overriden in single recipe is wrong and needs to be corrected. Therefore let's define the setting in all init managers and remove it from packagegroup-core-boot. core-image-tiny-initramfs has a dilemma - use busybox-mdev even if distro does not enable it in busybox recipe to keep the image tiny, or rather not install it even if distro enables it in busybox. This patch chooses the first option. (From OE-Core rev: 89e2652ac83f2602d6dd60623a225b88dc67d288) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
5 lines
173 B
PHP
5 lines
173 B
PHP
VIRTUAL-RUNTIME_init_manager ??= "sysvinit"
|
|
VIRTUAL-RUNTIME_initscripts ??= "initscripts"
|
|
VIRTUAL-RUNTIME_login_manager ??= "busybox"
|
|
VIRTUAL-RUNTIME_dev_manager ??= "udev"
|