mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

We need the kvm distro feature to trigger the proper KERNEL_FEATURES and hence the proper kvm kernel module packages as listed in this image. We can avoid questions and issues by checking for the required distro feature in the image recipe. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
26 lines
426 B
BlitzBasic
26 lines
426 B
BlitzBasic
DESCRIPTION = "A minimal kvm image"
|
|
|
|
IMAGE_INSTALL = " \
|
|
packagegroup-core-boot \
|
|
qemu \
|
|
libvirt \
|
|
libvirt-libvirtd \
|
|
libvirt-virsh \
|
|
kernel-module-kvm \
|
|
kernel-module-kvm-intel \
|
|
kernel-module-kvm-amd \
|
|
"
|
|
|
|
inherit features_check
|
|
REQUIRED_DISTRO_FEATURES ?= "kvm"
|
|
|
|
IMAGE_FEATURES += "ssh-server-openssh"
|
|
|
|
IMAGE_LINGUAS = " "
|
|
|
|
LICENSE = "MIT"
|
|
|
|
inherit core-image
|
|
|
|
IMAGE_ROOTFS_SIZE = "8192"
|