[Buildroot] [PATCH v1 1/2] package/mesa3d: add config option for DRI3 support

Michael Taubert info at arachnodroid.de
Sun Dec 19 07:22:31 UTC 2021


Hi!

Got back to this topic this morning.

According to this line for V3D/VC4:

select BR2_PACKAGE_MESA3D_DRI3 if BR2_PACKAGE_XORG7

Mesa3D will be built with DRI3 support only if xorg is going to be used
too. Though I'm actually using xorg, and can confirm that is compiling
properly with X, I may have a switch to wayland anytime soon. Is xorg
really required?

I must admit that the build did not complete, due to an error with
libnss. So it's just what I got from the build logs.

Regards,
Michael

p.s. Thunderbird caused a mess with the last mail, somehow. Sorry.

Am 12/19/21 um 8:14 AM schrieb Michael Taubert:
> Hi!
> 
> Got back to this topic this morning.
> 
> According to this line:
> 
> select BR2_PACKAGE_MESA3D_DRI3 if BR2_PACKAGE_XORG7
> 
> Mesa3D will be built with DRI3 support only if xorg is going to be used 
> too. Though I'm actually using xorg, and can confirm that is compiling 
> properly with X, I may have a switch to wayland anytime soon. Is xorg 
> really required?
> 
> I must admit that it
> 
> Regards,
> Michael
> 
> Am 12/17/21 um 10:00 PM schrieb Arnout Vandecappelle:
>>
>>
>> On 13/06/2021 00:30, Peter Seiderer wrote:
>>> Add config option for DRI3 support and use it instead
>>> of DRI3 enable/disable logic in *.mk file.
>>>
>>> Signed-off-by: Peter Seiderer <ps.report at gmx.net>
>>
>>   As discussed in another thread, I applied a heavily modified version 
>> of both patches to master, thanks. Please try again if master works 
>> for you.
>>
>>   Regards,
>>   Arnout
>>
>>> ---
>>>   package/mesa3d/Config.in |  8 ++++++++
>>>   package/mesa3d/mesa3d.mk | 12 +++++++-----
>>>   2 files changed, 15 insertions(+), 5 deletions(-)
>>>
>>> diff --git a/package/mesa3d/Config.in b/package/mesa3d/Config.in
>>> index d1b3af2054..36acd9758c 100644
>>> --- a/package/mesa3d/Config.in
>>> +++ b/package/mesa3d/Config.in
>>> @@ -16,6 +16,11 @@ menuconfig BR2_PACKAGE_MESA3D
>>>   if BR2_PACKAGE_MESA3D
>>> +config BR2_PACKAGE_MESA3D_DRI3
>>> +    bool "Enable DRI3 support"
>>> +    help
>>> +      Enable DRI3 support.
>>> +
>>>   # Some Gallium driver needs libelf when built with LLVM support
>>>   config BR2_PACKAGE_MESA3D_NEEDS_ELFUTILS
>>>       bool
>>> @@ -65,6 +70,8 @@ config BR2_PACKAGE_MESA3D_DRI_DRIVER
>>>           !BR2_PACKAGE_MESA3D_OPENGL_GLX && \
>>>           !BR2_PACKAGE_MESA3D_OPENGL_EGL && \
>>>           !BR2_PACKAGE_MESA3D_OSMESA_GALLIUM
>>> +    select BR2_PACKAGE_MESA3D_DRI3 if \
>>> +        (BR2_PACKAGE_XORG7 && BR2_TOOLCHAIN_HAS_SYNC_4)
>>>       select BR2_PACKAGE_XLIB_LIBXSHMFENCE if \
>>>           (BR2_PACKAGE_XORG7 && BR2_TOOLCHAIN_HAS_SYNC_4)
>>> @@ -359,6 +366,7 @@ config BR2_PACKAGE_MESA3D_VULKAN_DRIVER_INTEL
>>>       depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17 # memfd.h
>>>       depends on BR2_TOOLCHAIN_USES_GLIBC # ifunc, static_assert
>>>       depends on BR2_PACKAGE_XORG7 # xorgproto
>>> +    select BR2_PACKAGE_MESA3D_DRI3
>>>       select BR2_PACKAGE_MESA3D_VULKAN_DRIVER
>>>       select BR2_PACKAGE_XORGPROTO
>>>       select BR2_PACKAGE_XLIB_LIBXSHMFENCE
>>> diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk
>>> index 5c5f8a33f3..da6e55bf93 100644
>>> --- a/package/mesa3d/mesa3d.mk
>>> +++ b/package/mesa3d/mesa3d.mk
>>> @@ -35,6 +35,12 @@ ifeq ($(BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM),y)
>>>   MESA3D_CONF_OPTS += -Db_asneeded=false
>>>   endif
>>> +ifeq ($(BR2_PACKAGE_MESA3D_DRI3),y)
>>> +MESA3D_CONF_OPTS += -Ddri3=enabled
>>> +else
>>> +MESA3D_CONF_OPTS += -Ddri3=disabled
>>> +endif
>>> +
>>>   ifeq ($(BR2_PACKAGE_MESA3D_LLVM),y)
>>>   MESA3D_DEPENDENCIES += host-llvm llvm
>>>   MESA3D_MESON_EXTRA_BINARIES += 
>>> llvm-config='$(STAGING_DIR)/usr/bin/llvm-config'
>>> @@ -122,13 +128,10 @@ endif
>>>   ifeq ($(BR2_PACKAGE_MESA3D_DRI_DRIVER),)
>>>   MESA3D_CONF_OPTS += \
>>> -    -Ddri-drivers= -Ddri3=disabled
>>> +    -Ddri-drivers=
>>>   else
>>>   ifeq ($(BR2_PACKAGE_XLIB_LIBXSHMFENCE),y)
>>>   MESA3D_DEPENDENCIES += xlib_libxshmfence
>>> -MESA3D_CONF_OPTS += -Ddri3=enabled
>>> -else
>>> -MESA3D_CONF_OPTS += -Ddri3=disabled
>>>   endif
>>>   MESA3D_CONF_OPTS += \
>>>       -Dshared-glapi=enabled \
>>> @@ -142,7 +145,6 @@ MESA3D_CONF_OPTS += \
>>>   else
>>>   MESA3D_DEPENDENCIES += xlib_libxshmfence
>>>   MESA3D_CONF_OPTS += \
>>> -    -Ddri3=enabled \
>>>       -Dvulkan-drivers=$(subst 
>>> $(space),$(comma),$(MESA3D_VULKAN_DRIVERS-y))
>>>   endif
>>>



More information about the buildroot mailing list