diff options
-rw-r--r-- | recipes-extended/images/xen-image-minimal.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes-extended/images/xen-image-minimal.bb b/recipes-extended/images/xen-image-minimal.bb index 94240f69..a01976e7 100644 --- a/recipes-extended/images/xen-image-minimal.bb +++ b/recipes-extended/images/xen-image-minimal.bb | |||
@@ -10,12 +10,17 @@ IMAGE_INSTALL += " \ | |||
10 | kernel-module-xen-gntalloc \ | 10 | kernel-module-xen-gntalloc \ |
11 | kernel-module-xen-gntdev \ | 11 | kernel-module-xen-gntdev \ |
12 | kernel-module-xen-netback \ | 12 | kernel-module-xen-netback \ |
13 | ${@bb.utils.contains('MACHINE_FEATURES', 'pci', 'kernel-module-xen-pciback', '', d)} \ | ||
14 | kernel-module-xen-wdt \ | 13 | kernel-module-xen-wdt \ |
15 | xen-base \ | 14 | xen-base \ |
16 | qemu \ | 15 | qemu \ |
17 | " | 16 | " |
18 | 17 | ||
18 | # Linux kernel option CONFIG_XEN_PCIDEV_BACKEND depends on X86 | ||
19 | IMAGE_INSTALL_x86 += " \ | ||
20 | ${@bb.utils.contains('MACHINE_FEATURES', 'pci', 'kernel-module-xen-pciback', '', d)}" | ||
21 | IMAGE_INSTALL_x86-64 += " \ | ||
22 | ${@bb.utils.contains('MACHINE_FEATURES', 'pci', 'kernel-module-xen-pciback', '', d)}" | ||
23 | |||
19 | LICENSE = "MIT" | 24 | LICENSE = "MIT" |
20 | 25 | ||
21 | inherit core-image | 26 | inherit core-image |