summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/images
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/images')
-rw-r--r--meta/recipes-graphics/images/core-image-clutter.bb15
-rw-r--r--meta/recipes-graphics/images/core-image-weston-sdk.bb15
-rw-r--r--meta/recipes-graphics/images/core-image-weston.bb8
3 files changed, 18 insertions, 20 deletions
diff --git a/meta/recipes-graphics/images/core-image-clutter.bb b/meta/recipes-graphics/images/core-image-clutter.bb
deleted file mode 100644
index a594461022..0000000000
--- a/meta/recipes-graphics/images/core-image-clutter.bb
+++ /dev/null
@@ -1,15 +0,0 @@
1DESCRIPTION = "An image with support for the Open GL-based toolkit Clutter, \
2which enables development of rich and animated graphical user interfaces."
3
4IMAGE_FEATURES += "splash package-management x11-base x11-sato ssh-server-dropbear"
5
6LICENSE = "MIT"
7
8IMAGE_INSTALL = "\
9 ${CORE_IMAGE_BASE_INSTALL} \
10 packagegroup-core-clutter-core \
11 "
12
13inherit core-image
14
15QB_MEM = '${@bb.utils.contains("DISTRO_FEATURES", "opengl", "-m 512", "-m 256", d)}'
diff --git a/meta/recipes-graphics/images/core-image-weston-sdk.bb b/meta/recipes-graphics/images/core-image-weston-sdk.bb
new file mode 100644
index 0000000000..09e87b5b65
--- /dev/null
+++ b/meta/recipes-graphics/images/core-image-weston-sdk.bb
@@ -0,0 +1,15 @@
1require core-image-weston.bb
2
3DESCRIPTION = "Image with Weston support that includes everything within \
4core-image-weston plus meta-toolchain, development headers and libraries to \
5form a standalone SDK."
6HOMEPAGE = "https://www.yoctoproject.org/"
7
8IMAGE_FEATURES += "dev-pkgs tools-sdk \
9 tools-debug eclipse-debug tools-profile tools-testapps debug-tweaks ssh-server-openssh"
10
11IMAGE_INSTALL += "kernel-devsrc"
12
13# Compiling stuff, specifically SystemTap probes, can require lots of memory
14# See https://bugzilla.yoctoproject.org/show_bug.cgi?id=14673
15QB_MEM = "-m 768"
diff --git a/meta/recipes-graphics/images/core-image-weston.bb b/meta/recipes-graphics/images/core-image-weston.bb
index 8d88e3bc0c..62305cc1ce 100644
--- a/meta/recipes-graphics/images/core-image-weston.bb
+++ b/meta/recipes-graphics/images/core-image-weston.bb
@@ -1,14 +1,12 @@
1SUMMARY = "A very basic Wayland image with a terminal" 1SUMMARY = "A very basic Wayland image with a terminal"
2 2
3IMAGE_FEATURES += "splash package-management ssh-server-dropbear hwcodecs" 3IMAGE_FEATURES += "splash package-management ssh-server-dropbear hwcodecs weston"
4 4
5LICENSE = "MIT" 5LICENSE = "MIT"
6 6
7inherit core-image features_check 7inherit core-image
8 8
9REQUIRED_DISTRO_FEATURES = "wayland" 9CORE_IMAGE_BASE_INSTALL += "gtk+3-demo"
10
11CORE_IMAGE_BASE_INSTALL += "weston weston-init weston-examples wayland-utils gtk+3-demo clutter-1.0-examples"
12CORE_IMAGE_BASE_INSTALL += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'weston-xwayland matchbox-terminal', '', d)}" 10CORE_IMAGE_BASE_INSTALL += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'weston-xwayland matchbox-terminal', '', d)}"
13 11
14QB_MEM = "-m 512" 12QB_MEM = "-m 512"