summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-fsl/packagegroups/packagegroup-fsl-tools-gpu.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes-fsl/packagegroups/packagegroup-fsl-tools-gpu.bb b/recipes-fsl/packagegroups/packagegroup-fsl-tools-gpu.bb
new file mode 100644
index 000000000..c7e820adb
--- /dev/null
+++ b/recipes-fsl/packagegroups/packagegroup-fsl-tools-gpu.bb
@@ -0,0 +1,32 @@
1# Copyright (C) 2012-2014, 2016 Freescale Semiconductor
2# Copyright (C) 2015, 2016 O.S. Systems Software LTDA.
3# Released under the MIT license (see COPYING.MIT for the terms)
4
5DESCRIPTION = "Package group used by FSL Community to add the packages which provide GPU support."
6SUMMARY = "FSL Community package group - tools/gpu"
7
8PACKAGE_ARCH = "${MACHINE_ARCH}"
9
10inherit packagegroup
11
12SOC_TOOLS_GPU = ""
13
14# i.MX6 SoloLite does not support apitrace because of its dependency on gles2.
15SOC_TOOLS_GPU:imxgpu2d = " \
16 ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', \
17 bb.utils.contains('DISTRO_FEATURES', 'x11', 'xserver-xorg-extension-viv-autohdmi', \
18 '', d), d)} \
19"
20
21SOC_TOOLS_GPU:append:imxgpu3d = " \
22 imx-gpu-apitrace \
23"
24
25SOC_TOOLS_GPU:append:imxgpu = " \
26 imx-gpu-sdk \
27 imx-gpu-viv-tools \
28"
29
30RDEPENDS:${PN} = " \
31 ${SOC_TOOLS_GPU} \
32"