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:
parent
41c8616765
commit
facda40624
|
|
@ -10,7 +10,7 @@ include conf/machine/include/imx-digi-base.inc
|
||||||
include conf/machine/include/arm/armv7a/tune-cortexa7.inc
|
include conf/machine/include/arm/armv7a/tune-cortexa7.inc
|
||||||
|
|
||||||
# Override default init manager from distro config
|
# Override default init manager from distro config
|
||||||
INIT_MANAGER ?= "sysvinit"
|
INIT_MANAGER:ccimx6ul = "sysvinit"
|
||||||
|
|
||||||
# Platform u-boot settings
|
# Platform u-boot settings
|
||||||
UBOOT_PREFIX = "u-boot"
|
UBOOT_PREFIX = "u-boot"
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,7 @@ SDKPATHINSTALL = "/opt/${DISTRO}/${SDK_VERSION}/${MACHINE}"
|
||||||
LICENSE_FLAGS_ACCEPTED += "commercial"
|
LICENSE_FLAGS_ACCEPTED += "commercial"
|
||||||
|
|
||||||
# Use systemd init manager by default
|
# Use systemd init manager by default
|
||||||
INIT_MANAGER ?= "systemd"
|
INIT_MANAGER = "systemd"
|
||||||
|
|
||||||
# Enable examples for some QT packages
|
# Enable examples for some QT packages
|
||||||
PACKAGECONFIG:append:class-target:pn-qtbase = " examples"
|
PACKAGECONFIG:append:class-target:pn-qtbase = " examples"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue