diff options
| author | Otavio Salvador <otavio@ossystems.com.br> | 2026-06-14 02:04:01 -0300 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2026-06-14 02:04:01 -0300 |
| commit | 9bbf09ea35a1ef771d1657f3f54a6783f7721788 (patch) | |
| tree | 2946ec7ab302944a64e545ad5ae4947696bbbfee | |
| parent | ce4c3c38d3e1c1037b082d428673016f5c34e2c5 (diff) | |
| download | meta-freescale-9bbf09ea35a1ef771d1657f3f54a6783f7721788.tar.gz | |
fsl-image-machine-test: import from meta-freescale-distro
Move the recipe into meta-freescale as part of consolidating all
recipe content into a single layer. meta-freescale-distro is becoming a
thin backward-compatibility layer that only keeps the distro definitions
for the wrynose LTS lifetime and is no longer used for recipe development.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
| -rw-r--r-- | recipes-fsl/images/fsl-image-machine-test.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-fsl/images/fsl-image-machine-test.bb b/recipes-fsl/images/fsl-image-machine-test.bb new file mode 100644 index 000000000..c78828e6f --- /dev/null +++ b/recipes-fsl/images/fsl-image-machine-test.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | DESCRIPTION = "A console-only image that includes gstreamer packages, \ | ||
| 2 | Freescale's multimedia packages (VPU and GPU) when available, and \ | ||
| 3 | test and benchmark applications." | ||
| 4 | |||
| 5 | IMAGE_FEATURES += " \ | ||
| 6 | ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', \ | ||
| 7 | bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11-base', \ | ||
| 8 | '', d), d)} \ | ||
| 9 | debug-tweaks \ | ||
| 10 | tools-testapps \ | ||
| 11 | tools-profile \ | ||
| 12 | " | ||
| 13 | |||
| 14 | LICENSE = "MIT" | ||
| 15 | |||
| 16 | inherit core-image | ||
| 17 | |||
| 18 | CORE_IMAGE_EXTRA_INSTALL += " \ | ||
| 19 | packagegroup-fsl-gstreamer1.0 \ | ||
| 20 | packagegroup-fsl-gstreamer1.0-full \ | ||
| 21 | packagegroup-fsl-tools-gpu \ | ||
| 22 | packagegroup-fsl-tools-gpu-external \ | ||
| 23 | packagegroup-fsl-tools-testapps \ | ||
| 24 | packagegroup-fsl-tools-benchmark \ | ||
| 25 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', \ | ||
| 26 | 'firmwared', '', d)} \ | ||
| 27 | ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', \ | ||
| 28 | 'weston weston-init', '', d)} \ | ||
| 29 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11 wayland', \ | ||
| 30 | 'weston-xwayland xterm', '', d)} \ | ||
| 31 | " | ||
