diff options
author | Ross Burton <ross.burton@intel.com> | 2017-12-19 14:33:38 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-02 17:24:12 +0000 |
commit | a408236b6302273a5a45bcfe5eb3a8f2713ec3fa (patch) | |
tree | 991cda5263947219f98137bc937306a7dd590708 | |
parent | 6c8c899849d101fd1b86aad0b8eed05c7c785924 (diff) | |
download | openembedded-core-a408236b6302273a5a45bcfe5eb3a8f2713ec3fa.tar.gz openembedded-core-a408236b6302273a5a45bcfe5eb3a8f2713ec3fa.tar.bz2 openembedded-core-a408236b6302273a5a45bcfe5eb3a8f2713ec3fa.zip |
machine/include/qemu.inc: update RDEPENDS to match kernel naming
The kernel class now sets RDEPENDS_${KERNEL_PACKAGE_NAME}-base so this include
needs to do the same, otherwise bitbake emits a warning and the kernel isn't
removed.
Signed-off-by: Ross Burton <ross.burton@intel.com>
-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 25d8ec6216..aa332fecc2 100644 --- a/meta/conf/machine/include/qemu.inc +++ b/meta/conf/machine/include/qemu.inc @@ -16,7 +16,7 @@ MACHINEOVERRIDES =. "qemuall:" IMAGE_FSTYPES += "tar.bz2 ext4" # Don't include kernels in standard images -RDEPENDS_kernel-base = "" +RDEPENDS_${KERNEL_PACKAGE_NAME}-base = "" # Use a common kernel recipe for all QEMU machines PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" |