All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 01/17] argus: add comment mmu depends
@ 2014-08-04 13:20 Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 02/17] bluez5_utils: " Gustavo Zacarias
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/argus/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/argus/Config.in b/package/argus/Config.in
index fe28c77..6d47734 100644
--- a/package/argus/Config.in
+++ b/package/argus/Config.in
@@ -12,3 +12,4 @@ config BR2_PACKAGE_ARGUS
 
 comment "argus needs a toolchain w/ threads, IPv6"
 	depends on !(BR2_TOOLCHAIN_HAS_THREADS && BR2_INET_IPV6)
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 02/17] bluez5_utils: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 03/17] fio: " Gustavo Zacarias
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/bluez5_utils/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/bluez5_utils/Config.in b/package/bluez5_utils/Config.in
index 9152093..10588db 100644
--- a/package/bluez5_utils/Config.in
+++ b/package/bluez5_utils/Config.in
@@ -64,6 +64,7 @@ endif
 comment "bluez5-utils needs a toolchain w/ wchar, threads, IPv6, headers >= 3.4"
 	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
 		!BR2_INET_IPV6 || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
+	depends on BR2_USE_MMU
 
 comment "bluez5-utils conflicts with older bluez-utils version"
 	depends on BR2_PACKAGE_BLUEZ_UTILS
-- 
1.8.5.5

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

* [Buildroot] [PATCH 03/17] fio: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 02/17] bluez5_utils: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 04/17] gpm: " Gustavo Zacarias
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/fio/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/fio/Config.in b/package/fio/Config.in
index 6c1b6cb..8cbbf6c 100644
--- a/package/fio/Config.in
+++ b/package/fio/Config.in
@@ -23,3 +23,4 @@ config BR2_PACKAGE_FIO
 comment "fio needs a toolchain w/ largefile, threads"
 	depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
 	depends on !BR2_nios2
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 04/17] gpm: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 02/17] bluez5_utils: " Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 03/17] fio: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 05/17] inadyn: " Gustavo Zacarias
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/gpm/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/gpm/Config.in b/package/gpm/Config.in
index 0a60f6a..0148c13 100644
--- a/package/gpm/Config.in
+++ b/package/gpm/Config.in
@@ -23,3 +23,4 @@ endif
 
 comment "gpm mouse server needs a toolchain w/ dynamic library"
 	depends on BR2_PREFER_STATIC_LIB
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 05/17] inadyn: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (2 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 04/17] gpm: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 06/17] libgail: " Gustavo Zacarias
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/inadyn/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/inadyn/Config.in b/package/inadyn/Config.in
index a436111..c1f7a77 100644
--- a/package/inadyn/Config.in
+++ b/package/inadyn/Config.in
@@ -11,3 +11,4 @@ config BR2_PACKAGE_INADYN
 
 comment "inadyn needs a toolchain w/ dynamic library"
         depends on BR2_PREFER_STATIC_LIB
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 06/17] libgail: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (3 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 05/17] inadyn: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 07/17] libxmlpp: " Gustavo Zacarias
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libgail/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/libgail/Config.in b/package/libgail/Config.in
index e997532..512f228 100644
--- a/package/libgail/Config.in
+++ b/package/libgail/Config.in
@@ -23,3 +23,4 @@ config BR2_PACKAGE_LIBGAIL
 comment "libgail needs a toolchain w/ wchar, threads"
 	depends on BR2_PACKAGE_LIBGTK2
 	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 07/17] libxmlpp: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (4 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 06/17] libgail: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 08/17] linux-zigbee: " Gustavo Zacarias
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libxmlpp/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/libxmlpp/Config.in b/package/libxmlpp/Config.in
index 69bd220..cb5f3c0 100644
--- a/package/libxmlpp/Config.in
+++ b/package/libxmlpp/Config.in
@@ -14,3 +14,4 @@ config BR2_PACKAGE_LIBXMLPP
 comment "libxml++ needs a toolchain w/ C++, wchar, threads"
 	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
 	!BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 08/17] linux-zigbee: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (5 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 07/17] libxmlpp: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 09/17] modem-manager: " Gustavo Zacarias
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/linux-zigbee/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/linux-zigbee/Config.in b/package/linux-zigbee/Config.in
index 555e859..fc21faa 100644
--- a/package/linux-zigbee/Config.in
+++ b/package/linux-zigbee/Config.in
@@ -1,5 +1,6 @@
 comment "linux-zigbee needs a toolchain w/ threads"
 	depends on !BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_USE_MMU
 
 config BR2_PACKAGE_LINUX_ZIGBEE
 	bool "linux-zigbee"
