Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/mesa3d: DRI drivers need either glx, egl or gbm
@ 2021-07-20 17:29 Bernd Kuhls
  2021-07-20 18:25 ` Thomas Petazzoni
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Bernd Kuhls @ 2021-07-20 17:29 UTC (permalink / raw)
  To: buildroot

Fixes build error:
../output-1/build/mesa3d-21.1.5/meson.build:520:4:
 ERROR: Problem encountered: building dri drivers require at least one windowing system

OSMesa is not seen as a valid windowing system for DRI drivers anymore:
https://cgit.freedesktop.org/mesa/mesa/commit/meson.build?h=21.1&id=ee802372180a2b4460cc7abb53438e45c6b6f1e4

Fixes:
http://autobuild.buildroot.net/results/46e3a66ddc13a064e512aad0f3afd8655889ab9d/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/mesa3d/Config.in | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/package/mesa3d/Config.in b/package/mesa3d/Config.in
index d1b3af2054..41c90c49af 100644
--- a/package/mesa3d/Config.in
+++ b/package/mesa3d/Config.in
@@ -63,8 +63,7 @@ config BR2_PACKAGE_MESA3D_DRI_DRIVER
 	select BR2_PACKAGE_MESA3D_DRIVER
 	select BR2_PACKAGE_MESA3D_GBM if \
 		!BR2_PACKAGE_MESA3D_OPENGL_GLX && \
-		!BR2_PACKAGE_MESA3D_OPENGL_EGL && \
-		!BR2_PACKAGE_MESA3D_OSMESA_GALLIUM
+		!BR2_PACKAGE_MESA3D_OPENGL_EGL
 	select BR2_PACKAGE_XLIB_LIBXSHMFENCE if \
 		(BR2_PACKAGE_XORG7 && BR2_TOOLCHAIN_HAS_SYNC_4)
 
-- 
2.30.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/1] package/mesa3d: DRI drivers need either glx, egl or gbm
  2021-07-20 17:29 [Buildroot] [PATCH 1/1] package/mesa3d: DRI drivers need either glx, egl or gbm Bernd Kuhls
@ 2021-07-20 18:25 ` Thomas Petazzoni
       [not found] ` <20210720202545.74d835bd__29119.6025953226$1626805573$gmane$org@windsurf>
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2021-07-20 18:25 UTC (permalink / raw)
  To: buildroot

Hello Bernd,

On Tue, 20 Jul 2021 19:29:11 +0200
Bernd Kuhls <bernd.kuhls@t-online.de> wrote:

> Fixes build error:
> ../output-1/build/mesa3d-21.1.5/meson.build:520:4:
>  ERROR: Problem encountered: building dri drivers require at least one windowing system
> 
> OSMesa is not seen as a valid windowing system for DRI drivers anymore:
> https://cgit.freedesktop.org/mesa/mesa/commit/meson.build?h=21.1&id=ee802372180a2b4460cc7abb53438e45c6b6f1e4
> 
> Fixes:
> http://autobuild.buildroot.net/results/46e3a66ddc13a064e512aad0f3afd8655889ab9d/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/mesa3d/Config.in | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)

Thanks for the patch. I'm always a bit confused with all these mesa3d
possibilities. How does this patch fit with what you did in commit
15a2f9b819806d38a7d8172a20f80130b1d60e63, where
BR2_PACKAGE_MESA3D_OSMESA_CLASSIC was renamed
BR2_PACKAGE_MESA3D_OSMESA_GALLIUM ?

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/1] package/mesa3d: DRI drivers need either glx, egl or gbm
       [not found] ` <20210720202545.74d835bd__29119.6025953226$1626805573$gmane$org@windsurf>
