global: use strong assignments when setting INIT_MANAGER

This variable now has a weak assignment in poky with the default value
"sysvinit", which was overriding our weak assignments.

https://onedigi.atlassian.net/browse/DEL-9011

Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
Gabriel Valcazar 2024-05-16 12:35:45 +02:00
parent 41c8616765
commit facda40624
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ include conf/machine/include/imx-digi-base.inc
include conf/machine/include/arm/armv7a/tune-cortexa7.inc
# Override default init manager from distro config
INIT_MANAGER ?= "sysvinit"
INIT_MANAGER:ccimx6ul = "sysvinit"
# Platform u-boot settings
UBOOT_PREFIX = "u-boot"

View File

@ -74,7 +74,7 @@ SDKPATHINSTALL = "/opt/${DISTRO}/${SDK_VERSION}/${MACHINE}"
LICENSE_FLAGS_ACCEPTED += "commercial"
# Use systemd init manager by default
INIT_MANAGER ?= "systemd"
INIT_MANAGER = "systemd"
# Enable examples for some QT packages
PACKAGECONFIG:append:class-target:pn-qtbase = " examples"