blob: ab7e92c37e55fca89e5645e267370bb90c19659c [file] [log] [blame]
Patrick Williamsd849ec72016-08-17 14:59:38 -05001DESCRIPTION = "A Xen guest image."
2
3inherit core-image
4
5IMAGE_INSTALL += " \
6 packagegroup-core-boot \
7 ${@bb.utils.contains('MACHINE_FEATURES', 'acpi', 'kernel-module-xen-acpi-processor', '', d)} \
8 "
9
Patrick Williamse69d2352017-02-23 20:56:04 -060010IMAGE_INSTALL += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', ' xf86-video-fbdev', '', d)}"
11IMAGE_INSTALL += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', ' xf86-video-vesa', '', d)}"
Patrick Williamsd849ec72016-08-17 14:59:38 -050012
13LICENSE = "MIT"
14
15# Send console messages to xen console
16APPEND += "console=hvc0"