diff options
-rw-r--r-- | recipes-extended/images/xen-guest-image-minimal.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes-extended/images/xen-guest-image-minimal.bb b/recipes-extended/images/xen-guest-image-minimal.bb new file mode 100644 index 00000000..bcac4d79 --- /dev/null +++ b/recipes-extended/images/xen-guest-image-minimal.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | DESCRIPTION = "A Xen guest image." | ||
2 | |||
3 | inherit core-image | ||
4 | |||
5 | IMAGE_INSTALL += " \ | ||
6 | packagegroup-core-boot \ | ||
7 | kernel-module-xen-acpi-processor \ | ||
8 | " | ||
9 | |||
10 | IMAGE_INSTALL += "${@base_contains('DISTRO_FEATURES', 'x11', ' xf86-video-fbdev', '', d)}" | ||
11 | IMAGE_INSTALL += "${@base_contains('DISTRO_FEATURES', 'x11', ' xf86-video-vesa', '', d)}" | ||
12 | |||
13 | LICENSE = "MIT" | ||
14 | |||
15 | # Send console messages to xen console | ||
16 | APPEND += "console=hvc0" | ||