@ 2021-07-20 18:53   ` Bernd Kuhls
  0 siblings, 0 replies; 5+ messages in thread
From: Bernd Kuhls @ 2021-07-20 18:53 UTC (permalink / raw)
  To: buildroot

Am Tue, 20 Jul 2021 20:25:45 +0200 schrieb Thomas Petazzoni:

> Thanks for the patch. I'm always a bit confused with all these mesa3d
> possibilities. How does this patch fit with what you did in commit
> 15a2f9b819806d38a7d8172a20f80130b1d60e63, where
> BR2_PACKAGE_MESA3D_OSMESA_CLASSIC was renamed
> BR2_PACKAGE_MESA3D_OSMESA_GALLIUM ?

Hi Thomas,

instead of renaming the option I should have removed that line in the 
first place.

Regards, Bernd

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/mesa3d: DRI drivers need either glx, egl or gbm
  2021-07-20 17:29 [Buildroot] [PATCH 1/1] package/mesa3d: DRI drivers need either glx, egl or gbm Bernd Kuhls
  2021-07-20 18:25 ` Thomas Petazzoni
       [not found] ` <20210720202545.74d835bd__29119.6025953226$1626805573$gmane$org@windsurf>
@ 2021-08-02 12:40 ` Arnout Vandecappelle
  2021-08-07 19:30 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2021-08-02 12:40 UTC (permalink / raw)
  To: Bernd Kuhls, buildroot; +Cc: Romain Naour



On 20/07/2021 19:29, Bernd Kuhls wrote:
> Fixes build error:
> ../output-1/build/mesa3d-21.1.5/meson.build:520:4:
>  ERROR: Problem encountered: building dri drivers require at least one windowing system
> 
> OSMesa is not seen as a valid windowing system for DRI drivers anymore:
> https://cgit.freedesktop.org/mesa/mesa/commit/meson.build?h=21.1&id=ee802372180a2b4460cc7abb53438e45c6b6f1e4
> 
> Fixes:
> http://autobuild.buildroot.net/results/46e3a66ddc13a064e512aad0f3afd8655889ab9d/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

 Applied to master, thanks.

 Regards,
 Arnout

> ---
>  package/mesa3d/Config.in | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/package/mesa3d/Config.in b/package/mesa3d/Config.in
> index d1b3af2054..41c90c49af 100644
> --- a/package/mesa3d/Config.in
> +++ b/package/mesa3d/Config.in
> @@ -63,8 +63,7 @@ config BR2_PACKAGE_MESA3D_DRI_DRIVER
>  	select BR2_PACKAGE_MESA3D_DRIVER
>  	select BR2_PACKAGE_MESA3D_GBM if \
>  		!BR2_PACKAGE_MESA3D_OPENGL_GLX && \
> -		!BR2_PACKAGE_MESA3D_OPENGL_EGL && \
> -		!BR2_PACKAGE_MESA3D_OSMESA_GALLIUM
> +		!BR2_PACKAGE_MESA3D_OPENGL_EGL
>  	select BR2_PACKAGE_XLIB_LIBXSHMFENCE if \
>  		(BR2_PACKAGE_XORG7 && BR2_TOOLCHAIN_HAS_SYNC_4)
>  
> 
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/mesa3d: DRI drivers need either glx, egl or gbm
  2021-07-20 17:29 [Buildroot] [PATCH 1/1] package/mesa3d: DRI drivers need either glx, egl or gbm Bernd Kuhls
                   ` (2 preceding siblings ...)
  2021-08-02 12:40 ` Arnout Vandecappelle
@ 2021-08-07 19:30 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-08-07 19:30 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: Romain Naour, buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Fixes build error:
 > ../output-1/build/mesa3d-21.1.5/meson.build:520:4:
 >  ERROR: Problem encountered: building dri drivers require at least one windowing system

 > OSMesa is not seen as a valid windowing system for DRI drivers anymore:
 > https://cgit.freedesktop.org/mesa/mesa/commit/meson.build?h=21.1&id=ee802372180a2b4460cc7abb53438e45c6b6f1e4

 > Fixes:
 > http://autobuild.buildroot.net/results/46e3a66ddc13a064e512aad0f3afd8655889ab9d/

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed to 2021.05.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-08-07 19:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-20 17:29 [Buildroot] [PATCH 1/1] package/mesa3d: DRI drivers need either glx, egl or gbm Bernd Kuhls
2021-07-20 18:25 ` Thomas Petazzoni
     [not found] ` <20210720202545.74d835bd__29119.6025953226$1626805573$gmane$org@windsurf>
2021-07-20 18:53   ` Bernd Kuhls
2021-08-02 12:40 ` Arnout Vandecappelle
2021-08-07 19:30 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox