summaryrefslogtreecommitdiffstats
path: root/meta/conf
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:07:16 +0100
commitaf5c776a285ddc929971634e852dd83bda1ece00 (patch)
tree00ba7f26a24ddec6806f399e0e730939407e29a1 /meta/conf
parented87f71d155b79ec1ae9e4ba575da4c362772640 (diff)
downloadpoky-af5c776a285ddc929971634e852dd83bda1ece00.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 ??= . (From OE-Core rev: 07e06abeb6b7ae5047c4b70818cd8873302e4940) Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-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"
19RDEPENDS_${KERNEL_PACKAGE_NAME}-base = "" 19RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
20 20
21# Use a common kernel recipe for all QEMU machines 21# Use a common kernel recipe for all QEMU machines
22PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" 22PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
23 23
24EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native" 24EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native"
25 25