From af5c776a285ddc929971634e852dd83bda1ece00 Mon Sep 17 00:00:00 2001 From: He Zhe Date: Wed, 23 May 2018 11:31:54 +0800 Subject: 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 ??= . (From OE-Core rev: 07e06abeb6b7ae5047c4b70818cd8873302e4940) Signed-off-by: He Zhe Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/conf/machine/include/qemu.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/conf') 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" -- cgit v1.2.3-54-g00ecf