Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] wpa_supplicant: bump to version 1.1
From: Peter Korsgaard @ 2012-12-05  8:41 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=32ed9ebca523347b3294cecfbe9053dbc5c5df9d
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 .../wpa_supplicant-openssl-1.0.1.patch             |   54 --------------------
 package/wpa_supplicant/wpa_supplicant.mk           |    2 +-
 2 files changed, 1 insertions(+), 55 deletions(-)

diff --git a/package/wpa_supplicant/wpa_supplicant-openssl-1.0.1.patch b/package/wpa_supplicant/wpa_supplicant-openssl-1.0.1.patch
deleted file mode 100644
index 2e110f4..0000000
--- a/package/wpa_supplicant/wpa_supplicant-openssl-1.0.1.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From e6e243d97795306aeb604948e7101f9f14e8b8ca Mon Sep 17 00:00:00 2001
-From: Jouni Malinen <j@w1.fi>
-Date: Fri, 17 Aug 2012 23:55:14 +0300
-Subject: [PATCH] Fix EAP-FAST with OpenSSL 1.0.1
-
-The mechanism to figure out key block size based on ssl->read_hash
-does not seem to work with OpenSSL 1.0.1, so add an alternative
-mechanism to figure out the NAC key size that seems to work at
-least with the current OpenSSL 1.0.1 releases.
-
-Signed-hostap: Jouni Malinen <j@w1.fi>
-intended-for: hostap-1
-(cherry picked from commit 7f996409e7e5aa0bb066257906e87ab3294d4fd0)
----
- src/crypto/tls_openssl.c |   14 +++++++++++++-
- 1 files changed, 13 insertions(+), 1 deletions(-)
-
-diff --git a/src/crypto/tls_openssl.c b/src/crypto/tls_openssl.c
-index 6380ce0..c4a76be 100644
---- a/src/crypto/tls_openssl.c
-+++ b/src/crypto/tls_openssl.c
-@@ -2785,6 +2785,7 @@ int tls_connection_get_keyblock_size(void *tls_ctx,
- {
- 	const EVP_CIPHER *c;
- 	const EVP_MD *h;
-+	int md_size;
- 
- 	if (conn == NULL || conn->ssl == NULL ||
- 	    conn->ssl->enc_read_ctx == NULL ||
-@@ -2798,9 +2799,20 @@ int tls_connection_get_keyblock_size(void *tls_ctx,
- #else
- 	h = conn->ssl->read_hash;
- #endif
-+	if (h)
-+		md_size = EVP_MD_size(h);
-+#if OPENSSL_VERSION_NUMBER >= 0x10000000L
-+	else if (conn->ssl->s3)
-+		md_size = conn->ssl->s3->tmp.new_mac_secret_size;
-+#endif
-+	else
-+		return -1;
- 
-+	wpa_printf(MSG_DEBUG, "OpenSSL: keyblock size: key_len=%d MD_size=%d "
-+		   "IV_len=%d", EVP_CIPHER_key_length(c), md_size,
-+		   EVP_CIPHER_iv_length(c));
- 	return 2 * (EVP_CIPHER_key_length(c) +
--		    EVP_MD_size(h) +
-+		    md_size +
- 		    EVP_CIPHER_iv_length(c));
- }
- 
--- 
-1.7.4-rc1
-
diff --git a/package/wpa_supplicant/wpa_supplicant.mk b/package/wpa_supplicant/wpa_supplicant.mk
index febb80c..71be11f 100644
--- a/package/wpa_supplicant/wpa_supplicant.mk
+++ b/package/wpa_supplicant/wpa_supplicant.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-WPA_SUPPLICANT_VERSION = 1.0
+WPA_SUPPLICANT_VERSION = 1.1
 WPA_SUPPLICANT_SITE = http://hostap.epitest.fi/releases
 WPA_SUPPLICANT_LICENSE = GPLv2/BSD-3c
 WPA_SUPPLICANT_LICENSE_FILES = README

^ permalink raw reply related

* [Buildroot] [git commit] hostapd: bump to version 1.1
From: Peter Korsgaard @ 2012-12-05  8:40 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=ba4021769d1aa9b72179c6da7960cc08d1c52d57
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/hostapd/hostapd-cve-2012-4445.patch |   49 ------------------------
 package/hostapd/hostapd-openssl-1.0.1.patch |   54 ---------------------------
 package/hostapd/hostapd.mk                  |    4 +-
 3 files changed, 3 insertions(+), 104 deletions(-)

diff --git a/package/hostapd/hostapd-cve-2012-4445.patch b/package/hostapd/hostapd-cve-2012-4445.patch
deleted file mode 100644
index 034a458..0000000
--- a/package/hostapd/hostapd-cve-2012-4445.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From 567bacefd73782508bfe72d3624df495f0df4cd1 Mon Sep 17 00:00:00 2001
-From: Jouni Malinen <j@w1.fi>
-Date: Sun, 7 Oct 2012 20:06:29 +0300
-Subject: [PATCH] EAP-TLS server: Fix TLS Message Length validation
-
-EAP-TLS/PEAP/TTLS/FAST server implementation did not validate TLS
-Message Length value properly and could end up trying to store more
-information into the message buffer than the allocated size if the first
-fragment is longer than the indicated size. This could result in hostapd
-process terminating in wpabuf length validation. Fix this by rejecting
-messages that have invalid TLS Message Length value.
-
-This would affect cases that use the internal EAP authentication server
-in hostapd either directly with IEEE 802.1X or when using hostapd as a
-RADIUS authentication server and when receiving an incorrectly
-constructed EAP-TLS message. Cases where hostapd uses an external
-authentication are not affected.
-
-Thanks to Timo Warns for finding and reporting this issue.
-
-Signed-hostap: Jouni Malinen <j@w1.fi>
-intended-for: hostap-1
-(cherry picked from commit 586c446e0ff42ae00315b014924ec669023bd8de)
----
- src/eap_server/eap_server_tls_common.c |    8 ++++++++
- 1 files changed, 8 insertions(+), 0 deletions(-)
-
-diff --git a/src/eap_server/eap_server_tls_common.c b/src/eap_server/eap_server_tls_common.c
-index e149ee3..2cbe700 100644
---- a/src/eap_server/eap_server_tls_common.c
-+++ b/src/eap_server/eap_server_tls_common.c
-@@ -224,6 +224,14 @@ static int eap_server_tls_process_fragment(struct eap_ssl_data *data,
- 			return -1;
- 		}
- 
-+		if (len > message_length) {
-+			wpa_printf(MSG_INFO, "SSL: Too much data (%d bytes) in "
-+				   "first fragment of frame (TLS Message "
-+				   "Length %d bytes)",
-+				   (int) len, (int) message_length);
-+			return -1;
-+		}
-+
- 		data->tls_in = wpabuf_alloc(message_length);
- 		if (data->tls_in == NULL) {
- 			wpa_printf(MSG_DEBUG, "SSL: No memory for message");
--- 
-1.7.4-rc1
-
diff --git a/package/hostapd/hostapd-openssl-1.0.1.patch b/package/hostapd/hostapd-openssl-1.0.1.patch
deleted file mode 100644
index 2e110f4..0000000
--- a/package/hostapd/hostapd-openssl-1.0.1.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From e6e243d97795306aeb604948e7101f9f14e8b8ca Mon Sep 17 00:00:00 2001
-From: Jouni Malinen <j@w1.fi>
-Date: Fri, 17 Aug 2012 23:55:14 +0300
-Subject: [PATCH] Fix EAP-FAST with OpenSSL 1.0.1
-
-The mechanism to figure out key block size based on ssl->read_hash
-does not seem to work with OpenSSL 1.0.1, so add an alternative
-mechanism to figure out the NAC key size that seems to work at
-least with the current OpenSSL 1.0.1 releases.
-
-Signed-hostap: Jouni Malinen <j@w1.fi>
-intended-for: hostap-1
-(cherry picked from commit 7f996409e7e5aa0bb066257906e87ab3294d4fd0)
----
- src/crypto/tls_openssl.c |   14 +++++++++++++-
- 1 files changed, 13 insertions(+), 1 deletions(-)
-
-diff --git a/src/crypto/tls_openssl.c b/src/crypto/tls_openssl.c
-index 6380ce0..c4a76be 100644
---- a/src/crypto/tls_openssl.c
-+++ b/src/crypto/tls_openssl.c
-@@ -2785,6 +2785,7 @@ int tls_connection_get_keyblock_size(void *tls_ctx,
- {
- 	const EVP_CIPHER *c;
- 	const EVP_MD *h;
-+	int md_size;
- 
- 	if (conn == NULL || conn->ssl == NULL ||
- 	    conn->ssl->enc_read_ctx == NULL ||
-@@ -2798,9 +2799,20 @@ int tls_connection_get_keyblock_size(void *tls_ctx,
- #else
- 	h = conn->ssl->read_hash;
- #endif
-+	if (h)
-+		md_size = EVP_MD_size(h);
-+#if OPENSSL_VERSION_NUMBER >= 0x10000000L
-+	else if (conn->ssl->s3)
-+		md_size = conn->ssl->s3->tmp.new_mac_secret_size;
-+#endif
-+	else
-+		return -1;
- 
-+	wpa_printf(MSG_DEBUG, "OpenSSL: keyblock size: key_len=%d MD_size=%d "
-+		   "IV_len=%d", EVP_CIPHER_key_length(c), md_size,
-+		   EVP_CIPHER_iv_length(c));
- 	return 2 * (EVP_CIPHER_key_length(c) +
--		    EVP_MD_size(h) +
-+		    md_size +
- 		    EVP_CIPHER_iv_length(c));
- }
- 
--- 
-1.7.4-rc1
-
diff --git a/package/hostapd/hostapd.mk b/package/hostapd/hostapd.mk
index 82d6231..45a93fc 100644
--- a/package/hostapd/hostapd.mk
+++ b/package/hostapd/hostapd.mk
@@ -4,13 +4,15 @@
 #
 #############################################################
 
-HOSTAPD_VERSION = 1.0
+HOSTAPD_VERSION = 1.1
 HOSTAPD_SITE = http://hostap.epitest.fi/releases
 HOSTAPD_SUBDIR = hostapd
 HOSTAPD_CONFIG = $(HOSTAPD_DIR)/$(HOSTAPD_SUBDIR)/.config
 HOSTAPD_DEPENDENCIES = libnl
 HOSTAPD_CFLAGS = $(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/libnl3/
 HOSTAPD_LDFLAGS = $(TARGET_LDFLAGS)
+HOSTAPD_LICENSE = GPLv2/BSD-3c
+HOSTAPD_LICENSE_FILES = README
 
 # libnl needs -lm (for rint) if linking statically
 ifeq ($(BR2_PREFER_STATIC_LIB),y)

^ permalink raw reply related

* [Buildroot] [git commit] libcurl: bump to version 7.28.1
From: Peter Korsgaard @ 2012-12-05  8:40 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=c0170428f99b5f0fcfa21580a4297cef101b39ff
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/libcurl/libcurl.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
index 888f6d0..fd00694 100644
--- a/package/libcurl/libcurl.mk
+++ b/package/libcurl/libcurl.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-LIBCURL_VERSION = 7.27.0
+LIBCURL_VERSION = 7.28.1
 LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.bz2
 LIBCURL_SITE = http://curl.haxx.se/download
 LIBCURL_LICENSE = ICS

^ permalink raw reply related

* [Buildroot] [git commit] polarssl: bump to version 1.2.3
From: Peter Korsgaard @ 2012-12-05  8:40 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=5e73912a3d3d84ec9e626d1ad5e25d6eb7691a2d
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 .../polarssl-shared-and-static-library.patch       |   10 +++++-----
 package/polarssl/polarssl.mk                       |    2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/package/polarssl/polarssl-shared-and-static-library.patch b/package/polarssl/polarssl-shared-and-static-library.patch
index e11cab3..ec65285 100644
--- a/package/polarssl/polarssl-shared-and-static-library.patch
+++ b/package/polarssl/polarssl-shared-and-static-library.patch
@@ -9,13 +9,13 @@ This patch adds the USE_STATIC_POLARSSL_LIBRARY (which defaults to ON)
 in addition to the existing USE_SHARED_POLARSSL_LIBRARY (which
 defaults to OFF). Both options can be manipulated independently.
 
-[Gustavo: update for polarssl 1.2.0]
+[Gustavo: update for polarssl 1.2.3]
 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 
-diff -Nura polarssl-1.2.0.orig/library/CMakeLists.txt polarssl-1.2.0/library/CMakeLists.txt
---- polarssl-1.2.0.orig/library/CMakeLists.txt	2012-11-15 15:01:58.239248830 -0300
-+++ polarssl-1.2.0/library/CMakeLists.txt	2012-11-15 15:00:10.310806353 -0300
+diff -Nura polarssl-1.2.3.orig/library/CMakeLists.txt polarssl-1.2.3/library/CMakeLists.txt
+--- polarssl-1.2.3.orig/library/CMakeLists.txt	2012-11-27 17:16:20.735678722 -0300
++++ polarssl-1.2.3/library/CMakeLists.txt	2012-11-27 17:18:09.760457733 -0300
 @@ -1,4 +1,5 @@
  option(USE_SHARED_POLARSSL_LIBRARY "Build PolarSSL as a shared library." OFF)
 +option(USE_STATIC_POLARSSL_LIBRARY "Build PolarSSL as a static library." ON)
@@ -34,7 +34,7 @@ diff -Nura polarssl-1.2.0.orig/library/CMakeLists.txt polarssl-1.2.0/library/CMa
 +if(USE_SHARED_POLARSSL_LIBRARY)
  
  add_library(polarssl SHARED ${src})
- set_target_properties(polarssl PROPERTIES VERSION 1.2.0 SOVERSION 2)
+ set_target_properties(polarssl PROPERTIES VERSION 1.2.3 SOVERSION 2)
 +set_target_properties(polarssl PROPERTIES OUTPUT_NAME polarssl)
 +
 +endif(USE_SHARED_POLARSSL_LIBRARY)
diff --git a/package/polarssl/polarssl.mk b/package/polarssl/polarssl.mk
index edda9bf..c66c633 100644
--- a/package/polarssl/polarssl.mk
+++ b/package/polarssl/polarssl.mk
@@ -1,5 +1,5 @@
 POLARSSL_SITE = https://polarssl.org/download
-POLARSSL_VERSION = 1.2.0
+POLARSSL_VERSION = 1.2.3
 POLARSSL_SOURCE = polarssl-$(POLARSSL_VERSION)-gpl.tgz
 POLARSSL_CONF_OPT = \
 	-DUSE_SHARED_POLARSSL_LIBRARY=ON \

^ permalink raw reply related

* [Buildroot] [git commit] ed: bump to version 1.7
From: Peter Korsgaard @ 2012-12-05  8:40 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=ea2df5659831325605a0735e8ea6e7ec6fb5dfe2
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/ed/ed.mk |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/package/ed/ed.mk b/package/ed/ed.mk
index a97e19b..2bb8e0e 100644
--- a/package/ed/ed.mk
+++ b/package/ed/ed.mk
@@ -4,9 +4,11 @@
 #
 #############################################################
 
-ED_VERSION = 1.6
+ED_VERSION = 1.7
 ED_SITE = $(BR2_GNU_MIRROR)/ed
 ED_CONF_OPT = CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \
 		LDFLAGS="$(TARGET_LDFLAGS)"
+ED_LICENSE = GPLv3+
+ED_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))

^ permalink raw reply related

* [Buildroot] [git commit] ipset: bump to version 6.16.1
From: Peter Korsgaard @ 2012-12-05  8:39 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=c35431d3e49c6e0813c5ac9786d5ca83409c6020
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/ipset/ipset.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/ipset/ipset.mk b/package/ipset/ipset.mk
index 999c5cb..3ef9747 100644
--- a/package/ipset/ipset.mk
+++ b/package/ipset/ipset.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-IPSET_VERSION = 6.14
+IPSET_VERSION = 6.16.1
 IPSET_SOURCE = ipset-$(IPSET_VERSION).tar.bz2
 IPSET_SITE = http://ipset.netfilter.org
 IPSET_DEPENDENCIES = libmnl host-pkgconf

^ permalink raw reply related

* [Buildroot] [git commit] php: bump to version 5.3.19
From: Peter Korsgaard @ 2012-12-05  8:39 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=a72ae74337467dff56a7b6daa6990d92b5547e32
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/php/php.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/php/php.mk b/package/php/php.mk
index 0dfb6db..4290170 100644
--- a/package/php/php.mk
+++ b/package/php/php.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-PHP_VERSION = 5.3.18
+PHP_VERSION = 5.3.19
 PHP_SOURCE = php-$(PHP_VERSION).tar.bz2
 PHP_SITE = http://www.php.net/distributions
 PHP_INSTALL_STAGING = YES

^ permalink raw reply related

* [Buildroot] [git commit] libnl: bump to version 3.2.16
From: Peter Korsgaard @ 2012-12-05  8:39 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=4b61d9e9a615cfadacd432212321417ca3493e56
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/libnl/libnl.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/libnl/libnl.mk b/package/libnl/libnl.mk
index e039fd4..9bf680e 100644
--- a/package/libnl/libnl.mk
+++ b/package/libnl/libnl.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-LIBNL_VERSION = 3.2.14
+LIBNL_VERSION = 3.2.16
 LIBNL_SITE = http://www.infradead.org/~tgr/libnl/files
 LIBNL_LICENSE = LGPLv2.1+
 LIBNL_LICENSE_FILES = COPYING

^ permalink raw reply related

* [Buildroot] [git commit] radvd: bump to version 1.9.2
From: Peter Korsgaard @ 2012-12-05  8:39 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=34c4091d2e3fb0a37e39b0bd740bdd1c17965899
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/radvd/radvd-highjob.patch |   27 ---------------------------
 package/radvd/radvd.mk            |    2 +-
 2 files changed, 1 insertions(+), 28 deletions(-)

diff --git a/package/radvd/radvd-highjob.patch b/package/radvd/radvd-highjob.patch
deleted file mode 100644
index 5945435..0000000
--- a/package/radvd/radvd-highjob.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From ce4911c13a3ab6877c0288c8a1874decb5d0e90a Mon Sep 17 00:00:00 2001
-From: Gustavo Zacarias <gustavo@zacarias.com.ar>
-Date: Mon, 23 Jul 2012 09:14:24 -0300
-Subject: [PATCH] Makefile: fix high jobcount build failures
-
-gram.h is a dependency for scanner.c rather than scanner.o which is
-unused.
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
----
- Makefile.am |    2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index 04b834b..8a90ca7 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -131,5 +131,5 @@ dist-hook:
- 	rm -f $(distdir)/gram.h
- 	rm -f $(distdir)/scanner.c
- 
--scanner.o: gram.h
-+scanner.c: gram.h
- 
--- 
-1.7.8.6
-
diff --git a/package/radvd/radvd.mk b/package/radvd/radvd.mk
index 6151236..2a60729 100644
--- a/package/radvd/radvd.mk
+++ b/package/radvd/radvd.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-RADVD_VERSION = 1.9.1
+RADVD_VERSION = 1.9.2
 RADVD_SITE = http://www.litech.org/radvd/dist
 RADVD_DEPENDENCIES = flex libdaemon host-flex host-pkgconf
 RADVD_AUTORECONF = YES

^ permalink raw reply related

* [Buildroot] [git commit] hdparm: bump to version 9.43
From: Peter Korsgaard @ 2012-12-05  8:39 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=1bdcf9ca634648ad6c9cef38be90a7ee958f305f
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/hdparm/hdparm.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/hdparm/hdparm.mk b/package/hdparm/hdparm.mk
index 76223f4..f70d232 100644
--- a/package/hdparm/hdparm.mk
+++ b/package/hdparm/hdparm.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-HDPARM_VERSION = 9.42
+HDPARM_VERSION = 9.43
 HDPARM_SITE = http://downloads.sourceforge.net/project/hdparm/hdparm
 HDPARM_LICENSE = BSD-Style
 HDPARM_LICENSE_FILES = LICENSE.TXT

^ permalink raw reply related

* [Buildroot] [git commit] scons: bump to version 2.2.0
From: Peter Korsgaard @ 2012-12-05  8:39 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=11baa844194ab053298f966641e7081c40a394ea
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/scons/scons.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/scons/scons.mk b/package/scons/scons.mk
index d2489a0..79fd6b1 100644
--- a/package/scons/scons.mk
+++ b/package/scons/scons.mk
@@ -1,4 +1,4 @@
-SCONS_VERSION = 2.0.1
+SCONS_VERSION = 2.2.0
 SCONS_SOURCE = scons-$(SCONS_VERSION).tar.gz
 SCONS_SITE = http://downloads.sourceforge.net/project/scons/scons/$(SCONS_VERSION)
 SCONS_LICENSE = MIT

^ permalink raw reply related

* [Buildroot] [Bug 5750] buildroot-2012.11 while building X11 for ARM, errors on  xlib_libX11-1.4.2
From: bugzilla at busybox.net @ 2012-12-05  7:59 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <bug-5750-163@https.bugs.busybox.net/>

https://bugs.busybox.net/show_bug.cgi?id=5750

--- Comment #1 from Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 2012-12-05 07:59:54 UTC ---
For some complicated reason, using Buildroot in a directory stored under /usr
doesn't work. We will work on fixing that, but in the mean time, please build
from /home/something, /opt or anything else, but not from a subdirectory of
/usr.

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

^ permalink raw reply

* [Buildroot] [autobuild.buildroot.net] Build results for 2012-12-04
From: Thomas Petazzoni @ 2012-12-05  7:34 UTC (permalink / raw)
  To: buildroot


Hello,

On 2012-12-04, 172 random build tests have been done and
submitted on autobuild.buildroot.net.
 93 builds have been successful
 79 builds have failed

Below the results of the failed builds. Successful builds are omitted.

Build 4ef06886d38aafea2ddc65c8f6dca8079417f166
==============================================

Status         : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-04 00:04:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/4ef06886d38aafea2ddc65c8f6dca8079417f166/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4ef06886d38aafea2ddc65c8f6dca8079417f166/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4ef06886d38aafea2ddc65c8f6dca8079417f166/config
Defconfig      : http://autobuild.buildroot.net/results/4ef06886d38aafea2ddc65c8f6dca8079417f166/defconfig

Build cd1e5810085337c9f26c6c73c11e561bbab3ff74
==============================================

Status         : NOK
Failure reason : mtd-1.5.0
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 00:25:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/cd1e5810085337c9f26c6c73c11e561bbab3ff74/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cd1e5810085337c9f26c6c73c11e561bbab3ff74/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cd1e5810085337c9f26c6c73c11e561bbab3ff74/config
Defconfig      : http://autobuild.buildroot.net/results/cd1e5810085337c9f26c6c73c11e561bbab3ff74/defconfig

Build 85be17c7ae033bb6f0dadccc6bdb51f677c92187
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 00:41:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/85be17c7ae033bb6f0dadccc6bdb51f677c92187/build-end.log
Complete log   : http://autobuild.buildroot.net/results/85be17c7ae033bb6f0dadccc6bdb51f677c92187/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/85be17c7ae033bb6f0dadccc6bdb51f677c92187/config
Defconfig      : http://autobuild.buildroot.net/results/85be17c7ae033bb6f0dadccc6bdb51f677c92187/defconfig

Build e2f76b7e4ced6007b8ca50f2143869732105434a
==============================================

Status         : NOK
Failure reason : squid-3.2.3
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 00:50:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/e2f76b7e4ced6007b8ca50f2143869732105434a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e2f76b7e4ced6007b8ca50f2143869732105434a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e2f76b7e4ced6007b8ca50f2143869732105434a/config
Defconfig      : http://autobuild.buildroot.net/results/e2f76b7e4ced6007b8ca50f2143869732105434a/defconfig

Build 705935c4752fefdcdd15d63341c94634304303d1
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 01:23:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/705935c4752fefdcdd15d63341c94634304303d1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/705935c4752fefdcdd15d63341c94634304303d1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/705935c4752fefdcdd15d63341c94634304303d1/config
Defconfig      : http://autobuild.buildroot.net/results/705935c4752fefdcdd15d63341c94634304303d1/defconfig

Build 8c3047ebe8ff4e992c53035fd411ca0be582a0fd
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 01:30:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/8c3047ebe8ff4e992c53035fd411ca0be582a0fd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8c3047ebe8ff4e992c53035fd411ca0be582a0fd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8c3047ebe8ff4e992c53035fd411ca0be582a0fd/config
Defconfig      : http://autobuild.buildroot.net/results/8c3047ebe8ff4e992c53035fd411ca0be582a0fd/defconfig

Build 7d9636822d31d4d9df78109b65639a52498a9157
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 01:34:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/7d9636822d31d4d9df78109b65639a52498a9157/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7d9636822d31d4d9df78109b65639a52498a9157/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7d9636822d31d4d9df78109b65639a52498a9157/config
Defconfig      : http://autobuild.buildroot.net/results/7d9636822d31d4d9df78109b65639a52498a9157/defconfig

Build f7460d5490de3be376bb5f1f717b9c48f0f1c711
==============================================

Status         : NOK
Failure reason : sane-backends-1.0.22
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-04 01:37:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/f7460d5490de3be376bb5f1f717b9c48f0f1c711/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f7460d5490de3be376bb5f1f717b9c48f0f1c711/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f7460d5490de3be376bb5f1f717b9c48f0f1c711/config
Defconfig      : http://autobuild.buildroot.net/results/f7460d5490de3be376bb5f1f717b9c48f0f1c711/defconfig

Build 6c5e16261991c0a76099bf86c049d790da32846b
==============================================

Status         : NOK
Failure reason : gd-2.0.35
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-04 01:57:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/6c5e16261991c0a76099bf86c049d790da32846b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6c5e16261991c0a76099bf86c049d790da32846b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6c5e16261991c0a76099bf86c049d790da32846b/config
Defconfig      : http://autobuild.buildroot.net/results/6c5e16261991c0a76099bf86c049d790da32846b/defconfig

Build a0bae001090450ce2b98738f74e1e952c32c9371
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 02:06:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/a0bae001090450ce2b98738f74e1e952c32c9371/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a0bae001090450ce2b98738f74e1e952c32c9371/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a0bae001090450ce2b98738f74e1e952c32c9371/config
Defconfig      : http://autobuild.buildroot.net/results/a0bae001090450ce2b98738f74e1e952c32c9371/defconfig

Build 15b4749080d37c4f25d312b7f6ba09531e4c10b0
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 02:14:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/15b4749080d37c4f25d312b7f6ba09531e4c10b0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/15b4749080d37c4f25d312b7f6ba09531e4c10b0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/15b4749080d37c4f25d312b7f6ba09531e4c10b0/config
Defconfig      : http://autobuild.buildroot.net/results/15b4749080d37c4f25d312b7f6ba09531e4c10b0/defconfig

Build e688f5914034f1f505b8ba714e0cb33ec9832d0f
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 02:20:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/e688f5914034f1f505b8ba714e0cb33ec9832d0f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e688f5914034f1f505b8ba714e0cb33ec9832d0f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e688f5914034f1f505b8ba714e0cb33ec9832d0f/config
Defconfig      : http://autobuild.buildroot.net/results/e688f5914034f1f505b8ba714e0cb33ec9832d0f/defconfig

Build 4a7f79e31a797caf25a0370e59b937dd57f648b4
==============================================

Status         : NOK
Failure reason : libcap-ng-0.6.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 02:40:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/4a7f79e31a797caf25a0370e59b937dd57f648b4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4a7f79e31a797caf25a0370e59b937dd57f648b4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4a7f79e31a797caf25a0370e59b937dd57f648b4/config
Defconfig      : http://autobuild.buildroot.net/results/4a7f79e31a797caf25a0370e59b937dd57f648b4/defconfig

Build 9309d8cc522c5066518dd91caeb18693617900f3
==============================================

Status         : NOK
Failure reason : finished...
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-04 02:51:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/9309d8cc522c5066518dd91caeb18693617900f3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9309d8cc522c5066518dd91caeb18693617900f3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9309d8cc522c5066518dd91caeb18693617900f3/config
Defconfig      : http://autobuild.buildroot.net/results/9309d8cc522c5066518dd91caeb18693617900f3/defconfig

Build 02b5669d11ceec35ef40e0e90f7f1a699f148ab7
==============================================

Status         : NOK
Failure reason : dropbear-2012.55
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 03:03:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/02b5669d11ceec35ef40e0e90f7f1a699f148ab7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/02b5669d11ceec35ef40e0e90f7f1a699f148ab7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/02b5669d11ceec35ef40e0e90f7f1a699f148ab7/config
Defconfig      : http://autobuild.buildroot.net/results/02b5669d11ceec35ef40e0e90f7f1a699f148ab7/defconfig

Build 3a80406056b52b40d87fc9d026c542bc746ae978
==============================================

Status         : NOK
Failure reason : libroxml-2.2.1
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-04 04:19:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/3a80406056b52b40d87fc9d026c542bc746ae978/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3a80406056b52b40d87fc9d026c542bc746ae978/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3a80406056b52b40d87fc9d026c542bc746ae978/config
Defconfig      : http://autobuild.buildroot.net/results/3a80406056b52b40d87fc9d026c542bc746ae978/defconfig

Build f7bbb8925e00f06eac4f2d9f117a16f09ad7ff85
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 04:44:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/f7bbb8925e00f06eac4f2d9f117a16f09ad7ff85/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f7bbb8925e00f06eac4f2d9f117a16f09ad7ff85/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f7bbb8925e00f06eac4f2d9f117a16f09ad7ff85/config
Defconfig      : http://autobuild.buildroot.net/results/f7bbb8925e00f06eac4f2d9f117a16f09ad7ff85/defconfig

Build c62d9cd6b27326c5eb8307d96e7076692e1f355f
==============================================

Status         : NOK
Failure reason : gpsd-3.7
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 04:52:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/c62d9cd6b27326c5eb8307d96e7076692e1f355f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c62d9cd6b27326c5eb8307d96e7076692e1f355f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c62d9cd6b27326c5eb8307d96e7076692e1f355f/config
Defconfig      : http://autobuild.buildroot.net/results/c62d9cd6b27326c5eb8307d96e7076692e1f355f/defconfig

Build ff6dd92d78e2da3c75382bed0a95ffbac3610c82
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 04:52:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/ff6dd92d78e2da3c75382bed0a95ffbac3610c82/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ff6dd92d78e2da3c75382bed0a95ffbac3610c82/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ff6dd92d78e2da3c75382bed0a95ffbac3610c82/config
Defconfig      : http://autobuild.buildroot.net/results/ff6dd92d78e2da3c75382bed0a95ffbac3610c82/defconfig

Build e9deb493eb5a7a05c9eae878caad9e9fb0917b34
==============================================

Status         : NOK
Failure reason : gd-2.0.35
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-04 04:53:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/e9deb493eb5a7a05c9eae878caad9e9fb0917b34/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e9deb493eb5a7a05c9eae878caad9e9fb0917b34/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e9deb493eb5a7a05c9eae878caad9e9fb0917b34/config
Defconfig      : http://autobuild.buildroot.net/results/e9deb493eb5a7a05c9eae878caad9e9fb0917b34/defconfig

Build b71ac23b06d6aaf2dc54e3f9562d0f0c3368f6ec
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 05:04:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/b71ac23b06d6aaf2dc54e3f9562d0f0c3368f6ec/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b71ac23b06d6aaf2dc54e3f9562d0f0c3368f6ec/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b71ac23b06d6aaf2dc54e3f9562d0f0c3368f6ec/config
Defconfig      : http://autobuild.buildroot.net/results/b71ac23b06d6aaf2dc54e3f9562d0f0c3368f6ec/defconfig

Build b66044705e985f3e8ead8bc21ce786db2093b65c
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 05:49:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/b66044705e985f3e8ead8bc21ce786db2093b65c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b66044705e985f3e8ead8bc21ce786db2093b65c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b66044705e985f3e8ead8bc21ce786db2093b65c/config
Defconfig      : http://autobuild.buildroot.net/results/b66044705e985f3e8ead8bc21ce786db2093b65c/defconfig

Build 8a025c4158151b8fad2726d96ef7e8a0ba650d6d
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 06:34:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/8a025c4158151b8fad2726d96ef7e8a0ba650d6d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8a025c4158151b8fad2726d96ef7e8a0ba650d6d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8a025c4158151b8fad2726d96ef7e8a0ba650d6d/config
Defconfig      : http://autobuild.buildroot.net/results/8a025c4158151b8fad2726d96ef7e8a0ba650d6d/defconfig

Build b7c6ffa7ad31f2b49d8aef104bb94c951efc9aa8
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 06:49:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/b7c6ffa7ad31f2b49d8aef104bb94c951efc9aa8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b7c6ffa7ad31f2b49d8aef104bb94c951efc9aa8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b7c6ffa7ad31f2b49d8aef104bb94c951efc9aa8/config
Defconfig      : http://autobuild.buildroot.net/results/b7c6ffa7ad31f2b49d8aef104bb94c951efc9aa8/defconfig

Build 8bc2f3fc5e934fc0abdebab4aab4a16c962c6176
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 06:52:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/8bc2f3fc5e934fc0abdebab4aab4a16c962c6176/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8bc2f3fc5e934fc0abdebab4aab4a16c962c6176/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8bc2f3fc5e934fc0abdebab4aab4a16c962c6176/config
Defconfig      : http://autobuild.buildroot.net/results/8bc2f3fc5e934fc0abdebab4aab4a16c962c6176/defconfig

Build 93ba15d42d3425c63ce476da0204346f82d89a40
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 06:53:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/93ba15d42d3425c63ce476da0204346f82d89a40/build-end.log
Complete log   : http://autobuild.buildroot.net/results/93ba15d42d3425c63ce476da0204346f82d89a40/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/93ba15d42d3425c63ce476da0204346f82d89a40/config
Defconfig      : http://autobuild.buildroot.net/results/93ba15d42d3425c63ce476da0204346f82d89a40/defconfig

Build 87ff93a96e3da7fc47d3104bf547ff6ae3c6765b
==============================================

Status         : NOK
Failure reason : gd-2.0.35
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 07:23:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/87ff93a96e3da7fc47d3104bf547ff6ae3c6765b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/87ff93a96e3da7fc47d3104bf547ff6ae3c6765b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/87ff93a96e3da7fc47d3104bf547ff6ae3c6765b/config
Defconfig      : http://autobuild.buildroot.net/results/87ff93a96e3da7fc47d3104bf547ff6ae3c6765b/defconfig

Build ebe3950eeb2d5e62742865d90028276f06b6936d
==============================================

Status         : NOK
Failure reason : libroxml-2.2.1
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-04 07:29:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/ebe3950eeb2d5e62742865d90028276f06b6936d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ebe3950eeb2d5e62742865d90028276f06b6936d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ebe3950eeb2d5e62742865d90028276f06b6936d/config
Defconfig      : http://autobuild.buildroot.net/results/ebe3950eeb2d5e62742865d90028276f06b6936d/defconfig

Build be7614e99a1cc623351cabf16d16c4062aa43d95
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 08:38:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/be7614e99a1cc623351cabf16d16c4062aa43d95/build-end.log
Complete log   : http://autobuild.buildroot.net/results/be7614e99a1cc623351cabf16d16c4062aa43d95/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/be7614e99a1cc623351cabf16d16c4062aa43d95/config
Defconfig      : http://autobuild.buildroot.net/results/be7614e99a1cc623351cabf16d16c4062aa43d95/defconfig

Build 86a0b98e29fae23500db82845d6e0b564f37edf3
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 08:39:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/86a0b98e29fae23500db82845d6e0b564f37edf3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/86a0b98e29fae23500db82845d6e0b564f37edf3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/86a0b98e29fae23500db82845d6e0b564f37edf3/config
Defconfig      : http://autobuild.buildroot.net/results/86a0b98e29fae23500db82845d6e0b564f37edf3/defconfig

Build 2a28984aa97101e038b0efad9c4ae621beea55bf
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 08:52:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/2a28984aa97101e038b0efad9c4ae621beea55bf/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2a28984aa97101e038b0efad9c4ae621beea55bf/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2a28984aa97101e038b0efad9c4ae621beea55bf/config
Defconfig      : http://autobuild.buildroot.net/results/2a28984aa97101e038b0efad9c4ae621beea55bf/defconfig

Build c901ffe325f00c3a529c1e104b2cf534204e65fd
==============================================

Status         : NOK
Failure reason : sdl-1.2.15
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-04 08:59:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/c901ffe325f00c3a529c1e104b2cf534204e65fd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c901ffe325f00c3a529c1e104b2cf534204e65fd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c901ffe325f00c3a529c1e104b2cf534204e65fd/config
Defconfig      : http://autobuild.buildroot.net/results/c901ffe325f00c3a529c1e104b2cf534204e65fd/defconfig

Build 70569a5f092977410b6ba45f013c2cda7f152a8f
==============================================

Status         : NOK
Failure reason : libv4l-0.8.9
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 09:12:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/70569a5f092977410b6ba45f013c2cda7f152a8f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/70569a5f092977410b6ba45f013c2cda7f152a8f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/70569a5f092977410b6ba45f013c2cda7f152a8f/config
Defconfig      : http://autobuild.buildroot.net/results/70569a5f092977410b6ba45f013c2cda7f152a8f/defconfig

Build f0e3dab5258df8b647e8acd2b37e2ed370064d93
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 09:13:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/f0e3dab5258df8b647e8acd2b37e2ed370064d93/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f0e3dab5258df8b647e8acd2b37e2ed370064d93/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f0e3dab5258df8b647e8acd2b37e2ed370064d93/config
Defconfig      : http://autobuild.buildroot.net/results/f0e3dab5258df8b647e8acd2b37e2ed370064d93/defconfig

Build 59199073e85065f5f04a617771716de146eecfa3
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 09:35:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/59199073e85065f5f04a617771716de146eecfa3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/59199073e85065f5f04a617771716de146eecfa3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/59199073e85065f5f04a617771716de146eecfa3/config
Defconfig      : http://autobuild.buildroot.net/results/59199073e85065f5f04a617771716de146eecfa3/defconfig

Build d4d2f473b782b761a87b04772d3c10c83f492bc3
==============================================

Status         : NOK
Failure reason : rt-tests-0.83
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 09:37:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/d4d2f473b782b761a87b04772d3c10c83f492bc3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d4d2f473b782b761a87b04772d3c10c83f492bc3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d4d2f473b782b761a87b04772d3c10c83f492bc3/config
Defconfig      : http://autobuild.buildroot.net/results/d4d2f473b782b761a87b04772d3c10c83f492bc3/defconfig

Build ffc0d25c802e773a7982b8a10898edb74795272b
==============================================

Status         : NOK
Failure reason : sqlite-3071300
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 09:48:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/ffc0d25c802e773a7982b8a10898edb74795272b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ffc0d25c802e773a7982b8a10898edb74795272b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ffc0d25c802e773a7982b8a10898edb74795272b/config
Defconfig      : http://autobuild.buildroot.net/results/ffc0d25c802e773a7982b8a10898edb74795272b/defconfig

Build 5c5e395e73d66e8222437edf168a128f0e405e79
==============================================

Status         : NOK
Failure reason : libroxml-2.2.1
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-04 09:55:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/5c5e395e73d66e8222437edf168a128f0e405e79/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5c5e395e73d66e8222437edf168a128f0e405e79/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5c5e395e73d66e8222437edf168a128f0e405e79/config
Defconfig      : http://autobuild.buildroot.net/results/5c5e395e73d66e8222437edf168a128f0e405e79/defconfig

Build c1fbaed69eb982d2cdee0db42ab1b928d14c3877
==============================================

Status         : NOK
Failure reason : pciutils-3.1.10
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 10:00:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/c1fbaed69eb982d2cdee0db42ab1b928d14c3877/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c1fbaed69eb982d2cdee0db42ab1b928d14c3877/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c1fbaed69eb982d2cdee0db42ab1b928d14c3877/config
Defconfig      : http://autobuild.buildroot.net/results/c1fbaed69eb982d2cdee0db42ab1b928d14c3877/defconfig

Build 7865032ef22842e2c4fc0b50d7613a4a96a2d10e
==============================================

Status         : NOK
Failure reason : netatalk-3.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 10:05:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/7865032ef22842e2c4fc0b50d7613a4a96a2d10e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7865032ef22842e2c4fc0b50d7613a4a96a2d10e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7865032ef22842e2c4fc0b50d7613a4a96a2d10e/config
Defconfig      : http://autobuild.buildroot.net/results/7865032ef22842e2c4fc0b50d7613a4a96a2d10e/defconfig

Build 5152b881abc2e1375cae1200d73c71d678b7d09b
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 10:14:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/5152b881abc2e1375cae1200d73c71d678b7d09b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5152b881abc2e1375cae1200d73c71d678b7d09b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5152b881abc2e1375cae1200d73c71d678b7d09b/config
Defconfig      : http://autobuild.buildroot.net/results/5152b881abc2e1375cae1200d73c71d678b7d09b/defconfig

Build 71f56ec652149261509dbb8982d1f16dec6b98f2
==============================================

Status         : NOK
Failure reason : host-python-2.7.3
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 10:51:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/71f56ec652149261509dbb8982d1f16dec6b98f2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/71f56ec652149261509dbb8982d1f16dec6b98f2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/71f56ec652149261509dbb8982d1f16dec6b98f2/config
Defconfig      : http://autobuild.buildroot.net/results/71f56ec652149261509dbb8982d1f16dec6b98f2/defconfig

Build 30d3247540d0c0a7b5cfebf97c63342a1c5a67fd
==============================================

Status         : NOK
Failure reason : host-python-2.7.3
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 11:29:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/30d3247540d0c0a7b5cfebf97c63342a1c5a67fd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/30d3247540d0c0a7b5cfebf97c63342a1c5a67fd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/30d3247540d0c0a7b5cfebf97c63342a1c5a67fd/config
Defconfig      : http://autobuild.buildroot.net/results/30d3247540d0c0a7b5cfebf97c63342a1c5a67fd/defconfig

Build 1f44591e28e338dbcd6f1a8a58742ed9f3696125
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 11:31:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/1f44591e28e338dbcd6f1a8a58742ed9f3696125/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1f44591e28e338dbcd6f1a8a58742ed9f3696125/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1f44591e28e338dbcd6f1a8a58742ed9f3696125/config
Defconfig      : http://autobuild.buildroot.net/results/1f44591e28e338dbcd6f1a8a58742ed9f3696125/defconfig

Build 0a4dc307943ebaccd577209382ebcd38dca48f78
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-04 11:46:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/0a4dc307943ebaccd577209382ebcd38dca48f78/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0a4dc307943ebaccd577209382ebcd38dca48f78/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0a4dc307943ebaccd577209382ebcd38dca48f78/config
Defconfig      : http://autobuild.buildroot.net/results/0a4dc307943ebaccd577209382ebcd38dca48f78/defconfig

Build a238aee858c2b3c11208ca6ba5403417282de59b
==============================================

Status         : NOK
Failure reason : libglib2-2.30.3
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 12:08:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/a238aee858c2b3c11208ca6ba5403417282de59b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a238aee858c2b3c11208ca6ba5403417282de59b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a238aee858c2b3c11208ca6ba5403417282de59b/config
Defconfig      : http://autobuild.buildroot.net/results/a238aee858c2b3c11208ca6ba5403417282de59b/defconfig

Build 7f54e8d3e56aa76e77e4c4fba04e17fca43eac56
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 13:00:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/7f54e8d3e56aa76e77e4c4fba04e17fca43eac56/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7f54e8d3e56aa76e77e4c4fba04e17fca43eac56/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7f54e8d3e56aa76e77e4c4fba04e17fca43eac56/config
Defconfig      : http://autobuild.buildroot.net/results/7f54e8d3e56aa76e77e4c4fba04e17fca43eac56/defconfig

Build b59aedfed7dbbe9bdb916e62484dd4aea423ce61
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 13:25:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/b59aedfed7dbbe9bdb916e62484dd4aea423ce61/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b59aedfed7dbbe9bdb916e62484dd4aea423ce61/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b59aedfed7dbbe9bdb916e62484dd4aea423ce61/config
Defconfig      : http://autobuild.buildroot.net/results/b59aedfed7dbbe9bdb916e62484dd4aea423ce61/defconfig

Build 68efe6943c583045a5c68f87996a3139644e4e96
==============================================

Status         : NOK
Failure reason : lttng-libust-2.0.3
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-04 15:00:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/68efe6943c583045a5c68f87996a3139644e4e96/build-end.log
Complete log   : http://autobuild.buildroot.net/results/68efe6943c583045a5c68f87996a3139644e4e96/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/68efe6943c583045a5c68f87996a3139644e4e96/config
Defconfig      : http://autobuild.buildroot.net/results/68efe6943c583045a5c68f87996a3139644e4e96/defconfig

Build e24c68416fb48adf76237ae0abd58d884fc7bb13
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 15:15:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/e24c68416fb48adf76237ae0abd58d884fc7bb13/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e24c68416fb48adf76237ae0abd58d884fc7bb13/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e24c68416fb48adf76237ae0abd58d884fc7bb13/config
Defconfig      : http://autobuild.buildroot.net/results/e24c68416fb48adf76237ae0abd58d884fc7bb13/defconfig

Build 2df37dab08b52a0c82490e35cc449a5da8a76fe6
==============================================

Status         : NOK
Failure reason : sdl-1.2.15
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-04 15:46:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/2df37dab08b52a0c82490e35cc449a5da8a76fe6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2df37dab08b52a0c82490e35cc449a5da8a76fe6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2df37dab08b52a0c82490e35cc449a5da8a76fe6/config
Defconfig      : http://autobuild.buildroot.net/results/2df37dab08b52a0c82490e35cc449a5da8a76fe6/defconfig

Build 025cff38e223250bfff0b8a30820f60b2e14b012
==============================================

Status         : NOK
Failure reason : gnupg-1.4.12
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 15:47:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/025cff38e223250bfff0b8a30820f60b2e14b012/build-end.log
Complete log   : http://autobuild.buildroot.net/results/025cff38e223250bfff0b8a30820f60b2e14b012/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/025cff38e223250bfff0b8a30820f60b2e14b012/config
Defconfig      : http://autobuild.buildroot.net/results/025cff38e223250bfff0b8a30820f60b2e14b012/defconfig

Build e3f8ad50a712b03a9e166f4d21c863be3f3a1d13
==============================================

Status         : NOK
Failure reason : host-python-2.7.3
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-04 16:24:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/e3f8ad50a712b03a9e166f4d21c863be3f3a1d13/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e3f8ad50a712b03a9e166f4d21c863be3f3a1d13/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e3f8ad50a712b03a9e166f4d21c863be3f3a1d13/config
Defconfig      : http://autobuild.buildroot.net/results/e3f8ad50a712b03a9e166f4d21c863be3f3a1d13/defconfig

Build 04a121743215d746162d17d953b175c017420bdc
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 16:41:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/04a121743215d746162d17d953b175c017420bdc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/04a121743215d746162d17d953b175c017420bdc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/04a121743215d746162d17d953b175c017420bdc/config
Defconfig      : http://autobuild.buildroot.net/results/04a121743215d746162d17d953b175c017420bdc/defconfig

Build ec0f2a12e2987f9565085805929aa66e8becf4d6
==============================================

Status         : NOK
Failure reason : gd-2.0.35
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-04 16:49:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/ec0f2a12e2987f9565085805929aa66e8becf4d6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ec0f2a12e2987f9565085805929aa66e8becf4d6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ec0f2a12e2987f9565085805929aa66e8becf4d6/config
Defconfig      : http://autobuild.buildroot.net/results/ec0f2a12e2987f9565085805929aa66e8becf4d6/defconfig

Build f375865f2613d95567b6f5b4191babf29b6907c8
==============================================

Status         : NOK
Failure reason : pv-1.2.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 16:54:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/f375865f2613d95567b6f5b4191babf29b6907c8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f375865f2613d95567b6f5b4191babf29b6907c8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f375865f2613d95567b6f5b4191babf29b6907c8/config
Defconfig      : http://autobuild.buildroot.net/results/f375865f2613d95567b6f5b4191babf29b6907c8/defconfig

Build a449ba48598eb12a69a4a5df130b2964a94a4595
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 17:02:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/a449ba48598eb12a69a4a5df130b2964a94a4595/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a449ba48598eb12a69a4a5df130b2964a94a4595/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a449ba48598eb12a69a4a5df130b2964a94a4595/config
Defconfig      : http://autobuild.buildroot.net/results/a449ba48598eb12a69a4a5df130b2964a94a4595/defconfig

Build d30c157996bbfa1623df10e136cd1b375c41880e
==============================================

Status         : NOK
Failure reason : sane-backends-1.0.22
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-04 17:56:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/d30c157996bbfa1623df10e136cd1b375c41880e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d30c157996bbfa1623df10e136cd1b375c41880e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d30c157996bbfa1623df10e136cd1b375c41880e/config
Defconfig      : http://autobuild.buildroot.net/results/d30c157996bbfa1623df10e136cd1b375c41880e/defconfig

Build dc97e1e801033bceea1c3cc070a459c8da945f3e
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 18:04:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/dc97e1e801033bceea1c3cc070a459c8da945f3e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/dc97e1e801033bceea1c3cc070a459c8da945f3e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/dc97e1e801033bceea1c3cc070a459c8da945f3e/config
Defconfig      : http://autobuild.buildroot.net/results/dc97e1e801033bceea1c3cc070a459c8da945f3e/defconfig

Build ab4948dd7c5c7cfb12a3430934f1a3c406204f7b
==============================================

Status         : NOK
Failure reason : gd-2.0.35
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 18:20:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/ab4948dd7c5c7cfb12a3430934f1a3c406204f7b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ab4948dd7c5c7cfb12a3430934f1a3c406204f7b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ab4948dd7c5c7cfb12a3430934f1a3c406204f7b/config
Defconfig      : http://autobuild.buildroot.net/results/ab4948dd7c5c7cfb12a3430934f1a3c406204f7b/defconfig

Build 67847d09b7c17586a115d9b13287b6acf434cf5f
==============================================

Status         : NOK
Failure reason : gpsd-3.7
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 19:15:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/67847d09b7c17586a115d9b13287b6acf434cf5f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/67847d09b7c17586a115d9b13287b6acf434cf5f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/67847d09b7c17586a115d9b13287b6acf434cf5f/config
Defconfig      : http://autobuild.buildroot.net/results/67847d09b7c17586a115d9b13287b6acf434cf5f/defconfig

Build 244820dde25688f313519bfcff4d23ce3017ef4c
==============================================

Status         : NOK
Failure reason : make: *** [core-dependencies] Error 1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 20:10:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=f290aa705db2084c0864fbf6750e4414a82e48a6
End of log     : http://autobuild.buildroot.net/results/244820dde25688f313519bfcff4d23ce3017ef4c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/244820dde25688f313519bfcff4d23ce3017ef4c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/244820dde25688f313519bfcff4d23ce3017ef4c/config
Defconfig      : http://autobuild.buildroot.net/results/244820dde25688f313519bfcff4d23ce3017ef4c/defconfig

Build 714d0930d39904ffce46fc57ef1bef225f9081a3
==============================================

Status         : NOK
Failure reason : directfb-1.4.17
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 20:17:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=f290aa705db2084c0864fbf6750e4414a82e48a6
End of log     : http://autobuild.buildroot.net/results/714d0930d39904ffce46fc57ef1bef225f9081a3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/714d0930d39904ffce46fc57ef1bef225f9081a3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/714d0930d39904ffce46fc57ef1bef225f9081a3/config
Defconfig      : http://autobuild.buildroot.net/results/714d0930d39904ffce46fc57ef1bef225f9081a3/defconfig

Build 3309617d2d5e14c0713dbaf9185815d79293e33b
==============================================

Status         : NOK
Failure reason : gd-2.0.35
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-04 20:39:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
End of log     : http://autobuild.buildroot.net/results/3309617d2d5e14c0713dbaf9185815d79293e33b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3309617d2d5e14c0713dbaf9185815d79293e33b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3309617d2d5e14c0713dbaf9185815d79293e33b/config
Defconfig      : http://autobuild.buildroot.net/results/3309617d2d5e14c0713dbaf9185815d79293e33b/defconfig

Build 5c1a305c2e0b892f5d6becadd0f2b505fac10d44
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : sh4a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 21:11:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=f290aa705db2084c0864fbf6750e4414a82e48a6
End of log     : http://autobuild.buildroot.net/results/5c1a305c2e0b892f5d6becadd0f2b505fac10d44/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5c1a305c2e0b892f5d6becadd0f2b505fac10d44/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5c1a305c2e0b892f5d6becadd0f2b505fac10d44/config
Defconfig      : http://autobuild.buildroot.net/results/5c1a305c2e0b892f5d6becadd0f2b505fac10d44/defconfig

Build 27890912c26ba26ce3bd778682b4381aa4d90473
==============================================

Status         : NOK
Failure reason : squid-3.2.3
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 21:29:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=f290aa705db2084c0864fbf6750e4414a82e48a6
End of log     : http://autobuild.buildroot.net/results/27890912c26ba26ce3bd778682b4381aa4d90473/build-end.log
Complete log   : http://autobuild.buildroot.net/results/27890912c26ba26ce3bd778682b4381aa4d90473/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/27890912c26ba26ce3bd778682b4381aa4d90473/config
Defconfig      : http://autobuild.buildroot.net/results/27890912c26ba26ce3bd778682b4381aa4d90473/defconfig

Build 2dbd0d979cf722847f4d708da8e6981ec3e3eb2c
==============================================

Status         : NOK
Failure reason : make: *** [core-dependencies] Error 1
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 21:30:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=540c24838cc0d9a11f8bf0db31b54cfd8d5ee746
End of log     : http://autobuild.buildroot.net/results/2dbd0d979cf722847f4d708da8e6981ec3e3eb2c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2dbd0d979cf722847f4d708da8e6981ec3e3eb2c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2dbd0d979cf722847f4d708da8e6981ec3e3eb2c/config
Defconfig      : http://autobuild.buildroot.net/results/2dbd0d979cf722847f4d708da8e6981ec3e3eb2c/defconfig

Build cc17f0b387d0a365d3a45e3a1d784717079304ab
==============================================

Status         : NOK
Failure reason : make: *** [core-dependencies] Error 1
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 21:30:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=540c24838cc0d9a11f8bf0db31b54cfd8d5ee746
End of log     : http://autobuild.buildroot.net/results/cc17f0b387d0a365d3a45e3a1d784717079304ab/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cc17f0b387d0a365d3a45e3a1d784717079304ab/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cc17f0b387d0a365d3a45e3a1d784717079304ab/config
Defconfig      : http://autobuild.buildroot.net/results/cc17f0b387d0a365d3a45e3a1d784717079304ab/defconfig

Build 7e9d712494cb9abd7e11bd6816241fb4e6b7ba37
==============================================

Status         : NOK
Failure reason : host-python-2.7.3
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 21:36:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=540c24838cc0d9a11f8bf0db31b54cfd8d5ee746
End of log     : http://autobuild.buildroot.net/results/7e9d712494cb9abd7e11bd6816241fb4e6b7ba37/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7e9d712494cb9abd7e11bd6816241fb4e6b7ba37/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7e9d712494cb9abd7e11bd6816241fb4e6b7ba37/config
Defconfig      : http://autobuild.buildroot.net/results/7e9d712494cb9abd7e11bd6816241fb4e6b7ba37/defconfig

Build 548c4d8dbfe5a3097512ab832ac5629818768635
==============================================

Status         : NOK
Failure reason : boost-1.49.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 21:45:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=540c24838cc0d9a11f8bf0db31b54cfd8d5ee746
End of log     : http://autobuild.buildroot.net/results/548c4d8dbfe5a3097512ab832ac5629818768635/build-end.log
Complete log   : http://autobuild.buildroot.net/results/548c4d8dbfe5a3097512ab832ac5629818768635/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/548c4d8dbfe5a3097512ab832ac5629818768635/config
Defconfig      : http://autobuild.buildroot.net/results/548c4d8dbfe5a3097512ab832ac5629818768635/defconfig

Build 3514ca4d9d91ad4d3b3f8e127cd913befbdc7299
==============================================

Status         : NOK
Failure reason : valgrind-3.7.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 22:15:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=540c24838cc0d9a11f8bf0db31b54cfd8d5ee746
End of log     : http://autobuild.buildroot.net/results/3514ca4d9d91ad4d3b3f8e127cd913befbdc7299/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3514ca4d9d91ad4d3b3f8e127cd913befbdc7299/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3514ca4d9d91ad4d3b3f8e127cd913befbdc7299/config
Defconfig      : http://autobuild.buildroot.net/results/3514ca4d9d91ad4d3b3f8e127cd913befbdc7299/defconfig

Build 9798908fae021e88a6c1022d09ca99bbeee0aa38
==============================================

Status         : NOK
Failure reason : netatalk-3.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 22:26:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=d97187f8c813bf030b76ee9cf6d43d407d8e2966
End of log     : http://autobuild.buildroot.net/results/9798908fae021e88a6c1022d09ca99bbeee0aa38/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9798908fae021e88a6c1022d09ca99bbeee0aa38/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9798908fae021e88a6c1022d09ca99bbeee0aa38/config
Defconfig      : http://autobuild.buildroot.net/results/9798908fae021e88a6c1022d09ca99bbeee0aa38/defconfig

Build 37e81b2b6c0ea47172c2d56b31836de0151109c8
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 22:35:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=d97187f8c813bf030b76ee9cf6d43d407d8e2966
End of log     : http://autobuild.buildroot.net/results/37e81b2b6c0ea47172c2d56b31836de0151109c8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/37e81b2b6c0ea47172c2d56b31836de0151109c8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/37e81b2b6c0ea47172c2d56b31836de0151109c8/config
Defconfig      : http://autobuild.buildroot.net/results/37e81b2b6c0ea47172c2d56b31836de0151109c8/defconfig

Build e455c9005369597a0ea1ce8261885ec7d601210f
==============================================

Status         : NOK
Failure reason : valgrind-3.7.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 22:35:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=d97187f8c813bf030b76ee9cf6d43d407d8e2966
End of log     : http://autobuild.buildroot.net/results/e455c9005369597a0ea1ce8261885ec7d601210f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e455c9005369597a0ea1ce8261885ec7d601210f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e455c9005369597a0ea1ce8261885ec7d601210f/config
Defconfig      : http://autobuild.buildroot.net/results/e455c9005369597a0ea1ce8261885ec7d601210f/defconfig

Build 80550a210a72a64c182e00dc2cb3a15ec776b658
==============================================

Status         : NOK
Failure reason : classpath-0.98
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-04 22:59:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=d97187f8c813bf030b76ee9cf6d43d407d8e2966
End of log     : http://autobuild.buildroot.net/results/80550a210a72a64c182e00dc2cb3a15ec776b658/build-end.log
Complete log   : http://autobuild.buildroot.net/results/80550a210a72a64c182e00dc2cb3a15ec776b658/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/80550a210a72a64c182e00dc2cb3a15ec776b658/config
Defconfig      : http://autobuild.buildroot.net/results/80550a210a72a64c182e00dc2cb3a15ec776b658/defconfig

Build 3b5e15c90c9fb687b2d485c7d1873ed439c71d04
==============================================

Status         : NOK
Failure reason : classpath-0.98
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 23:14:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=d97187f8c813bf030b76ee9cf6d43d407d8e2966
End of log     : http://autobuild.buildroot.net/results/3b5e15c90c9fb687b2d485c7d1873ed439c71d04/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3b5e15c90c9fb687b2d485c7d1873ed439c71d04/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3b5e15c90c9fb687b2d485c7d1873ed439c71d04/config
Defconfig      : http://autobuild.buildroot.net/results/3b5e15c90c9fb687b2d485c7d1873ed439c71d04/defconfig

Build 550d852248370d0b9e15bf6604a34dbc3553396d
==============================================

Status         : NOK
Failure reason : make: *** [core-dependencies] Error 1
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 23:21:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=1356ea38cdee8cfa9a532ebf2c9169585a210f50
End of log     : http://autobuild.buildroot.net/results/550d852248370d0b9e15bf6604a34dbc3553396d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/550d852248370d0b9e15bf6604a34dbc3553396d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/550d852248370d0b9e15bf6604a34dbc3553396d/config
Defconfig      : http://autobuild.buildroot.net/results/550d852248370d0b9e15bf6604a34dbc3553396d/defconfig

Build cab2e06612c67b40b2e99530a5d33ffee3177121
==============================================

Status         : NOK
Failure reason : make: *** [core-dependencies] Error 1
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-04 23:21:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=1356ea38cdee8cfa9a532ebf2c9169585a210f50
End of log     : http://autobuild.buildroot.net/results/cab2e06612c67b40b2e99530a5d33ffee3177121/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cab2e06612c67b40b2e99530a5d33ffee3177121/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cab2e06612c67b40b2e99530a5d33ffee3177121/config
Defconfig      : http://autobuild.buildroot.net/results/cab2e06612c67b40b2e99530a5d33ffee3177121/defconfig

Build 8c48d88640786daa4d14040b6e04dbe87ef5abb6
==============================================

Status         : NOK
Failure reason : classpath-0.98
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-04 23:57:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=1356ea38cdee8cfa9a532ebf2c9169585a210f50
End of log     : http://autobuild.buildroot.net/results/8c48d88640786daa4d14040b6e04dbe87ef5abb6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8c48d88640786daa4d14040b6e04dbe87ef5abb6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8c48d88640786daa4d14040b6e04dbe87ef5abb6/config
Defconfig      : http://autobuild.buildroot.net/results/8c48d88640786daa4d14040b6e04dbe87ef5abb6/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [PATCH] [RFC] new target: live filesystem
From: Arnout Vandecappelle @ 2012-12-05  7:18 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <70774b99-43cc-46e9-a3ad-f9f9addb06da@zimbra2.corp.accelance.fr>

On 03/12/12 14:42, Jeremy Rosen wrote:
>
>>> +
>>> +define ROOTFS_LIVE_CMD
>>> + sudo rsync -a --no-o --no-g --delete-during $(TARGET_DIR)/
>>> $(BR2_TARGET_ROOTFS_LIVE_DEST)/
>>> +endef
>>
>> Do we really want to include sudo commands in Buildroot? I'm not sure
>> we want.

  I don't see a fundamental problem with using sudo within buildroot,
as long as it's not for things that can be fakerooted.

[snip]
>>
>> What about instead a post-image script hook, that users can use to
>> extract automatically the tarball image somewhere?
>>
>
> yes, that would work too, I can do that locally to solve my particular problem, but I don't think you would accept it upstream either. If you consider that deploying the live filesystem is not buildroot's job, fine I'll probably do it with post-build scripts instead, but I personally believe that NFS is the most common target and that doing it in buildroot-core is more convinient and makes more sense
>
> pos-install scripts needs to be rewritten by each user, and doing it manually is a bit error prone (especially if you have lots of devs sharing a buildroot project through git, you can have weird side effects with people not cleaning before deplying the new FS)

  +1 to that.

  For me, buildroot should make it *easy* to:

- get an initial system up and running (quickly);

- develop for the target board;

- offer a reproducible and shareable build system.

  We already do very well on all three counts, but we can
always improve.


  In addition, the NFS stuff is a FAQ.  And FAQs are bugs,
really.


  Regards,
  Arnout


> again, I personally think this use-case makes sense, especially in big teams where some members don't want to learn what NFS is (yeah, sounds stupid, but it does happen) and I don't think there are any major drawback (we test sudo properly, we only call it for a specific use-case where it is really needed) except the philosophical question of "should a build tool use a tool giving root-priv like sudo" which in the case of NFS doesn't change much since the user will have to use it himself (either directly or trough post-image script).
>
> I'd really think it makes sense in a "type make, reboot the target, test your change" philosophy which matches really well the idea behind NFS based developement, but it's your call as with any core change...
>
> Regards
> J?r?my

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCH] [RFC] new target: live filesystem
From: Arnout Vandecappelle @ 2012-12-05  7:12 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354531204-17481-1-git-send-email-jeremy.rosen@openwide.fr>

On 03/12/12 11:40, J?r?my Rosen wrote:
> add a new target to deploy a live filesystem to be used with NFS or as a chroot
>
> Signed-off-by: J?r?my Rosen<jeremy.rosen@openwide.fr>
> ---
> v2 : implement Arnoult's suggestion, update manual entry
> ---
>   docs/manual/beyond-buildroot.txt |   16 +++++++---------
>   fs/Config.in                     |    1 +
>   fs/live/Config.in                |   16 ++++++++++++++++
>   fs/live/live.mk                  |   20 ++++++++++++++++++++
>   4 files changed, 44 insertions(+), 9 deletions(-)
>   create mode 100644 fs/live/Config.in
>   create mode 100644 fs/live/live.mk
>
> diff --git a/docs/manual/beyond-buildroot.txt b/docs/manual/beyond-buildroot.txt
> index e7b902d..adf3e83 100644
> --- a/docs/manual/beyond-buildroot.txt
> +++ b/docs/manual/beyond-buildroot.txt
> @@ -9,17 +9,15 @@ Boot the generated images
>   NFS boot
>   ~~~~~~~~
>
> -To achieve NFS-boot, enable _tar root filesystem_ in the _Filesystem
> -images_ menu.
> +To achieve NFS-boot, enable _live root filesystem_ in the _Filesystem
> +images_ menu and select a _live image location_ to choose where the live
> +filesystem will be deployed. you can use _$(BINARIES_DIR)_ to easily
> +build in +/path/to/output_dir/+

  +/path/to/output_dir/images/+

>
> -After a complete build, just run the following commands to setup the
> -NFS-root directory:
> +You will be asked for a password during the build. This is needed to create
> +device entries in the target filesystem
>
> --------------------
> -sudo tar -xavf /path/to/output_dir/rootfs.tar -C /path/to/nfs_root_dir
> --------------------
> -
> -Then, you can execute a NFS-boot from your target.
> +You will need to add the target path  to +/etc/exports+.

  You will need to add the _live image location_ to +/etc/exports+.

>
>   Chroot
>   ------
> diff --git a/fs/Config.in b/fs/Config.in
> index 94154ea..de2377e 100644
> --- a/fs/Config.in
> +++ b/fs/Config.in
> @@ -11,5 +11,6 @@ source "fs/cpio/Config.in"
>   source "fs/iso9660/Config.in"
>   source "fs/initramfs/Config.in"
>   source "fs/romfs/Config.in"
> +source "fs/live/Config.in"
>
>   endmenu
> diff --git a/fs/live/Config.in b/fs/live/Config.in
> new file mode 100644
> index 0000000..60d03a7
> --- /dev/null
> +++ b/fs/live/Config.in
> @@ -0,0 +1,16 @@
> +config BR2_TARGET_ROOTFS_LIVE
> +	bool "live root filesystem"
> +	help
> +	  uses sudo to create a live image of the filesystem
> +	  this is mainly useful if you want to use your filesystem
> +	  over NFS or a chroot

  Help text:

Create a live image of the root filesystem that is directly
usable as over NFS or chroot.

  Leave an empty line between this and the next config.

> +config BR2_TARGET_ROOTFS_LIVE_DEST
> +	string "live image location"
> +	depends on BR2_TARGET_ROOTFS_LIVE
> +	default "$(BINARIES_DIR)/live"
> +	help
> +	  The directory where the image should be stored.
> +	  this directory will be emptied and recreated, it is given

  this -> This

> +	  relative to the buildroot output/images directory

  The second part of this statement is redundant (it's true for all
paths in the config and is not mentioned anywhere else)

> +
> +

  Don't put empty lines at the end of the file (but do make sure
it ends with a newline).

> diff --git a/fs/live/live.mk b/fs/live/live.mk
> new file mode 100644
> index 0000000..33fe515
> --- /dev/null
> +++ b/fs/live/live.mk
> @@ -0,0 +1,20 @@
> +#############################################################
> +#
> +# Build the live root filesystem directory
> +#
> +#############################################################
> +
> +
> +define ROOTFS_LIVE_CMD
> + sudo rsync -a --no-o --no-g --delete-during $(TARGET_DIR)/ $(BR2_TARGET_ROOTFS_LIVE_DEST)/

  Start commands with a tab - that makes it clearer that it's a
command.

  Split the long line.

> +endef
> +
> +define ROOTFS_LIVE_INIT
> +  if [ -z $(shell which sudo) ] ; then echo "sudo seems to not be installed on the host system" ; false ; fi ; \

  This really should be checked in support/dependencies/dependencies.sh.

> +  if [ ! -t 0 ] ; then echo "live filesystem must be generated interactively" ; false ; fi ; \
> +  if [ ! -t 2 ] ; then echo "live filesystem must be generated interactively" ; false ; fi ;

  Don't concatenate commands with \ but just start each command on a new
line starting with a tab.  (Of course, when you split the condition
over several lines, then you have to use \).

  This test is not actually correct, because sudo will use the
controlling terminal (/dev/tty) to ask a password, i.e. it still
works when input and output are redirected. It will however not
work when there is no controlling terminal, e.g. when it's invoked
directly from a window manager menu.  In addition, if an askpass
program is specified, sudo doesn't even need a controlling terminal.

  So maybe it's better to drop the check after all. The sudo command
itself will just fail with 'sudo: no tty present and no askpass
program specified', which is clear enough.

  (I realize I asked for this check in the first place - but only
idiots never change their mind :-)


  Regards,
  Arnout

> +endef
> +
> +ROOTFS_LIVE_PRE_GEN_HOOKS += ROOTFS_LIVE_INIT
> +
> +$(eval $(call ROOTFS_TARGET,live))

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCH 03/51] package/dtc: add option to install programs
From: Arnout Vandecappelle @ 2012-12-05  6:30 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <201212042310.25968.yann.morin.1998@free.fr>

On 04/12/12 23:10, Yann E. MORIN wrote:
> OK, so let's first list what variables we need. I can think of at least
> these (prefix by "$(PKG)_", of coure):
>
> Variable            |  Default  | Notes
> --------------------+-----------+----------------------------------
> MAKE_CONFIG_GOAL    | (empty)   | Not used if empty (or not set?)
> MAKE_BUILD_GOAL     | (empty)   | Will call the default target of the Makefile
> MAKE_INSTALL_GOAL   | install   |
> MAKE_UNINSTALL_GOAL | uninstall |
> MAKE_CLEAN_GOAL     | clean     |
>
> I think the names are explicit enough, save for the first one. Some packages
> may require a step before the acutal build: for the Linux kernel, we need
> to make oldconfig first.
>
> Now, let's settle for a naming convention. See my proposal above.
> Anyone wants to suggest another naming scheme?

  Your proposal looks good to me!

  Regards,
  Arnout
-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [git commit] jamvm: classpath needs ipv6, so jamvm as well
From: Peter Korsgaard @ 2012-12-05  0:00 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=5a5eeae999150ec4dcb60d5847440fbb8fbdc341
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/jamvm/Config.in |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/package/jamvm/Config.in b/package/jamvm/Config.in
index 852c6e8..0287f80 100644
--- a/package/jamvm/Config.in
+++ b/package/jamvm/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_JAMVM
 	bool "jamvm"
+	depends on BR2_INET_IPV6
 	select BR2_PACKAGE_ZLIB
 	select BR2_PACKAGE_CLASSPATH
 	help
@@ -7,3 +8,6 @@ config BR2_PACKAGE_JAMVM
 	  JVM specification version 2 (blue book).
 
 	  http://jamvm.sf.net
+
+comment "jamvm requires a toolchain with IPV6 support"
+	depends on !BR2_INET_IPV6

^ permalink raw reply related

* [Buildroot] [Bug 5750] New: buildroot-2012.11 while building X11 for ARM, errors on  xlib_libX11-1.4.2
From: bugzilla at busybox.net @ 2012-12-04 23:55 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=5750

           Summary: buildroot-2012.11 while building X11 for ARM, errors
                    on  xlib_libX11-1.4.2
           Product: buildroot
           Version: unspecified
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: major
          Priority: P5
         Component: Other
        AssignedTo: unassigned at buildroot.uclibc.org
        ReportedBy: rdghx at 163.com
                CC: buildroot at uclibc.org
   Estimated Hours: 0.0


Created attachment 4670
  --> https://bugs.busybox.net/attachment.cgi?id=4670
config file

CC     Sync.lo
  CC     Synchro.lo
  CC     Text16.lo
  CC     Text.lo
  CC     TextExt16.lo
  CC     TextExt.lo
  CC     TextToStr.lo
  CC     TrCoords.lo
  CC     UndefCurs.lo
  CC     UngrabBut.lo
  CC     UngrabKbd.lo
  CC     UngrabKey.lo
  CC     UngrabPtr.lo
  CC     UngrabSvr.lo
  CC     UninsCmap.lo
  CC     UnldFont.lo
  CC     UnmapSubs.lo
  CC     UnmapWin.lo
  CC     VisUtil.lo
  CC     WarpPtr.lo
  CC     Window.lo
  CC     WinEvent.lo
  CC     Withdraw.lo
  CC     WMGeom.lo
  CC     WMProps.lo
  CC     WrBitF.lo
  CC     xcb_disp.lo
  CC     xcb_io.lo
  CC     XlibAsync.lo
  CC     XlibInt.lo
  CC     Xrm.lo
XlibInt.c: In function '_XPrintDefaultError':
XlibInt.c:1433:5: warning: format not a string literal, argument types not
checked
XlibInt.c:1453:2: warning: format not a string literal, argument types not
checked
XlibInt.c:1485:6: warning: format not a string literal, argument types not
checked
XlibInt.c:1513:2: warning: format not a string literal, argument types not
checked
XlibInt.c:1519:5: warning: format not a string literal, argument types not
checked
XlibInt.c:1523:5: warning: format not a string literal, argument types not
checked
  CC     x11_xcb.lo
  CCLD   libX11.la
libtool: link: warning: library
`/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libxcb.la'
was moved.
/bin/grep:
/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libXau.la:
No such file or directory
/bin/sed: can't read
/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libXau.la:
No such file or directory
libtool: link:
`/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/work/buildroot/buildroot-2012.11/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libXau.la'
is not a valid libtool archive
make[4]: *** [libX11.la] Error 1
make[4]: Leaving directory
`/usr/work/buildroot/buildroot-2012.11/output/build/xlib_libX11-1.4.2/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory
`/usr/work/buildroot/buildroot-2012.11/output/build/xlib_libX11-1.4.2/src'
make[2]: *** [all] Error 2
make[2]: Leaving directory
`/usr/work/buildroot/buildroot-2012.11/output/build/xlib_libX11-1.4.2/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
`/usr/work/buildroot/buildroot-2012.11/output/build/xlib_libX11-1.4.2'
make: ***
[/usr/work/buildroot/buildroot-2012.11/output/build/xlib_libX11-1.4.2/.stamp_built]
Error 2

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

^ permalink raw reply

* [Buildroot] Chances in skeleton don't appear in filesystem
From: Peter Korsgaard @ 2012-12-04 23:29 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121204100344.3167d0e9@skate>

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 >> What's the correct method to modify the defualt filesystem? Thanks.

 Thomas> Do use a custom skeleton, use a custom post-build script to copy/modify
 Thomas> files in output/target. See

s/Do use/Do NOT use/

Alternatively, if you do use a custom rootfs skeleton and want the
skeleton changes to be taken into consideration without doing a clean
rebuild you can manually make the changes under output/target as well
and rerun make.

Using a post-build script is easier though.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] elfutils and the perf userspace tool
From: Stefan Fröberg @ 2012-12-04 23:00 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50BE7E8E.5000201@petroprogram.com>

5.12.2012 0:51, Stefan Fr?berg kirjoitti:
> 5.12.2012 0:34, Thomas Petazzoni kirjoitti:
>> Dear Stefan Fr?berg,
>>
>> On Wed, 05 Dec 2012 00:23:07 +0200, Stefan Fr?berg wrote:
>>
>>>> Don't reinvent the wheel:
>>>>
>>>>   http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-devtools/elfutils/elfutils/uclibc-support.patch
>>>>
>>>> And possibly other patches in:
>>>>
>>>>  http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-devtools/elfutils/elfutils
>>>>
>>>> Thomas
>>> So why those are not in buildroot yet ?
>> Because you forgot to submit a patch? :-)
>>
>> Thomas
> Nah, I have too much work while testing working of latest firefox 16.0.1
> for buildroot right now and trying
> to push patches upstream.
>
> And I let all the honor for that elfutils work to go for Boldan.
>
> But I did some quick checking of those patches and all those are for
> older than 0.155 that Boldan is trying to compile
> and that uclibc-support.patch needs some tuning to be applied cleanly
> for 0.155 version and there is no mention
> of obstack() function problem being fixed (if using uClibc) in any of them.
>
> Maybe it can be fixed without using gnulib (witch provides obstack
> implementation similar to glibc) and using some
> standard comforming function(s) but I could not find any.
>
> Regards
> Stefan
>
>
>
>
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

And now I just noticed this line from that uclibc-support.patch:

|"Upstream-Status: Inappropriate [uclibc specific]"

How nice. Like I said earlier. The makers of this elfutils software are 
really lifting the middle finger in terms of portability.
:P

I wonder if Ulrich Drepper was (still is?) in head of this .........






|




-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121205/5759b72c/attachment.html>

^ permalink raw reply

* [Buildroot] elfutils and the perf userspace tool
From: Stefan Fröberg @ 2012-12-04 22:51 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121204233403.3315e87d@skate>

5.12.2012 0:34, Thomas Petazzoni kirjoitti:
> Dear Stefan Fr?berg,
>
> On Wed, 05 Dec 2012 00:23:07 +0200, Stefan Fr?berg wrote:
>
>>> Don't reinvent the wheel:
>>>
>>>   http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-devtools/elfutils/elfutils/uclibc-support.patch
>>>
>>> And possibly other patches in:
>>>
>>>  http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-devtools/elfutils/elfutils
>>>
>>> Thomas
>> So why those are not in buildroot yet ?
> Because you forgot to submit a patch? :-)
>
> Thomas
Nah, I have too much work while testing working of latest firefox 16.0.1
for buildroot right now and trying
to push patches upstream.

