diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-05-27 08:39:56 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-05-29 15:14:37 +0100 |
commit | 9063a4a13fb5565c9fac2942f3104bcbc54460b9 (patch) | |
tree | c68a20c184e79e0d7cd46e50827c93d5de7b57e5 | |
parent | efeb3c71c0ae32007987eae67418898fe937c814 (diff) | |
download | poky-9063a4a13fb5565c9fac2942f3104bcbc54460b9.tar.gz |
mesa-gl: Remove osmesa dependency
osmesa has been removed from recently upgrade mesa recipes
remove it from the fallback for non-x11 systems
(From OE-Core rev: 7ee8e99a52044e18cd35bde8d280274ce44e26d4)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-gl.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-gl.bb b/meta/recipes-graphics/mesa/mesa-gl.bb index ca160f1bfc..680fda1be5 100644 --- a/meta/recipes-graphics/mesa/mesa-gl.bb +++ b/meta/recipes-graphics/mesa/mesa-gl.bb | |||
@@ -10,6 +10,6 @@ TARGET_CFLAGS = "-I${STAGING_INCDIR}/drm" | |||
10 | 10 | ||
11 | # At least one DRI rendering engine is required to build mesa. | 11 | # At least one DRI rendering engine is required to build mesa. |
12 | # When no X11 is available, use osmesa for the rendering engine. | 12 | # When no X11 is available, use osmesa for the rendering engine. |
13 | PACKAGECONFIG ??= "opengl gallium ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', 'osmesa', d)}" | 13 | PACKAGECONFIG ??= "opengl gallium ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" |
14 | PACKAGECONFIG:class-target = "opengl gallium ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', 'osmesa', d)}" | 14 | PACKAGECONFIG:class-target = "opengl gallium ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" |
15 | 15 | ||