Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
require core-image-weston.bb
|
||||
|
||||
DESCRIPTION = "Image with Weston support that includes everything within \
|
||||
core-image-weston plus meta-toolchain, development headers and libraries to \
|
||||
form a standalone SDK."
|
||||
HOMEPAGE = "https://www.yoctoproject.org/"
|
||||
|
||||
IMAGE_FEATURES += "dev-pkgs tools-sdk \
|
||||
tools-debug eclipse-debug tools-profile tools-testapps debug-tweaks ssh-server-openssh"
|
||||
|
||||
IMAGE_INSTALL += "kernel-devsrc"
|
||||
|
||||
# Compiling stuff, specifically SystemTap probes, can require lots of memory
|
||||
# See https://bugzilla.yoctoproject.org/show_bug.cgi?id=14673
|
||||
QB_MEM = "-m 768"
|
||||
@@ -0,0 +1,12 @@
|
||||
SUMMARY = "A very basic Wayland image with a terminal"
|
||||
|
||||
IMAGE_FEATURES += "splash package-management ssh-server-dropbear hwcodecs weston"
|
||||
|
||||
LICENSE = "MIT"
|
||||
|
||||
inherit core-image
|
||||
|
||||
CORE_IMAGE_BASE_INSTALL += "gtk+3-demo"
|
||||
CORE_IMAGE_BASE_INSTALL += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'weston-xwayland matchbox-terminal', '', d)}"
|
||||
|
||||
QB_MEM = "-m 512"
|
||||
@@ -0,0 +1,11 @@
|
||||
SUMMARY = "A very basic X11 image with a terminal"
|
||||
|
||||
IMAGE_FEATURES += "splash package-management x11-base"
|
||||
|
||||
LICENSE = "MIT"
|
||||
|
||||
inherit core-image features_check
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "x11"
|
||||
|
||||
QB_MEM = '${@bb.utils.contains("DISTRO_FEATURES", "opengl", "-m 512", "-m 256", d)}'
|
||||
Reference in New Issue
Block a user