And I let all the honor for that elfutils work to go for Boldan.

But I did some quick checking of those patches and all those are for
older than 0.155 that Boldan is trying to compile
and that uclibc-support.patch needs some tuning to be applied cleanly
for 0.155 version and there is no mention
of obstack() function problem being fixed (if using uClibc) in any of them.

Maybe it can be fixed without using gnulib (witch provides obstack
implementation similar to glibc) and using some
standard comforming function(s) but I could not find any.

Regards
Stefan

^ permalink raw reply

* [Buildroot] [PATCH 8/8] screen: add license information
From: Peter Korsgaard @ 2012-12-04 22:50 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50BE723A.3040102@mind.be>

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

 Arnout> On 30/11/12 11:14, spdawson at gmail.com wrote:
 >> From: Simon Dawson<spdawson@gmail.com>
 >> 
 >> Signed-off-by: Simon Dawson<spdawson@gmail.com>
 >> ---
 >> package/screen/screen.mk |    2 ++
 >> 1 file changed, 2 insertions(+)
 >> 
 >> diff --git a/package/screen/screen.mk b/package/screen/screen.mk
 >> index 8786322..50bb1a6 100644
 >> --- a/package/screen/screen.mk
 >> +++ b/package/screen/screen.mk
 >> @@ -6,6 +6,8 @@
 >> 
 >> SCREEN_VERSION = 4.0.3
 >> SCREEN_SITE = $(BR2_GNU_MIRROR)/screen
 >> +SCREEN_LICENSE = GPLv2

 Arnout>  GPLv2+, actually.

