Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/kyua: add atf reverse dependency
@ 2015-07-24 13:24 Romain Naour
  2015-07-25 21:38 ` Yann E. MORIN
  2015-07-26 13:21 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Romain Naour @ 2015-07-24 13:24 UTC (permalink / raw)
  To: buildroot

atf package depends on BR2_USE_MMU, therefore kyua must
also depend on it.

Fixes:
http://autobuild.buildroot.net/results/929/9290a39d9b77e5a57e59912ce3d901149e9d6c11/

Signed-off-by: Romain Naour <romain.naour@openwide.fr>
---
 package/kyua/Config.in | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/kyua/Config.in b/package/kyua/Config.in
index e1bcd48..4f887b0 100644
--- a/package/kyua/Config.in
+++ b/package/kyua/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_KYUA
 	depends on BR2_INSTALL_LIBSTDCPP
 	depends on BR2_PACKAGE_HAS_LUAINTERPRETER # lutok
 	depends on !BR2_PACKAGE_LUAJIT # lutok
+	depends on BR2_USE_MMU # atf
 	select BR2_PACKAGE_ATF
 	select BR2_PACKAGE_LUTOK
 	select BR2_PACKAGE_SQLITE
@@ -18,3 +19,4 @@ config BR2_PACKAGE_KYUA
 comment "kyua needs a toolchain w/ C++ and full Lua"
 	depends on !BR2_INSTALL_LIBSTDCPP || BR2_PACKAGE_LUAJIT
 	depends on BR2_PACKAGE_HAS_LUAINTERPRETER
+	depends on BR2_USE_MMU
-- 
2.4.3

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

* [Buildroot] [PATCH] package/kyua: add atf reverse dependency
  2015-07-24 13:24 [Buildroot] [PATCH] package/kyua: add atf reverse dependency Romain Naour
@ 2015-07-25 21:38 ` Yann E. MORIN
  2015-07-26 13:21 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2015-07-25 21:38 UTC (permalink / raw)
  To: buildroot

Romain, all,

On 2015-07-24 15:24 +0200, Romain Naour spake thusly:
> atf package depends on BR2_USE_MMU, therefore kyua must
> also depend on it.
> 
> Fixes:
> http://autobuild.buildroot.net/results/929/9290a39d9b77e5a57e59912ce3d901149e9d6c11/
> 
> Signed-off-by: Romain Naour <romain.naour@openwide.fr>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/kyua/Config.in | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/kyua/Config.in b/package/kyua/Config.in
> index e1bcd48..4f887b0 100644
> --- a/package/kyua/Config.in
> +++ b/package/kyua/Config.in
> @@ -3,6 +3,7 @@ config BR2_PACKAGE_KYUA
>  	depends on BR2_INSTALL_LIBSTDCPP
>  	depends on BR2_PACKAGE_HAS_LUAINTERPRETER # lutok
>  	depends on !BR2_PACKAGE_LUAJIT # lutok
> +	depends on BR2_USE_MMU # atf
>  	select BR2_PACKAGE_ATF
>  	select BR2_PACKAGE_LUTOK
>  	select BR2_PACKAGE_SQLITE
> @@ -18,3 +19,4 @@ config BR2_PACKAGE_KYUA
>  comment "kyua needs a toolchain w/ C++ and full Lua"
>  	depends on !BR2_INSTALL_LIBSTDCPP || BR2_PACKAGE_LUAJIT
>  	depends on BR2_PACKAGE_HAS_LUAINTERPRETER
> +	depends on BR2_USE_MMU
> -- 
> 2.4.3
> 
> _______________________________________________
> 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 223 225 172 `------------.-------:  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] package/kyua: add atf reverse dependency
  2015-07-24 13:24 [Buildroot] [PATCH] package/kyua: add atf reverse dependency Romain Naour
  2015-07-25 21:38 ` Yann E. MORIN
@ 2015-07-26 13:21 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-07-26 13:21 UTC (permalink / raw)
  To: buildroot

Dear Romain Naour,

On Fri, 24 Jul 2015 15:24:32 +0200, Romain Naour wrote:
> atf package depends on BR2_USE_MMU, therefore kyua must
> also depend on it.
> 
> Fixes:
> http://autobuild.buildroot.net/results/929/9290a39d9b77e5a57e59912ce3d901149e9d6c11/
> 
> Signed-off-by: Romain Naour <romain.naour@openwide.fr>
> ---
>  package/kyua/Config.in | 2 ++
>  1 file changed, 2 insertions(+)

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2015-07-26 13:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-24 13:24 [Buildroot] [PATCH] package/kyua: add atf reverse dependency Romain Naour
2015-07-25 21:38 ` Yann E. MORIN
2015-07-26 13:21 ` Thomas Petazzoni

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