Adding to KERNEL_FEATURES causes the kernel tools to try to add the feature to all kernels, even custom kernels not using the yocto-kernel-cache. By moving it to KERNEL_FEATURES_INTEL_COMMON, it will only affect the kernels the layer supplies.
Signed-off-by: California Sullivan <[email protected]> --- conf/machine/include/qemu-intel.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/include/qemu-intel.inc b/conf/machine/include/qemu-intel.inc index 0487d40..8151040 100644 --- a/conf/machine/include/qemu-intel.inc +++ b/conf/machine/include/qemu-intel.inc @@ -9,7 +9,7 @@ EXTRA_IMAGEDEPENDS += "ovmf" # runqemu uses virtio, so we have to enable the corresponding # kernel drivers. -KERNEL_FEATURES += "cfg/virtio.scc" +KERNEL_FEATURES_INTEL_COMMON += "cfg/virtio.scc" # Other useful extensions which are not enabled by default: # rng-tools to take advantage of qemu's virtio-rng-pci device. -- 2.5.5 -- _______________________________________________ meta-intel mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-intel
