summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Schulz <quentin.schulz@cherry.de>2025-09-04 16:03:36 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-09-11 11:31:56 +0100
commit63c7be5df785673b6749e95ce3e2b22fbeb9a558 (patch)
tree9f8b91ee9c3218544ead3840cd51b6025733ee01
parent1c8510c2427cf12e69e554ac1cbba8004abc3fda (diff)
downloadpoky-63c7be5df785673b6749e95ce3e2b22fbeb9a558.tar.gz
mesa-gl: make recipe target only
According to the introducing commit log[1] and Dmitry's recollection[2], the whole point of mesa-gl recipe is to provide GL library in case there are vendor-provided GLES libraries. Therefore, let's make this recipe target only by removing the BBCLASSEXTEND variable. No intended change in behavior for the target recipe. [1] https://git.yoctoproject.org/poky/commit/?id=015cb13a67c672de30f5384dab5ab4b8db305281 [2] https://lore.kernel.org/openembedded-core/5ebxxyvkcur3zpef5krvyizomgdgtls4qau7s2i2mgcmvs2loy@ilcud37qk6sn/ Suggested-by: Ross Burton <ross.burton@arm.com> Suggested-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Tested-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> (From OE-Core rev: 1796b2d2edcadf181795181ada48d1aa64e4da24) Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de> 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.bb3
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-gl.bb b/meta/recipes-graphics/mesa/mesa-gl.bb
index 7b283415dd..832137c818 100644
--- a/meta/recipes-graphics/mesa/mesa-gl.bb
+++ b/meta/recipes-graphics/mesa/mesa-gl.bb
@@ -12,6 +12,3 @@ PACKAGECONFIG = "opengl gallium ${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}
12PACKAGECONFIG:append:x86 = " libclc gallium-llvm intel amd nouveau svga" 12PACKAGECONFIG:append:x86 = " libclc gallium-llvm intel amd nouveau svga"
13PACKAGECONFIG:append:x86-64 = " libclc gallium-llvm intel amd nouveau svga" 13PACKAGECONFIG:append:x86-64 = " libclc gallium-llvm intel amd nouveau svga"
14PACKAGECONFIG:append:i686 = " libclc gallium-llvm intel amd nouveau svga" 14PACKAGECONFIG:append:i686 = " libclc gallium-llvm intel amd nouveau svga"
15PACKAGECONFIG:append:class-native = " libclc gallium-llvm amd nouveau svga"
16
17BBCLASSEXTEND = "native nativesdk"