diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2025-01-09 08:47:32 -0800 |
---|---|---|
committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-01-09 17:34:41 +0000 |
commit | 47571ec37bddeb771719bd8434e72f4bab7a7260 (patch) | |
tree | 6006efe0f8ac1a8586028ba2b7ac94ab46da2b37 | |
parent | 597bbe8463aae10d08ce00e8b8721b3fee132f34 (diff) | |
download | meta-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_%.bbappend | 8 |
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 |
2 | DRM-REMOVE:imxgpu = "drm-gl drm-gles2" | 2 | DRM-REMOVE = "" |
3 | DRM-REMOVE:imxgpu:mx8-nxp-bsp = "" | 3 | DRM-REMOVE:imxgpu:mx6-nxp-bsp = "drm-gl drm-gles2" |
4 | DRM-REMOVE:imxgpu:mx95-nxp-bsp = "" | 4 | DRM-REMOVE:imxgpu:mx7-nxp-bsp = "drm-gl drm-gles2" |
5 | PACKAGECONFIG:remove = "${DRM-REMOVE}" | 5 | PACKAGECONFIG:remove = "${DRM-REMOVE}" |