aboutsummaryrefslogtreecommitdiffstats
path: root/meta/conf/machine
diff options
context:
space:
mode:
authorHe Zhe <zhe.he@windriver.com>2018-05-23 11:31:54 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-05-29 21:06:01 +0100
commit07e06abeb6b7ae5047c4b70818cd8873302e4940 (patch)
treedb8133ddaa164647d32ac807105d9010719ec8a5 /meta/conf/machine
parent35076031c76089b9acec9d256ac2b4345f9f918b (diff)
downloadopenembedded-core-contrib-07e06abeb6b7ae5047c4b70818cd8873302e4940.tar.gz
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 <zhe.he@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/conf/machine')
-rw-r--r--meta/conf/machine/include/qemu.inc2
1 files changed, 1 insertions, 1 deletions
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"