diff options
Diffstat (limited to 'meta/recipes-graphics/images')
| -rw-r--r-- | meta/recipes-graphics/images/core-image-directfb.bb | 20 | ||||
| -rw-r--r-- | meta/recipes-graphics/images/core-image-weston.bb | 12 | ||||
| -rw-r--r-- | meta/recipes-graphics/images/core-image-x11.bb | 6 |
3 files changed, 16 insertions, 22 deletions
diff --git a/meta/recipes-graphics/images/core-image-directfb.bb b/meta/recipes-graphics/images/core-image-directfb.bb deleted file mode 100644 index 4f47185437..0000000000 --- a/meta/recipes-graphics/images/core-image-directfb.bb +++ /dev/null @@ -1,20 +0,0 @@ -LICENSE = "MIT" -PR="r0" - - -LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ - file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" - -inherit core-image - -IMAGE_INSTALL += "\ - ${CORE_IMAGE_BASE_INSTALL} \ - packagegroup-core-basic \ - packagegroup-core-directfb \ -" - -python __anonymous () { - packages = d.getVar('DISTRO_FEATURES', True).split() - if "x11" in packages: - raise bb.parse.SkipPackage("FEATURE \"x11\" is in DISTRO_FEATURES, Please remove \"x11\" from DISTRO_FEATURES, use \"directfb\" instead of it\n") -} diff --git a/meta/recipes-graphics/images/core-image-weston.bb b/meta/recipes-graphics/images/core-image-weston.bb new file mode 100644 index 0000000000..e36655ffc5 --- /dev/null +++ b/meta/recipes-graphics/images/core-image-weston.bb @@ -0,0 +1,12 @@ +SUMMARY = "A very basic Wayland image with a terminal" + +IMAGE_FEATURES += "splash package-management ssh-server-dropbear hwcodecs" + +LICENSE = "MIT" + +inherit core-image distro_features_check + +REQUIRED_DISTRO_FEATURES = "wayland" + +CORE_IMAGE_BASE_INSTALL += "weston weston-init weston-examples gtk+3-demo clutter-1.0-examples" +CORE_IMAGE_BASE_INSTALL += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'weston-xwayland matchbox-terminal', '', d)}" diff --git a/meta/recipes-graphics/images/core-image-x11.bb b/meta/recipes-graphics/images/core-image-x11.bb index 64dc053f37..8455bb8cae 100644 --- a/meta/recipes-graphics/images/core-image-x11.bb +++ b/meta/recipes-graphics/images/core-image-x11.bb @@ -1,7 +1,9 @@ -DESCRIPTION = "A very basic X11 image with a terminal" +SUMMARY = "A very basic X11 image with a terminal" IMAGE_FEATURES += "splash package-management x11-base" LICENSE = "MIT" -inherit core-image +inherit core-image distro_features_check + +REQUIRED_DISTRO_FEATURES = "x11" |
