diff options
author | Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> | 2025-05-22 20:13:30 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-05-27 09:01:17 +0100 |
commit | 1fba1283848d1150afc196c20b2cec2e1073f2c3 (patch) | |
tree | 3863cb1ff534b12990e409e00482ff90f2f4e37f | |
parent | 780670519eaa9ef70838611066f9f6aa16f17577 (diff) | |
download | poky-1fba1283848d1150afc196c20b2cec2e1073f2c3.tar.gz |
mesa: drop gallium-pipe support
With Clover being gone, there are no more separate gallium-pipe
libraries. Drop corresponding parts of the recipe.
(From OE-Core rev: b668f51f0384029892e8a87935c5fad26dd4e690)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.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.inc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc index a0ab5b21d5..d8b36bd536 100644 --- a/meta/recipes-graphics/mesa/mesa.inc +++ b/meta/recipes-graphics/mesa/mesa.inc | |||
@@ -316,9 +316,6 @@ python mesa_populate_packages() { | |||
316 | d.appendVar("RPROVIDES:%s" % lib_name, pkg_name) | 316 | d.appendVar("RPROVIDES:%s" % lib_name, pkg_name) |
317 | d.appendVar("RCONFLICTS:%s" % lib_name, pkg_name) | 317 | d.appendVar("RCONFLICTS:%s" % lib_name, pkg_name) |
318 | d.appendVar("RREPLACES:%s" % lib_name, pkg_name) | 318 | d.appendVar("RREPLACES:%s" % lib_name, pkg_name) |
319 | |||
320 | pipe_drivers_root = os.path.join(d.getVar('libdir'), "gallium-pipe") | ||
321 | do_split_packages(d, pipe_drivers_root, r'^pipe_(.*)\.so$', 'mesa-driver-pipe-%s', 'Mesa %s pipe driver', extra_depends='') | ||
322 | } | 319 | } |
323 | 320 | ||
324 | PACKAGESPLITFUNCS =+ "mesa_populate_packages" | 321 | PACKAGESPLITFUNCS =+ "mesa_populate_packages" |
@@ -336,7 +333,7 @@ FILES:libgles1-mesa = "${libdir}/libGLESv1*.so.*" | |||
336 | FILES:libgles2-mesa = "${libdir}/libGLESv2.so.*" | 333 | FILES:libgles2-mesa = "${libdir}/libGLESv2.so.*" |
337 | FILES:libgl-mesa = "${libdir}/libGL.so.*" | 334 | FILES:libgl-mesa = "${libdir}/libGL.so.*" |
338 | FILES:libglx-mesa = "${libdir}/libGLX*.so.*" | 335 | FILES:libglx-mesa = "${libdir}/libGLX*.so.*" |
339 | FILES:libopencl-mesa = "${libdir}/lib*OpenCL.so* ${libdir}/gallium-pipe/*.so ${sysconfdir}/OpenCL/vendors/*.icd" | 336 | FILES:libopencl-mesa = "${libdir}/lib*OpenCL.so* ${sysconfdir}/OpenCL/vendors/*.icd" |
340 | FILES:libglapi = "${libdir}/libglapi.so.*" | 337 | FILES:libglapi = "${libdir}/libglapi.so.*" |
341 | FILES:libxatracker = "${libdir}/libxatracker.so.*" | 338 | FILES:libxatracker = "${libdir}/libxatracker.so.*" |
342 | 339 | ||