-- 
1.8.5.5

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

* [Buildroot] [PATCH 09/17] modem-manager: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (6 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 08/17] linux-zigbee: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 10/17] mtools: " Gustavo Zacarias
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/modem-manager/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/modem-manager/Config.in b/package/modem-manager/Config.in
index fe60850..7768f1f 100644
--- a/package/modem-manager/Config.in
+++ b/package/modem-manager/Config.in
@@ -32,3 +32,4 @@ endif
 comment "modemmanager needs udev /dev management and a toolchain w/ largefile, wchar, threads, IPv6"
 	depends on !BR2_INET_IPV6 || !BR2_LARGEFILE || !BR2_USE_WCHAR || \
 		!BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_HAS_UDEV
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 10/17] mtools: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (7 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 09/17] modem-manager: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 11/17] samba4: " Gustavo Zacarias
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/mtools/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/mtools/Config.in b/package/mtools/Config.in
index 5865223..e51bac1 100644
--- a/package/mtools/Config.in
+++ b/package/mtools/Config.in
@@ -12,3 +12,4 @@ config BR2_PACKAGE_MTOOLS
 
 comment "mtools needs a toolchain w/ wchar"
 	depends on !BR2_USE_WCHAR
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 11/17] samba4: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (8 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 10/17] mtools: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 12/17] sispmctl: " Gustavo Zacarias
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/samba4/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/samba4/Config.in b/package/samba4/Config.in
index 7008ba2..60e0f55 100644
--- a/package/samba4/Config.in
+++ b/package/samba4/Config.in
@@ -22,3 +22,4 @@ config BR2_PACKAGE_SAMBA4
 comment "samba4 needs a toolchain w/ IPv6, wchar, largfile, threads"
 	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_LARGEFILE || \
 		!BR2_USE_WCHAR || !BR2_INET_IPV6
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 12/17] sispmctl: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (9 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 11/17] samba4: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 13/17] smstools3: " Gustavo Zacarias
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/sispmctl/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/sispmctl/Config.in b/package/sispmctl/Config.in
index 8070802..3b8f60e 100644
--- a/package/sispmctl/Config.in
+++ b/package/sispmctl/Config.in
@@ -15,3 +15,4 @@ config BR2_PACKAGE_SISPMCTL
 
 comment "sispmctl needs a toolchain w/ threads, wchar"
 	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 13/17] smstools3: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (10 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 12/17] sispmctl: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 14/17] squashfs: " Gustavo Zacarias
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/smstools3/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/smstools3/Config.in b/package/smstools3/Config.in
index 1086869..3e2ea25 100644
--- a/package/smstools3/Config.in
+++ b/package/smstools3/Config.in
@@ -23,3 +23,4 @@ endif
 
 comment "smstools3 needs a toolchain w/ wchar, threads"
 	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 14/17] squashfs: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (11 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 13/17] smstools3: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 15/17] trace-cmd: " Gustavo Zacarias
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/squashfs/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/squashfs/Config.in b/package/squashfs/Config.in
index 79ebf57..6dd65e3 100644
--- a/package/squashfs/Config.in
+++ b/package/squashfs/Config.in
@@ -46,3 +46,4 @@ endif
 
 comment "squashfs needs a toolchain w/ largefile, threads"
 	depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 15/17] trace-cmd: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (12 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 14/17] squashfs: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 16/17] webkit: " Gustavo Zacarias
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/trace-cmd/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/trace-cmd/Config.in b/package/trace-cmd/Config.in
index 9d454e4..baa4868 100644
--- a/package/trace-cmd/Config.in
+++ b/package/trace-cmd/Config.in
@@ -16,3 +16,4 @@ config BR2_PACKAGE_TRACE_CMD
 
 comment "trace-cmd needs a toolchain w/ largefile, threads"
 	depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 16/17] webkit: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (13 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 15/17] trace-cmd: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 13:20 ` [Buildroot] [PATCH 17/17] xbmc: " Gustavo Zacarias
  2014-08-04 16:31 ` [Buildroot] [PATCH 01/17] argus: " Thomas Petazzoni
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/webkit/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/webkit/Config.in b/package/webkit/Config.in
index c86eb94..b7f903c 100644
--- a/package/webkit/Config.in
+++ b/package/webkit/Config.in
@@ -45,3 +45,4 @@ comment "webkit needs libgtk2 and a toolchain w/ C++, wchar, threads"
 	depends on BR2_PACKAGE_WEBKIT_ARCH_SUPPORTS
 	depends on !BR2_PACKAGE_LIBGTK2 || !BR2_INSTALL_LIBSTDCPP || \
 		!BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_USE_MMU
