diff options
author | He Zhe <zhe.he@windriver.com> | 2018-05-23 11:31:54 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-29 21:07:16 +0100 |
commit | af5c776a285ddc929971634e852dd83bda1ece00 (patch) | |
tree | 00ba7f26a24ddec6806f399e0e730939407e29a1 /meta/conf/machine | |
parent | ed87f71d155b79ec1ae9e4ba575da4c362772640 (diff) | |
download | poky-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/machine')
-rw-r--r-- | meta/conf/machine/include/qemu.inc | 2 |
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" | |||
19 | RDEPENDS_${KERNEL_PACKAGE_NAME}-base = "" | 19 | RDEPENDS_${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 |
22 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" | 22 | PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto" |
23 | 23 | ||
24 | EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native" | 24 | EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native" |
25 | 25 | ||