* [Buildroot] [PATCH v2 1/1] package/mesa3d: propagate missing libdrm-freedreno deps
@ 2020-05-26 20:24 James Hilliard
2020-05-26 20:44 ` Yann E. MORIN
2020-06-01 20:03 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: James Hilliard @ 2020-05-26 20:24 UTC (permalink / raw)
To: buildroot
Libdrm freedreno depends on BR2_arm || BR2_aarch64 || BR2_aarch64_be
as such we need to propagate those dependencies to mesa's gallium
freedreno driver.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
Changes v1 -> v2:
- add note about LIBDRM_HAS_ATOMIC dependency
---
package/mesa3d/Config.in | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/package/mesa3d/Config.in b/package/mesa3d/Config.in
index dd512d9b76..11d04b7a3f 100644
--- a/package/mesa3d/Config.in
+++ b/package/mesa3d/Config.in
@@ -111,6 +111,12 @@ config BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_ETNAVIV
config BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_FREEDRENO
bool "Gallium freedreno driver"
+ depends on BR2_arm || BR2_aarch64 || BR2_aarch64_be # libdrm-freedreno
+ # libdrm's freedreno option depends on LIBDRM_HAS_ATOMIC. Propagating
+ # that dependency here causes a circular dependency that Kconfig
+ # can't see is just spurious. However, that dependency is about
+ # the toolchain having sync4 primitives, which is always a given
+ # for arm/aarch64.
select BR2_PACKAGE_MESA3D_GALLIUM_DRIVER
select BR2_PACKAGE_LIBDRM_FREEDRENO
select BR2_PACKAGE_MESA3D_GALLIUM_KMSRO
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/mesa3d: propagate missing libdrm-freedreno deps
2020-05-26 20:24 [Buildroot] [PATCH v2 1/1] package/mesa3d: propagate missing libdrm-freedreno deps James Hilliard
@ 2020-05-26 20:44 ` Yann E. MORIN
2020-06-01 20:03 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2020-05-26 20:44 UTC (permalink / raw)
To: buildroot
James, All,
On 2020-05-26 14:24 -0600, James Hilliard spake thusly:
> Libdrm freedreno depends on BR2_arm || BR2_aarch64 || BR2_aarch64_be
> as such we need to propagate those dependencies to mesa's gallium
> freedreno driver.
>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> Changes v1 -> v2:
> - add note about LIBDRM_HAS_ATOMIC dependency
> ---
> package/mesa3d/Config.in | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/package/mesa3d/Config.in b/package/mesa3d/Config.in
> index dd512d9b76..11d04b7a3f 100644
> --- a/package/mesa3d/Config.in
> +++ b/package/mesa3d/Config.in
> @@ -111,6 +111,12 @@ config BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_ETNAVIV
>
> config BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_FREEDRENO
> bool "Gallium freedreno driver"
> + depends on BR2_arm || BR2_aarch64 || BR2_aarch64_be # libdrm-freedreno
> + # libdrm's freedreno option depends on LIBDRM_HAS_ATOMIC. Propagating
> + # that dependency here causes a circular dependency that Kconfig
> + # can't see is just spurious. However, that dependency is about
> + # the toolchain having sync4 primitives, which is always a given
> + # for arm/aarch64.
> select BR2_PACKAGE_MESA3D_GALLIUM_DRIVER
> select BR2_PACKAGE_LIBDRM_FREEDRENO
> select BR2_PACKAGE_MESA3D_GALLIUM_KMSRO
> --
> 2.25.1
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/mesa3d: propagate missing libdrm-freedreno deps
2020-05-26 20:24 [Buildroot] [PATCH v2 1/1] package/mesa3d: propagate missing libdrm-freedreno deps James Hilliard
2020-05-26 20:44 ` Yann E. MORIN
@ 2020-06-01 20:03 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2020-06-01 20:03 UTC (permalink / raw)
To: buildroot
>>>>> "James" == James Hilliard <james.hilliard1@gmail.com> writes:
> Libdrm freedreno depends on BR2_arm || BR2_aarch64 || BR2_aarch64_be
> as such we need to propagate those dependencies to mesa's gallium
> freedreno driver.
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
> Changes v1 -> v2:
> - add note about LIBDRM_HAS_ATOMIC dependency
Committed to 2020.02.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-06-01 20:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-26 20:24 [Buildroot] [PATCH v2 1/1] package/mesa3d: propagate missing libdrm-freedreno deps James Hilliard
2020-05-26 20:44 ` Yann E. MORIN
2020-06-01 20:03 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox