* [PATCH 1/2] mesa: drop VDPAU remnants
@ 2026-01-15 3:24 Dmitry Baryshkov
2026-01-15 3:24 ` [PATCH 2/2] mesa: upgrade 25.3.1 -> 25.3.3 Dmitry Baryshkov
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Dmitry Baryshkov @ 2026-01-15 3:24 UTC (permalink / raw)
To: openembedded-core
Mesa 25.3.x dropped support for VDPAU. Commit 88e26a937549 ("mesa:
upgrade 25.2.5 -> 25.3.1") has dropped most of VDPAU-related items,
but it didn't drop mesa-vdpau-drivers package (nor did it drop VDPAU
bits from mesa-dev). Drop those remnants.
Fixes: 88e26a937549 ("mesa: upgrade 25.2.5 -> 25.3.1")
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
meta/recipes-graphics/mesa/mesa.inc | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc
index 2547f8a68f02..a82bfb613549 100644
--- a/meta/recipes-graphics/mesa/mesa.inc
+++ b/meta/recipes-graphics/mesa/mesa.inc
@@ -251,7 +251,7 @@ PACKAGES =+ "libegl-mesa libegl-mesa-dev \
libopencl-mesa \
libteflon \
mesa-megadriver mesa-vulkan-drivers \
- ${PN}-vdpau-drivers mesa-tools \
+ mesa-tools \
"
# For the packages that make up the OpenGL interfaces, inject variables so that
@@ -325,7 +325,6 @@ PACKAGES_DYNAMIC:class-native = "^mesa-driver-.*-native"
FILES:mesa-megadriver = "${libdir}/dri/* ${datadir}/drirc.d"
FILES:mesa-vulkan-drivers = "${libdir}/libvulkan_*.so ${libdir}/libpowervr_rogue.so ${datadir}/vulkan"
-FILES:${PN}-vdpau-drivers = "${libdir}/vdpau/*.so.*"
FILES:libegl-mesa = "${libdir}/libEGL*.so.* ${datadir}/glvnd/egl_vendor.d"
FILES:libgbm = "${libdir}/libgbm.so.* ${libdir}/gbm/*_gbm.so"
FILES:libgallium = "${libdir}/libgallium-*.so"
@@ -336,7 +335,7 @@ FILES:libglx-mesa = "${libdir}/libGLX*.so.*"
FILES:libopencl-mesa = "${libdir}/lib*OpenCL.so* ${sysconfdir}/OpenCL/vendors/*.icd"
FILES:libglapi = "${libdir}/libglapi.so.*"
-FILES:${PN}-dev = "${libdir}/pkgconfig/dri.pc ${includedir}/GL/internal/dri_interface.h ${includedir}/vulkan ${libdir}/vdpau/*.so"
+FILES:${PN}-dev = "${libdir}/pkgconfig/dri.pc ${includedir}/GL/internal/dri_interface.h ${includedir}/vulkan"
FILES:libegl-mesa-dev = "${libdir}/libEGL*.* ${includedir}/EGL ${includedir}/KHR ${libdir}/pkgconfig/egl.pc"
FILES:libgbm-dev = "${libdir}/libgbm.* ${libdir}/pkgconfig/gbm.pc ${includedir}/gbm.h ${includedir}/gbm_backend_abi.h"
FILES:libgl-mesa-dev = "${libdir}/libGL.* ${includedir}/GL/*.h ${libdir}/pkgconfig/gl.pc ${libdir}/pkgconfig/glx.pc"
--
2.47.3
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH 2/2] mesa: upgrade 25.3.1 -> 25.3.3
2026-01-15 3:24 [PATCH 1/2] mesa: drop VDPAU remnants Dmitry Baryshkov
@ 2026-01-15 3:24 ` Dmitry Baryshkov
2026-01-15 14:34 ` [OE-core] " Quentin Schulz
2026-01-15 14:27 ` [OE-core] [PATCH 1/2] mesa: drop VDPAU remnants Quentin Schulz
2026-01-15 16:36 ` Antonin Godard
2 siblings, 1 reply; 6+ messages in thread
From: Dmitry Baryshkov @ 2026-01-15 3:24 UTC (permalink / raw)
To: openembedded-core
Upgrade Mesa to the latest stable release, picking up several fixes
(mostly anv, radv and pan/panvk/panfrost drivers).
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
meta/recipes-graphics/mesa/mesa.inc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc
index a82bfb613549..1607fddd4bad 100644
--- a/meta/recipes-graphics/mesa/mesa.inc
+++ b/meta/recipes-graphics/mesa/mesa.inc
@@ -22,8 +22,8 @@ SRC_URI = "https://archive.mesa3d.org/mesa-${PV}.tar.xz \
file://0002-rocket-drop-file-names-from-the-generated-file.patch \
"
-SRC_URI[sha256sum] = "059d0d985622f49588f01aa29152804f4da8ffe6add046e00a52923379c2d8da"
-PV = "25.3.1"
+SRC_URI[sha256sum] = "05328b3891c000e6a110a3e7321d8bfbb21631d132bf86bd3d4a8f45c535ef6b"
+PV = "25.3.3"
UPSTREAM_CHECK_GITTAGREGEX = "mesa-(?P<pver>\d+(\.\d+)+)"
--
2.47.3
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [OE-core] [PATCH 1/2] mesa: drop VDPAU remnants
2026-01-15 3:24 [PATCH 1/2] mesa: drop VDPAU remnants Dmitry Baryshkov
2026-01-15 3:24 ` [PATCH 2/2] mesa: upgrade 25.3.1 -> 25.3.3 Dmitry Baryshkov
@ 2026-01-15 14:27 ` Quentin Schulz
2026-01-15 16:36 ` Antonin Godard
2 siblings, 0 replies; 6+ messages in thread
From: Quentin Schulz @ 2026-01-15 14:27 UTC (permalink / raw)
To: dmitry.baryshkov, openembedded-core
Hi Dmitry,
On 1/15/26 4:24 AM, Dmitry Baryshkov via lists.openembedded.org wrote:
> Mesa 25.3.x dropped support for VDPAU. Commit 88e26a937549 ("mesa:
> upgrade 25.2.5 -> 25.3.1") has dropped most of VDPAU-related items,
> but it didn't drop mesa-vdpau-drivers package (nor did it drop VDPAU
> bits from mesa-dev). Drop those remnants.
>
> Fixes: 88e26a937549 ("mesa: upgrade 25.2.5 -> 25.3.1")
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Thanks!
Quentin
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [OE-core] [PATCH 1/2] mesa: drop VDPAU remnants
2026-01-15 3:24 [PATCH 1/2] mesa: drop VDPAU remnants Dmitry Baryshkov
2026-01-15 3:24 ` [PATCH 2/2] mesa: upgrade 25.3.1 -> 25.3.3 Dmitry Baryshkov
2026-01-15 14:27 ` [OE-core] [PATCH 1/2] mesa: drop VDPAU remnants Quentin Schulz
@ 2026-01-15 16:36 ` Antonin Godard
2026-01-15 19:06 ` Dmitry Baryshkov
2 siblings, 1 reply; 6+ messages in thread
From: Antonin Godard @ 2026-01-15 16:36 UTC (permalink / raw)
To: dmitry.baryshkov, openembedded-core
Hi,
On Thu Jan 15, 2026 at 4:24 AM CET, Dmitry Baryshkov via lists.openembedded.org wrote:
> Mesa 25.3.x dropped support for VDPAU. Commit 88e26a937549 ("mesa:
> upgrade 25.2.5 -> 25.3.1") has dropped most of VDPAU-related items,
> but it didn't drop mesa-vdpau-drivers package (nor did it drop VDPAU
> bits from mesa-dev). Drop those remnants.
>
> Fixes: 88e26a937549 ("mesa: upgrade 25.2.5 -> 25.3.1")
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
> ---
> meta/recipes-graphics/mesa/mesa.inc | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc
> index 2547f8a68f02..a82bfb613549 100644
> --- a/meta/recipes-graphics/mesa/mesa.inc
> +++ b/meta/recipes-graphics/mesa/mesa.inc
> @@ -251,7 +251,7 @@ PACKAGES =+ "libegl-mesa libegl-mesa-dev \
> libopencl-mesa \
> libteflon \
> mesa-megadriver mesa-vulkan-drivers \
> - ${PN}-vdpau-drivers mesa-tools \
I think this was based on master-next which used to contain
https://lore.kernel.org/r/20260109123232.1199822-3-joaomarcos.costa@bootlin.com
?
But this patch was dropped after review.
Can you re-send this series based off master? I can't apply your patch at the
moment.
Thanks,
Antonin
--
Antonin Godard, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [OE-core] [PATCH 1/2] mesa: drop VDPAU remnants
2026-01-15 16:36 ` Antonin Godard
@ 2026-01-15 19:06 ` Dmitry Baryshkov
0 siblings, 0 replies; 6+ messages in thread
From: Dmitry Baryshkov @ 2026-01-15 19:06 UTC (permalink / raw)
To: Antonin Godard; +Cc: openembedded-core
On Thu, 15 Jan 2026 at 18:36, Antonin Godard <antonin.godard@bootlin.com> wrote:
>
> Hi,
>
> On Thu Jan 15, 2026 at 4:24 AM CET, Dmitry Baryshkov via lists.openembedded.org wrote:
> > Mesa 25.3.x dropped support for VDPAU. Commit 88e26a937549 ("mesa:
> > upgrade 25.2.5 -> 25.3.1") has dropped most of VDPAU-related items,
> > but it didn't drop mesa-vdpau-drivers package (nor did it drop VDPAU
> > bits from mesa-dev). Drop those remnants.
> >
> > Fixes: 88e26a937549 ("mesa: upgrade 25.2.5 -> 25.3.1")
> > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
> > ---
> > meta/recipes-graphics/mesa/mesa.inc | 5 ++---
> > 1 file changed, 2 insertions(+), 3 deletions(-)
> >
> > diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc
> > index 2547f8a68f02..a82bfb613549 100644
> > --- a/meta/recipes-graphics/mesa/mesa.inc
> > +++ b/meta/recipes-graphics/mesa/mesa.inc
> > @@ -251,7 +251,7 @@ PACKAGES =+ "libegl-mesa libegl-mesa-dev \
> > libopencl-mesa \
> > libteflon \
> > mesa-megadriver mesa-vulkan-drivers \
> > - ${PN}-vdpau-drivers mesa-tools \
>
> I think this was based on master-next which used to contain
> https://lore.kernel.org/r/20260109123232.1199822-3-joaomarcos.costa@bootlin.com
> ?
>
> But this patch was dropped after review.
Ugh, I still can't get myself used to patch reviews, which don't end
up with the master-next changes.
> Can you re-send this series based off master? I can't apply your patch at the
> moment.
Sure, I will!
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-01-15 19:06 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-15 3:24 [PATCH 1/2] mesa: drop VDPAU remnants Dmitry Baryshkov
2026-01-15 3:24 ` [PATCH 2/2] mesa: upgrade 25.3.1 -> 25.3.3 Dmitry Baryshkov
2026-01-15 14:34 ` [OE-core] " Quentin Schulz
2026-01-15 14:27 ` [OE-core] [PATCH 1/2] mesa: drop VDPAU remnants Quentin Schulz
2026-01-15 16:36 ` Antonin Godard
2026-01-15 19:06 ` Dmitry Baryshkov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox