From: He Zhe Date: Wed, 23 May 2018 03:31:54 +0000 (+0800) Subject: qemu.inc: Change kernel provider assignment to a weaker one X-Git-Tag: uninative-2.1~95 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=07e06abeb6b7ae5047c4b70818cd8873302e4940;p=openembedded-core.git qemu.inc: Change kernel provider assignment to a weaker one Currently we have local.conf included before qemu.inc, and ${DISTRO}.conf after qemu.inc. They both possibly specify their expected kernel providers. To let other config files override it in real use, this commit changes kernel provider assignment to ??= . Signed-off-by: He Zhe Signed-off-by: Ross Burton --- diff --git a/meta/conf/machine/include/qemu.inc b/meta/conf/machine/include/qemu.inc index aa332fecc2..5050e41066 100644 --- a/meta/conf/machine/include/qemu.inc +++ b/meta/conf/machine/include/qemu.inc @@ -19,7 +19,7 @@ IMAGE_FSTYPES += "tar.bz2 ext4" RDEPENDS_${KERNEL_PACKAGE_NAME}-base = "" # Use a common kernel recipe for all QEMU machines -PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" +PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto" EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native"