summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBertrand Marquis <bertrand.marquis@arm.com>2022-04-22 17:18:50 +0100
committerBruce Ashfield <bruce.ashfield@gmail.com>2022-04-26 23:03:42 -0400
commit21a5c29a10f033859f6e44aa035161befa439128 (patch)
tree2ed63e02e2ddf42ed54f95ae4a40df34489f57e8
parentc21e22e8e6014babe3ad3c930ee37e17ef4787a1 (diff)
downloadmeta-virtualization-21a5c29a10f033859f6e44aa035161befa439128.tar.gz
xen: Add missing space in append to IMAGE_INSTALL
Add a space before doing an append in IMAGE_INSTALL on x86. This is solving issues happening if someone is using IMAGE_INSTALL in local.conf to add things to the generated image. Signed-off-by: Bertrand Marquis <bertrand.marquis@arm.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-extended/images/xen-image-minimal.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-extended/images/xen-image-minimal.bb b/recipes-extended/images/xen-image-minimal.bb
index f6fa5eda..3cf42300 100644
--- a/recipes-extended/images/xen-image-minimal.bb
+++ b/recipes-extended/images/xen-image-minimal.bb
@@ -21,8 +21,8 @@ IMAGE_INSTALL += " \
21do_build[depends] += "xen:do_deploy" 21do_build[depends] += "xen:do_deploy"
22 22
23# Networking for HVM-mode guests (x86/64 only) requires the tun kernel module 23# Networking for HVM-mode guests (x86/64 only) requires the tun kernel module
24IMAGE_INSTALL:append:x86 = "kernel-module-tun" 24IMAGE_INSTALL:append:x86 = " kernel-module-tun"
25IMAGE_INSTALL:append:x86-64 = "kernel-module-tun" 25IMAGE_INSTALL:append:x86-64 = " kernel-module-tun"
26 26
27# Linux kernel option CONFIG_XEN_PCIDEV_BACKEND depends on X86 27# Linux kernel option CONFIG_XEN_PCIDEV_BACKEND depends on X86
28XEN_PCIBACK_MODULE = "" 28XEN_PCIBACK_MODULE = ""