Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] DEVELOPERS: add missing Miquèl Raynal e-mail
@ 2022-04-12 13:27 Giulio Benetti
  2022-04-12 13:27 ` [Buildroot] [PATCH] package/mali-driver: fix build failure with archs different from aarch64 and arm Giulio Benetti
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Giulio Benetti @ 2022-04-12 13:27 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Miquèl Raynal

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 DEVELOPERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/DEVELOPERS b/DEVELOPERS
index d5035b3239..7a87cceaef 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2067,7 +2067,7 @@ F:	package/libfribidi/
 N:	Min Xu <xuminready@gmail.com>
 F:	package/shadowsocks-libev/
 
-N:	Miquèl Raynal
+N:	Miquèl Raynal <miquel.raynal@bootlin.com>
 F:	package/mali-driver/
 F:	package/rockchip-mali/
 
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH] package/mali-driver: fix build failure with archs different from aarch64 and arm
  2022-04-12 13:27 [Buildroot] [PATCH] DEVELOPERS: add missing Miquèl Raynal e-mail Giulio Benetti
@ 2022-04-12 13:27 ` Giulio Benetti
  2022-04-12 20:02   ` Yann E. MORIN
  2022-04-13  8:12   ` Peter Korsgaard
  2022-04-12 19:59 ` [Buildroot] [PATCH] DEVELOPERS: add missing Miquèl Raynal e-mail Yann E. MORIN
  2022-04-13  8:04 ` Peter Korsgaard
  2 siblings, 2 replies; 6+ messages in thread
From: Giulio Benetti @ 2022-04-12 13:27 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Miquèl Raynal

Actually this kernel module can be built by any architecture and this
leads to many failures. Sintce it's very unlikely that Mali will be part
of architectures other than aarch64 and arm let's depend on BR2_aarch64
and BR2_arm only.

Fixes:
http://autobuild.buildroot.net/results/f94885ef76865c3888d6cc52b35c93a742f92f3a

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 package/mali-driver/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/mali-driver/Config.in b/package/mali-driver/Config.in
index fee67096c8..4c1a96d05c 100644
--- a/package/mali-driver/Config.in
+++ b/package/mali-driver/Config.in
@@ -3,6 +3,7 @@ comment "mali-driver needs a Linux kernel to be built"
 
 config BR2_PACKAGE_MALI_DRIVER
 	bool "mali-driver"
+	depends on BR2_aarch64 || BR2_arm
 	depends on BR2_LINUX_KERNEL
 	help
 	  This package builds and installs the Linux kernel driver for
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot]  [PATCH] DEVELOPERS: add missing Miquèl Raynal e-mail
  2022-04-12 13:27 [Buildroot] [PATCH] DEVELOPERS: add missing Miquèl Raynal e-mail Giulio Benetti
  2022-04-12 13:27 ` [Buildroot] [PATCH] package/mali-driver: fix build failure with archs different from aarch64 and arm Giulio Benetti
@ 2022-04-12 19:59 ` Yann E. MORIN
  2022-04-13  8:04 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2022-04-12 19:59 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: Miquèl Raynal, buildroot

Giulio, All,

On 2022-04-12 15:27 +0200, Giulio Benetti spake thusly:
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  DEVELOPERS | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/DEVELOPERS b/DEVELOPERS
> index d5035b3239..7a87cceaef 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -2067,7 +2067,7 @@ F:	package/libfribidi/
>  N:	Min Xu <xuminready@gmail.com>
>  F:	package/shadowsocks-libev/
>  
> -N:	Miquèl Raynal
> +N:	Miquèl Raynal <miquel.raynal@bootlin.com>
>  F:	package/mali-driver/
>  F:	package/rockchip-mali/
>  
> -- 
> 2.25.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/mali-driver: fix build failure with archs different from aarch64 and arm
  2022-04-12 13:27 ` [Buildroot] [PATCH] package/mali-driver: fix build failure with archs different from aarch64 and arm Giulio Benetti
@ 2022-04-12 20:02   ` Yann E. MORIN
  2022-04-13  8:12   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2022-04-12 20:02 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: Miquèl Raynal, buildroot

Giulio, All,

On 2022-04-12 15:27 +0200, Giulio Benetti spake thusly:
> Actually this kernel module can be built by any architecture and this
> leads to many failures. Sintce it's very unlikely that Mali will be part
> of architectures other than aarch64 and arm let's depend on BR2_aarch64
> and BR2_arm only.
> 
> Fixes:
> http://autobuild.buildroot.net/results/f94885ef76865c3888d6cc52b35c93a742f92f3a
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>

Applied to master, after slightly rewording the commit log thanks.

Regards,
Yann E. MORIN.

> ---
>  package/mali-driver/Config.in | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/mali-driver/Config.in b/package/mali-driver/Config.in
> index fee67096c8..4c1a96d05c 100644
> --- a/package/mali-driver/Config.in
> +++ b/package/mali-driver/Config.in
> @@ -3,6 +3,7 @@ comment "mali-driver needs a Linux kernel to be built"
>  
>  config BR2_PACKAGE_MALI_DRIVER
>  	bool "mali-driver"
> +	depends on BR2_aarch64 || BR2_arm
>  	depends on BR2_LINUX_KERNEL
>  	help
>  	  This package builds and installs the Linux kernel driver for
> -- 
> 2.25.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot]  [PATCH] DEVELOPERS: add missing Miquèl Raynal e-mail
  2022-04-12 13:27 [Buildroot] [PATCH] DEVELOPERS: add missing Miquèl Raynal e-mail Giulio Benetti
  2022-04-12 13:27 ` [Buildroot] [PATCH] package/mali-driver: fix build failure with archs different from aarch64 and arm Giulio Benetti
  2022-04-12 19:59 ` [Buildroot] [PATCH] DEVELOPERS: add missing Miquèl Raynal e-mail Yann E. MORIN
@ 2022-04-13  8:04 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2022-04-13  8:04 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: Miquèl Raynal, buildroot

>>>>> "Giulio" == Giulio Benetti <giulio.benetti@benettiengineering.com> writes:

 > Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/mali-driver: fix build failure with archs different from aarch64 and arm
  2022-04-12 13:27 ` [Buildroot] [PATCH] package/mali-driver: fix build failure with archs different from aarch64 and arm Giulio Benetti
  2022-04-12 20:02   ` Yann E. MORIN
@ 2022-04-13  8:12   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2022-04-13  8:12 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: Miquèl Raynal, buildroot

>>>>> "Giulio" == Giulio Benetti <giulio.benetti@benettiengineering.com> writes:

 > Actually this kernel module can be built by any architecture and this
 > leads to many failures. Sintce it's very unlikely that Mali will be part
 > of architectures other than aarch64 and arm let's depend on BR2_aarch64
 > and BR2_arm only.

 > Fixes:
 > http://autobuild.buildroot.net/results/f94885ef76865c3888d6cc52b35c93a742f92f3a

 > Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-04-13  8:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-12 13:27 [Buildroot] [PATCH] DEVELOPERS: add missing Miquèl Raynal e-mail Giulio Benetti
2022-04-12 13:27 ` [Buildroot] [PATCH] package/mali-driver: fix build failure with archs different from aarch64 and arm Giulio Benetti
2022-04-12 20:02   ` Yann E. MORIN
2022-04-13  8:12   ` Peter Korsgaard
2022-04-12 19:59 ` [Buildroot] [PATCH] DEVELOPERS: add missing Miquèl Raynal e-mail Yann E. MORIN
2022-04-13  8:04 ` Peter Korsgaard

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