xen-image-minimal: add a build dependency on the xen hypervisor

The hypervisor may not be within the dom0 filesystem image itself,
so add a task dependency to ensure that it is deployable:
    do_build[depends] += "xen:do_deploy"

Signed-off-by: Christopher Clark <christopher.clark6@baesystems.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
This commit is contained in:
Christopher Clark 2020-02-25 16:16:04 -08:00 committed by Bruce Ashfield
parent e9b2d92954
commit 50669e428f

View File

@ -16,6 +16,10 @@ IMAGE_INSTALL += " \
qemu \ qemu \
" "
# The hypervisor may not be within the dom0 filesystem image but at least
# ensure that it is deployable:
do_build[depends] += "xen:do_deploy"
# Networking for HVM-mode guests (x86/64 only) requires the tun kernel module # Networking for HVM-mode guests (x86/64 only) requires the tun kernel module
IMAGE_INSTALL_append_x86 = "kernel-module-tun" IMAGE_INSTALL_append_x86 = "kernel-module-tun"
IMAGE_INSTALL_append_x86-64 = "kernel-module-tun" IMAGE_INSTALL_append_x86-64 = "kernel-module-tun"