Committed as GPLv2+, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] screen: add license information
From: Peter Korsgaard @ 2012-12-04 22:47 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=29d4d2c6c484b768d7eb36b03f22cb60ac9c285a
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

[Peter: GPLv2+ as pointed out by Arnout]
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/screen/screen.mk |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/package/screen/screen.mk b/package/screen/screen.mk
index 8786322..dd8a732 100644
--- a/package/screen/screen.mk
+++ b/package/screen/screen.mk
@@ -6,6 +6,8 @@
 
 SCREEN_VERSION = 4.0.3
 SCREEN_SITE = $(BR2_GNU_MIRROR)/screen
+SCREEN_LICENSE = GPLv2+
+SCREEN_LICENSE_FILES = COPYING
 SCREEN_DEPENDENCIES = ncurses
 SCREEN_CONF_ENV = ac_cv_header_elf_h=no ac_cv_header_dwarf_h=no \
 	CFLAGS="$(TARGET_CFLAGS) -DTERMINFO"

^ permalink raw reply related

* [Buildroot] [PATCH 7/8] oprofile: add license information
From: Peter Korsgaard @ 2012-12-04 22:44 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50BE7139.4000405@mind.be>

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

 Arnout> On 30/11/12 11:14, spdawson at gmail.com wrote:
 >> From: Simon Dawson<simond@trainfx.com>
 >> 
 >> Signed-off-by: Simon Dawson<simond@trainfx.com>
 >> ---
 >> package/oprofile/oprofile.mk |    2 ++
 >> 1 file changed, 2 insertions(+)
 >> 
 >> diff --git a/package/oprofile/oprofile.mk b/package/oprofile/oprofile.mk
 >> index 54c46dd..17d225a 100644
 >> --- a/package/oprofile/oprofile.mk
 >> +++ b/package/oprofile/oprofile.mk
 >> @@ -6,6 +6,8 @@
 >> 
 >> OPROFILE_VERSION = 0.9.7
 >> OPROFILE_SITE = http://downloads.sourceforge.net/project/oprofile/oprofile/oprofile-$(OPROFILE_VERSION)
 >> +OPROFILE_LICENSE = GPLv2

 Arnout>  Only a few files specify the license, but the ones that do specify
 Arnout> "or later" - including the man page. So it should be GPLv2+.

 Arnout>  (libjvmti, libjvmpi and libopagent libraries are LGPLv2.1+,
 Arnout> for which no license file is included. However, since we don't
 Arnout> install to staging, this is probably not relevant.)

Committed as GPLv2+, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] oprofile: add license information
From: Peter Korsgaard @ 2012-12-04 22:44 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=c0975586ee3241988afc504f1e19494ef13b3189
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

[Peter: GPLv2+ as pointed out by Arnout]
Signed-off-by: Simon Dawson <simond@trainfx.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/oprofile/oprofile.mk |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/package/oprofile/oprofile.mk b/package/oprofile/oprofile.mk
index 54c46dd..75f8407 100644
--- a/package/oprofile/oprofile.mk
+++ b/package/oprofile/oprofile.mk
@@ -6,6 +6,8 @@
 
 OPROFILE_VERSION = 0.9.7
 OPROFILE_SITE = http://downloads.sourceforge.net/project/oprofile/oprofile/oprofile-$(OPROFILE_VERSION)
+OPROFILE_LICENSE = GPLv2+
+OPROFILE_LICENSE_FILES = COPYING
 OPROFILE_CONF_OPT = --localstatedir=/var --with-kernel-support
 OPROFILE_BINARIES = utils/ophelp pp/opannotate pp/oparchive pp/opgprof
 OPROFILE_BINARIES += pp/opreport opjitconv/opjitconv daemon/oprofiled

^ permalink raw reply related


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