summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2025-01-09 08:47:32 -0800
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-01-09 17:34:41 +0000
commit47571ec37bddeb771719bd8434e72f4bab7a7260 (patch)
tree6006efe0f8ac1a8586028ba2b7ac94ab46da2b37
parent597bbe8463aae10d08ce00e8b8721b3fee132f34 (diff)
downloadmeta-freescale-47571ec37bddeb771719bd8434e72f4bab7a7260.tar.gz
glmark: Simplify logic for DRM config
Since i.MX 8, DRM is supported by default by the i.MX GPU. Simplify the DRM config logic by reversing the default, making it clear that it is i.MX 6 and 7 that do not support DRM. Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> (cherry picked from commit 9a76d3abd790064f53c373426709cfe53aaef2f7)
-rw-r--r--dynamic-layers/openembedded-layer/recipes-benchmark/glmark2/glmark2_%.bbappend8
1 files changed, 4 insertions, 4 deletions
diff --git a/dynamic-layers/openembedded-layer/recipes-benchmark/glmark2/glmark2_%.bbappend b/dynamic-layers/openembedded-layer/recipes-benchmark/glmark2/glmark2_%.bbappend
index a5d3c2e2..dfedc062 100644
--- a/dynamic-layers/openembedded-layer/recipes-benchmark/glmark2/glmark2_%.bbappend
+++ b/dynamic-layers/openembedded-layer/recipes-benchmark/glmark2/glmark2_%.bbappend
@@ -1,5 +1,5 @@
1# Only _mx8 machine do provide virtual/libgbm required for any drm* flavour 1# 6 and 7 Vivante do not provide virtual/libgbm required for any drm* flavour
2DRM-REMOVE:imxgpu = "drm-gl drm-gles2" 2DRM-REMOVE = ""
3DRM-REMOVE:imxgpu:mx8-nxp-bsp = "" 3DRM-REMOVE:imxgpu:mx6-nxp-bsp = "drm-gl drm-gles2"
4DRM-REMOVE:imxgpu:mx95-nxp-bsp = "" 4DRM-REMOVE:imxgpu:mx7-nxp-bsp = "drm-gl drm-gles2"
5PACKAGECONFIG:remove = "${DRM-REMOVE}" 5PACKAGECONFIG:remove = "${DRM-REMOVE}"