-- 
1.8.5.5

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

* [Buildroot] [PATCH 17/17] xbmc: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (14 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 16/17] webkit: " Gustavo Zacarias
@ 2014-08-04 13:20 ` Gustavo Zacarias
  2014-08-04 16:31 ` [Buildroot] [PATCH 01/17] argus: " Thomas Petazzoni
  16 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 13:20 UTC (permalink / raw)
  To: buildroot

Otherwise it shows up indirectly when toolchain options aren't enough
and then vanishes when they are fulfilled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/xbmc/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/xbmc/Config.in b/package/xbmc/Config.in
index 6a00531..ebe0882 100644
--- a/package/xbmc/Config.in
+++ b/package/xbmc/Config.in
@@ -5,6 +5,7 @@ config BR2_PACKAGE_XBMC_ARCH_SUPPORTS
 comment "xbmc needs a toolchain w/ C++, IPv6, largefile, threads, wchar"
 	depends on BR2_PACKAGE_XBMC_ARCH_SUPPORTS
 	depends on !BR2_INET_IPV6 || !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
+	depends on BR2_USE_MMU
 
 config BR2_PACKAGE_XBMC_EGL_GLES
 	bool
-- 
1.8.5.5

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

* [Buildroot] [PATCH 01/17] argus: add comment mmu depends
  2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
                   ` (15 preceding siblings ...)
  2014-08-04 13:20 ` [Buildroot] [PATCH 17/17] xbmc: " Gustavo Zacarias
@ 2014-08-04 16:31 ` Thomas Petazzoni
  16 siblings, 0 replies; 18+ messages in thread
From: Thomas Petazzoni @ 2014-08-04 16:31 UTC (permalink / raw)
  To: buildroot

Dear Gustavo Zacarias,

On Mon,  4 Aug 2014 10:20:24 -0300, Gustavo Zacarias wrote:
> Otherwise it shows up indirectly when toolchain options aren't enough
> and then vanishes when they are fulfilled.
> 
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/argus/Config.in | 1 +
>  1 file changed, 1 insertion(+)

Series applied, as well as the e2tools fix.

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

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

end of thread, other threads:[~2014-08-04 16:31 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-04 13:20 [Buildroot] [PATCH 01/17] argus: add comment mmu depends Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 02/17] bluez5_utils: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 03/17] fio: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 04/17] gpm: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 05/17] inadyn: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 06/17] libgail: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 07/17] libxmlpp: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 08/17] linux-zigbee: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 09/17] modem-manager: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 10/17] mtools: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 11/17] samba4: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 12/17] sispmctl: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 13/17] smstools3: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 14/17] squashfs: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 15/17] trace-cmd: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 16/17] webkit: " Gustavo Zacarias
2014-08-04 13:20 ` [Buildroot] [PATCH 17/17] xbmc: " Gustavo Zacarias
2014-08-04 16:31 ` [Buildroot] [PATCH 01/17] argus: " Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.