Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 15/19] efl/libethumb: bump to 1.7.4 and change download location
From: Thomas Petazzoni @ 2012-12-30  6:31 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <cover.1356849033.git.thomas.petazzoni@free-electrons.com>

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/efl/libethumb/libethumb.mk |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/efl/libethumb/libethumb.mk b/package/efl/libethumb/libethumb.mk
index ba77e4c..eb098ea 100644
--- a/package/efl/libethumb/libethumb.mk
+++ b/package/efl/libethumb/libethumb.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-LIBETHUMB_VERSION = 0.1.1.65643
+LIBETHUMB_VERSION = 1.7.4
 LIBETHUMB_SOURCE = ethumb-$(LIBETHUMB_VERSION).tar.bz2
-LIBETHUMB_SITE = http://download.enlightenment.org/snapshots/2011-11-28
+LIBETHUMB_SITE = http://download.enlightenment.org/releases/
 LIBETHUMB_LICENSE = LGPLv2.1+
 LIBETHUMB_LICENSE_FILES = COPYING
 
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 16/19] librsvg: relax dependency on Gtk, add gdk-pixbuf dependency
From: Thomas Petazzoni @ 2012-12-30  6:31 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <cover.1356849033.git.thomas.petazzoni@free-electrons.com>

librsvg doesn't *require* Gtk, it can optionally build a Gtk theme
engine, but it is not mandatory. Therefore, we make the Gtk dependency
an optional dependency rather than a hard dependency. This will be
useful as librsvg will become a dependency of libevas-generic-loaders,
used in an EFL context in which building libgtk is not really what we
want.

However, gdk-pixbuf is a mandatory dependency to build librsvg, so we
add this one.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/librsvg/Config.in  |    2 +-
 package/librsvg/librsvg.mk |    8 +++++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/package/librsvg/Config.in b/package/librsvg/Config.in
index fdb7d31..855b3d6 100644
--- a/package/librsvg/Config.in
+++ b/package/librsvg/Config.in
@@ -5,7 +5,7 @@ config BR2_PACKAGE_LIBRSVG
 	select BR2_PACKAGE_CAIRO_PNG
 	select BR2_PACKAGE_PANGO
 	select BR2_PACKAGE_LIBGLIB2
-	depends on BR2_PACKAGE_LIBGTK2
+	select BR2_PACKAGE_GDK_PIXBUF
 	depends on BR2_USE_WCHAR # glib2
 	help
 	  The rsvg library is an efficient renderer for Scalable
diff --git a/package/librsvg/librsvg.mk b/package/librsvg/librsvg.mk
index e54c06c..745fcfa 100644
--- a/package/librsvg/librsvg.mk
+++ b/package/librsvg/librsvg.mk
@@ -11,6 +11,12 @@ LIBRSVG_SOURCE:=librsvg-$(LIBRSVG_VERSION).tar.gz
 LIBRSVG_SITE:=http://ftp.gnome.org/pub/GNOME/sources/librsvg/$(LIBRSVG_VERSION_MAJOR)/
 LIBRSVG_INSTALL_STAGING = YES
 LIBRSVG_CONF_OPT = --disable-tools
-LIBRSVG_DEPENDENCIES = libxml2 cairo pango libglib2 libgtk2
+LIBRSVG_DEPENDENCIES = libxml2 cairo pango libglib2 gdk-pixbuf
+
+# If we have Gtk2, let's build it first to benefit from librsvg Gtk
+# support.
+ifeq ($(BR2_PACKAGE_LIBGTK2),y)
+LIBRSVG_DEPENDENCIES += libgtk2
+endif
 
 $(eval $(autotools-package))
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 17/19] efl/libevas-generic-loaders: new package
From: Thomas Petazzoni @ 2012-12-30  6:31 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <cover.1356849033.git.thomas.petazzoni@free-electrons.com>

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/efl/Config.in                              |    1 +
 package/efl/libevas-generic-loaders/Config.in      |   21 +++++++++++++
 .../libevas-generic-loaders.mk                     |   31 ++++++++++++++++++++
 3 files changed, 53 insertions(+)
 create mode 100644 package/efl/libevas-generic-loaders/Config.in
 create mode 100644 package/efl/libevas-generic-loaders/libevas-generic-loaders.mk

diff --git a/package/efl/Config.in b/package/efl/Config.in
index a526d87..bb1a986 100644
--- a/package/efl/Config.in
+++ b/package/efl/Config.in
@@ -15,6 +15,7 @@ source "package/efl/libeet/Config.in"
 source "package/efl/libefreet/Config.in"
 source "package/efl/libeio/Config.in"
 source "package/efl/libevas/Config.in"
+source "package/efl/libevas-generic-loaders/Config.in"
 source "package/efl/libembryo/Config.in"
 source "package/efl/libedje/Config.in"
 source "package/efl/libethumb/Config.in"
diff --git a/package/efl/libevas-generic-loaders/Config.in b/package/efl/libevas-generic-loaders/Config.in
new file mode 100644
index 0000000..44bc37d
--- /dev/null
+++ b/package/efl/libevas-generic-loaders/Config.in
@@ -0,0 +1,21 @@
+config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
+	bool "libevas generic loaders"
+	select BR2_PACKAGE_LIBEINA
+	help
+	  These are additional "generic" loaders for Evas that are
+	  stand-alone executables that evas may run from its generic
+	  loader module.
+
+	  http://trac.enlightenment.org/e/wiki/Evas_Generic_Loaders
+
+if BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
+
+config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS_SVG
+	bool "SVG loader"
+	select BR2_PACKAGE_LIBRSVG
+	select BR2_PACKAGE_CAIRO
+	depends on BR2_USE_WCHAR # librsvg -> glib2
+	help
+	  This option enables the Evas generic SVG loader
+
+endif
diff --git a/package/efl/libevas-generic-loaders/libevas-generic-loaders.mk b/package/efl/libevas-generic-loaders/libevas-generic-loaders.mk
new file mode 100644
index 0000000..76236b1
--- /dev/null
+++ b/package/efl/libevas-generic-loaders/libevas-generic-loaders.mk
@@ -0,0 +1,31 @@
+#############################################################
+#
+# libevas-generic-loaders
+#
+#############################################################
+
+LIBEVAS_GENERIC_LOADERS_VERSION = 1.7.4
+LIBEVAS_GENERIC_LOADERS_SOURCE = evas_generic_loaders-$(LIBEVAS_GENERIC_LOADERS_VERSION).tar.bz2
+LIBEVAS_GENERIC_LOADERS_SITE = http://download.enlightenment.org/releases/
+LIBEVAS_GENERIC_LOADERS_LICENSE = GPLv2
+LIBEVAS_GENERIC_LOADERS_LICENSE_FILES = COPYING
+
+LIBEVAS_GENERIC_LOADERS_INSTALL_STAGING = YES
+
+LIBEVAS_GENERIC_LOADERS_DEPENDENCIES = libeina
+
+# For now, we only support the SVG loader
+LIBEVAS_GENERIC_LOADERS_CONF_OPT += \
+	--disable-poppler \
+	--disable-spectre \
+	--disable-libraw \
+	--disable-gstreamer
+
+ifeq ($(BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS_SVG),y)
+LIBEVAS_GENERIC_LOADERS_DEPENDENCIES += librsvg cairo
+LIBEVAS_GENERIC_LOADERS_CONF_OPT += --enable-svg
+else
+LIBEVAS_GENERIC_LOADERS_CONF_OPT += --disable-svg
+endif
+
+$(eval $(autotools-package))
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 18/19] xcb-util-keysyms: new package
From: Thomas Petazzoni @ 2012-12-30  6:31 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <cover.1356849033.git.thomas.petazzoni@free-electrons.com>

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/x11r7/Config.in                            |    1 +
 package/x11r7/xcb-util-keysyms/Config.in           |   14 ++++++++++++++
 package/x11r7/xcb-util-keysyms/xcb-util-keysyms.mk |   12 ++++++++++++
 3 files changed, 27 insertions(+)
 create mode 100644 package/x11r7/xcb-util-keysyms/Config.in
 create mode 100644 package/x11r7/xcb-util-keysyms/xcb-util-keysyms.mk

diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index bb538e1..94ad8a4 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -39,6 +39,7 @@ endmenu
 		source package/x11r7/mesa3d/Config.in
 		source package/x11r7/pthread-stubs/Config.in
 		source package/x11r7/xcb-util/Config.in
+		source package/x11r7/xcb-util-keysyms/Config.in
 		source package/x11r7/xlib_libFS/Config.in
 		source package/x11r7/xlib_libICE/Config.in
 		source package/x11r7/xlib_libSM/Config.in
diff --git a/package/x11r7/xcb-util-keysyms/Config.in b/package/x11r7/xcb-util-keysyms/Config.in
new file mode 100644
index 0000000..ef42eb2
--- /dev/null
+++ b/package/x11r7/xcb-util-keysyms/Config.in
@@ -0,0 +1,14 @@
+config BR2_PACKAGE_XCB_UTIL_KEYSYMS
+	bool "xcb-util-keysyms"
+	help
+	  The XCB util modules provides a number of libraries which sit on top
+	  of libxcb, the core X protocol library, and some of the extension
+	  libraries. These experimental libraries provide convenience functions
+	  and interfaces which make the raw X protocol more usable. Some of the
+	  libraries also provide client-side code which is not strictly part of
+	  the X protocol but which have traditionally been provided by Xlib.
+
+	  XCB util-keysyms module provides the following library: keysyms:
+	  Standard X key constants and conversion to/from keycodes.
+
+	  http://xcb.freedesktop.org/
diff --git a/package/x11r7/xcb-util-keysyms/xcb-util-keysyms.mk b/package/x11r7/xcb-util-keysyms/xcb-util-keysyms.mk
new file mode 100644
index 0000000..18db52a
--- /dev/null
+++ b/package/x11r7/xcb-util-keysyms/xcb-util-keysyms.mk
@@ -0,0 +1,12 @@
+#############################################################
+#
+# xcb-util-keysyms
+#
+#############################################################
+XCB_UTIL_KEYSYMS_VERSION = 0.3.9
+XCB_UTIL_KEYSYMS_SOURCE = xcb-util-keysyms-$(XCB_UTIL_KEYSYMS_VERSION).tar.bz2
+XCB_UTIL_KEYSYMS_SITE = http://xcb.freedesktop.org/dist/
+XCB_UTIL_KEYSYMS_INSTALL_STAGING = YES
+
+$(eval $(autotools-package))
+
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 19/19] enlightenment: new package
From: Thomas Petazzoni @ 2012-12-30  6:31 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <cover.1356849033.git.thomas.petazzoni@free-electrons.com>

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/Config.in                                  |    1 +
 package/enlightenment/Config.in                    |   37 ++++++++++++++++++
 .../enlightenment/enlightenment-no-execinfo.patch  |   27 +++++++++++++
 package/enlightenment/enlightenment.mk             |   40 ++++++++++++++++++++
 4 files changed, 105 insertions(+)
 create mode 100644 package/enlightenment/Config.in
 create mode 100644 package/enlightenment/enlightenment-no-execinfo.patch
 create mode 100644 package/enlightenment/enlightenment.mk

diff --git a/package/Config.in b/package/Config.in
index 8cec873..7860f3f 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -151,6 +151,7 @@ source "package/liberation/Config.in"
 source "package/libsexy/Config.in"
 
 comment "X Window managers"
+source "package/enlightenment/Config.in"
 source "package/matchbox/Config.in"
 source "package/metacity/Config.in"
 source "package/blackbox/Config.in"
diff --git a/package/enlightenment/Config.in b/package/enlightenment/Config.in
new file mode 100644
index 0000000..4978367
--- /dev/null
+++ b/package/enlightenment/Config.in
@@ -0,0 +1,37 @@
+config BR2_PACKAGE_ENLIGHTENMENT
+	bool "enlightenment"
+	select BR2_PACKAGE_LIBECORE
+	select BR2_PACKAGE_LIBECORE_X
+	select BR2_PACKAGE_LIBEINA
+	select BR2_PACKAGE_LIBEET
+	select BR2_PACKAGE_LIBEVAS
+	select BR2_PACKAGE_LIBEVAS_JPEG
+	select BR2_PACKAGE_LIBEVAS_PNG
+	select BR2_PACKAGE_LIBEVAS_EET
+	select BR2_PACKAGE_LIBECORE_EVAS
+	select BR2_PACKAGE_LIBEDJE
+	select BR2_PACKAGE_LIBEFREET
+	select BR2_PACKAGE_LIBEDBUS
+	select BR2_PACKAGE_LIBEIO
+	select BR2_PACKAGE_XCB_UTIL_KEYSYMS
+	select BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
+	select BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS_SVG
+	# libevas-generic-loaders-svg -> librsvg -> glib2
+	depends on BR2_USE_WCHAR
+	# libedbus -> dbus
+	depends on BR2_TOOLCHAIN_HAS_THREADS
+	# libedbus -> dbus
+	depends on BR2_USE_MMU
+	depends on BR2_PACKAGE_XORG7
+	help
+	  Enlightenment, also known simply as E, is a stacking window
+	  manager for the X Window System which can be used alone or
+	  in conjunction with a desktop environment such as GNOME or
+	  KDE. Enlightenment can be used as a substitute for a full
+	  desktop environment.
+
+	  http://www.enlightenment.org/
+
+comment "enlightenment requires WCHAR and thread support in toolchain"
+	depends on BR2_PACKAGE_XORG7
+	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/enlightenment/enlightenment-no-execinfo.patch b/package/enlightenment/enlightenment-no-execinfo.patch
new file mode 100644
index 0000000..81fbe17
--- /dev/null
+++ b/package/enlightenment/enlightenment-no-execinfo.patch
@@ -0,0 +1,27 @@
+Do not include <execinfo.h> when not available
+
+On uClibc, <execinfo.h> is not necessarily installed, depending on the
+configuration. Enlightenment properly makes <execinfo.h> optional, but
+uses __GLIBC__ to check if it is available or not. Unfortunately,
+uClibc defines __GLIBC__, so it is not the right way to decide if
+<execinfo.h> is available.
+
+Instead, Enlightenment already has a configure.ac check for
+execinfo.h, so we simply use the result of this configure.ac check to
+decide whether execinfo.h is to be included or not.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+Index: b/src/bin/e.h
+===================================================================
+--- a/src/bin/e.h
++++ b/src/bin/e.h
+@@ -92,7 +92,7 @@
+ #  include <memcheck.h>
+ # endif
+ 
+-# ifdef __GLIBC__
++# ifdef HAVE_EXECINFO_H
+ #  include <execinfo.h>
+ # endif
+ 
diff --git a/package/enlightenment/enlightenment.mk b/package/enlightenment/enlightenment.mk
new file mode 100644
index 0000000..cd3b21f
--- /dev/null
+++ b/package/enlightenment/enlightenment.mk
@@ -0,0 +1,40 @@
+#############################################################
+#
+# enlightenment
+#
+#############################################################
+
+ENLIGHTENMENT_VERSION = 0.17.0-omega
+ENLIGHTENMENT_SITE = http://download.enlightenment.org/releases/
+ENLIGHTENMENT_LICENSE = BSD-2c
+ENLIGHTENMENT_LICENSE_FILES = COPYING
+
+ENLIGHTENMENT_DEPENDENCIES = 	\
+	host-pkgconf 		\
+	libecore 		\
+	libeet 			\
+	libeina 		\
+	libevas 		\
+	libevas-generic-loaders \
+	libedje 		\
+	libefreet 		\
+	libedbus 		\
+	libeio 			\
+	host-libedje 		\
+	host-libeet		\
+	xcb-util-keysyms
+
+ENLIGHTENMENT_CONF_OPT = --with-edje-cc=$(HOST_DIR)/usr/bin/edje_cc \
+			 --with-eet-eet=$(HOST_DIR)/usr/bin/eet \
+			 --disable-rpath
+
+ifeq ($(BR2_HAVE_DOCUMENTATION),)
+define ENLIGHTENMENT_REMOVE_DOCUMENTATION
+	rm -rf $(TARGET_DIR)/usr/share/enlightenment/doc/
+	rm -f $(TARGET_DIR)/usr/share/enlightenment/COPYING
+	rm -f $(TARGET_DIR)/usr/share/enlightenment/AUTHORS
+endef
+ENLIGHTENMENT_POST_INSTALL_TARGET_HOOKS += ENLIGHTENMENT_REMOVE_DOCUMENTATION
+endif
+
+$(eval $(autotools-package))
-- 
1.7.9.5

^ permalink raw reply related

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


Hello,

On 2012-12-29, 168 random build tests have been done and
submitted on autobuild.buildroot.net.
 77 builds have been successful
 91 builds have failed

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

Build 7915f9496c8b4ee5de4d4c6bd6ad9ebe0d744ed0
==============================================

Status         : NOK
Failure reason : gpsd-3.7
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 00:24:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/7915f9496c8b4ee5de4d4c6bd6ad9ebe0d744ed0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7915f9496c8b4ee5de4d4c6bd6ad9ebe0d744ed0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7915f9496c8b4ee5de4d4c6bd6ad9ebe0d744ed0/config
Defconfig      : http://autobuild.buildroot.net/results/7915f9496c8b4ee5de4d4c6bd6ad9ebe0d744ed0/defconfig

Build 7f01f51ac6d62cb24826852cb30e2f1a8d2c6fbb
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 00:37:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=653d64c5094d34ade03d0c30ead151ac9223edbd
End of log     : http://autobuild.buildroot.net/results/7f01f51ac6d62cb24826852cb30e2f1a8d2c6fbb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7f01f51ac6d62cb24826852cb30e2f1a8d2c6fbb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7f01f51ac6d62cb24826852cb30e2f1a8d2c6fbb/config
Defconfig      : http://autobuild.buildroot.net/results/7f01f51ac6d62cb24826852cb30e2f1a8d2c6fbb/defconfig

Build 23d12c80187870d243f0eab7366defcedb965fc5
==============================================

Status         : NOK
Failure reason : dvb-apps-3fc7dfa68484
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 01:06:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/23d12c80187870d243f0eab7366defcedb965fc5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/23d12c80187870d243f0eab7366defcedb965fc5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/23d12c80187870d243f0eab7366defcedb965fc5/config
Defconfig      : http://autobuild.buildroot.net/results/23d12c80187870d243f0eab7366defcedb965fc5/defconfig

Build 46534518df2e4a8b67a1475b50e9a9ac23adb5a1
==============================================

Status         : NOK
Failure reason : gdb-7.4.1-target
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 01:12:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/46534518df2e4a8b67a1475b50e9a9ac23adb5a1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/46534518df2e4a8b67a1475b50e9a9ac23adb5a1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/46534518df2e4a8b67a1475b50e9a9ac23adb5a1/config
Defconfig      : http://autobuild.buildroot.net/results/46534518df2e4a8b67a1475b50e9a9ac23adb5a1/defconfig

Build 34914172ab43b5258b0a4cebb9fc3d5eb9692f17
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 01:28:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/34914172ab43b5258b0a4cebb9fc3d5eb9692f17/build-end.log
Complete log   : http://autobuild.buildroot.net/results/34914172ab43b5258b0a4cebb9fc3d5eb9692f17/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/34914172ab43b5258b0a4cebb9fc3d5eb9692f17/config
Defconfig      : http://autobuild.buildroot.net/results/34914172ab43b5258b0a4cebb9fc3d5eb9692f17/defconfig

Build c050c5cc636c8606a06893f3cc90b533d0caff6a
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 01:32:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/c050c5cc636c8606a06893f3cc90b533d0caff6a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c050c5cc636c8606a06893f3cc90b533d0caff6a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c050c5cc636c8606a06893f3cc90b533d0caff6a/config
Defconfig      : http://autobuild.buildroot.net/results/c050c5cc636c8606a06893f3cc90b533d0caff6a/defconfig

Build feadf0791ce300dc0093950867ac1d1b00d0e3fd
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 01:40:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/feadf0791ce300dc0093950867ac1d1b00d0e3fd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/feadf0791ce300dc0093950867ac1d1b00d0e3fd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/feadf0791ce300dc0093950867ac1d1b00d0e3fd/config
Defconfig      : http://autobuild.buildroot.net/results/feadf0791ce300dc0093950867ac1d1b00d0e3fd/defconfig

Build f158cb43f02878885c0fc753f5c5a6d7b6ffdb43
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 01:47:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/f158cb43f02878885c0fc753f5c5a6d7b6ffdb43/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f158cb43f02878885c0fc753f5c5a6d7b6ffdb43/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f158cb43f02878885c0fc753f5c5a6d7b6ffdb43/config
Defconfig      : http://autobuild.buildroot.net/results/f158cb43f02878885c0fc753f5c5a6d7b6ffdb43/defconfig

Build dff349df244cd1a764a603415a1efec4770aa80c
==============================================

Status         : NOK
Failure reason : berkeleydb-5.3.21
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 01:48:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/dff349df244cd1a764a603415a1efec4770aa80c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/dff349df244cd1a764a603415a1efec4770aa80c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/dff349df244cd1a764a603415a1efec4770aa80c/config
Defconfig      : http://autobuild.buildroot.net/results/dff349df244cd1a764a603415a1efec4770aa80c/defconfig

Build 13557555e0955533844ea5fb5ca67968dfe1b058
==============================================

Status         : NOK
Failure reason : libecore-1.1.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 02:15:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/13557555e0955533844ea5fb5ca67968dfe1b058/build-end.log
Complete log   : http://autobuild.buildroot.net/results/13557555e0955533844ea5fb5ca67968dfe1b058/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/13557555e0955533844ea5fb5ca67968dfe1b058/config
Defconfig      : http://autobuild.buildroot.net/results/13557555e0955533844ea5fb5ca67968dfe1b058/defconfig

Build 8e475ab6c226069893b013c2f4022bf31bbd9b8a
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 02:19:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/8e475ab6c226069893b013c2f4022bf31bbd9b8a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8e475ab6c226069893b013c2f4022bf31bbd9b8a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8e475ab6c226069893b013c2f4022bf31bbd9b8a/config
Defconfig      : http://autobuild.buildroot.net/results/8e475ab6c226069893b013c2f4022bf31bbd9b8a/defconfig

Build 850774623bdd84d932c16dd851dc216b0aad4309
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 02:24:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/850774623bdd84d932c16dd851dc216b0aad4309/build-end.log
Complete log   : http://autobuild.buildroot.net/results/850774623bdd84d932c16dd851dc216b0aad4309/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/850774623bdd84d932c16dd851dc216b0aad4309/config
Defconfig      : http://autobuild.buildroot.net/results/850774623bdd84d932c16dd851dc216b0aad4309/defconfig

Build 6e73bc9f2c3ecf209d96c05f5c55977038916e3f
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 02:29:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/6e73bc9f2c3ecf209d96c05f5c55977038916e3f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6e73bc9f2c3ecf209d96c05f5c55977038916e3f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6e73bc9f2c3ecf209d96c05f5c55977038916e3f/config
Defconfig      : http://autobuild.buildroot.net/results/6e73bc9f2c3ecf209d96c05f5c55977038916e3f/defconfig

Build 49187a48313b95871b94f98f06d34d94263e793d
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 03:03:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/49187a48313b95871b94f98f06d34d94263e793d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/49187a48313b95871b94f98f06d34d94263e793d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/49187a48313b95871b94f98f06d34d94263e793d/config
Defconfig      : http://autobuild.buildroot.net/results/49187a48313b95871b94f98f06d34d94263e793d/defconfig

Build 79e3ced0943cb6491b643a0f8e988da6e9a7ce3b
==============================================

Status         : NOK
Failure reason : dvb-apps-3fc7dfa68484
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 03:29:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/79e3ced0943cb6491b643a0f8e988da6e9a7ce3b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/79e3ced0943cb6491b643a0f8e988da6e9a7ce3b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/79e3ced0943cb6491b643a0f8e988da6e9a7ce3b/config
Defconfig      : http://autobuild.buildroot.net/results/79e3ced0943cb6491b643a0f8e988da6e9a7ce3b/defconfig

Build 544f8bc388a07a7190b6442484ca5dca0076258a
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 03:43:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/544f8bc388a07a7190b6442484ca5dca0076258a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/544f8bc388a07a7190b6442484ca5dca0076258a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/544f8bc388a07a7190b6442484ca5dca0076258a/config
Defconfig      : http://autobuild.buildroot.net/results/544f8bc388a07a7190b6442484ca5dca0076258a/defconfig

Build b3efaebf069b9abda607af22dfbd55f2b8bdc0a5
==============================================

Status         : NOK
Failure reason : make: *** [gnutls-legal-info] Error 1
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 03:53:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/b3efaebf069b9abda607af22dfbd55f2b8bdc0a5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b3efaebf069b9abda607af22dfbd55f2b8bdc0a5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b3efaebf069b9abda607af22dfbd55f2b8bdc0a5/config
Defconfig      : http://autobuild.buildroot.net/results/b3efaebf069b9abda607af22dfbd55f2b8bdc0a5/defconfig

Build 62d7d55d2157a43f3c8e235c5cdf5bf1ca29aec1
==============================================

Status         : NOK
Failure reason : nettle-2.5
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 04:33:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/62d7d55d2157a43f3c8e235c5cdf5bf1ca29aec1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/62d7d55d2157a43f3c8e235c5cdf5bf1ca29aec1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/62d7d55d2157a43f3c8e235c5cdf5bf1ca29aec1/config
Defconfig      : http://autobuild.buildroot.net/results/62d7d55d2157a43f3c8e235c5cdf5bf1ca29aec1/defconfig

Build a117eff4935d7e11467c882c8af27d854e1d5814
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 04:43:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/a117eff4935d7e11467c882c8af27d854e1d5814/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a117eff4935d7e11467c882c8af27d854e1d5814/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a117eff4935d7e11467c882c8af27d854e1d5814/config
Defconfig      : http://autobuild.buildroot.net/results/a117eff4935d7e11467c882c8af27d854e1d5814/defconfig

Build 2a8e3c4d65601275844d54ec325add28308cce06
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 04:53:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/2a8e3c4d65601275844d54ec325add28308cce06/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2a8e3c4d65601275844d54ec325add28308cce06/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2a8e3c4d65601275844d54ec325add28308cce06/config
Defconfig      : http://autobuild.buildroot.net/results/2a8e3c4d65601275844d54ec325add28308cce06/defconfig

Build f8c8c7af87a9a1ca82f51db9494921b5105fea39
==============================================

Status         : NOK
Failure reason : libnfc-fda8d60ce062
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 05:15:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/f8c8c7af87a9a1ca82f51db9494921b5105fea39/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f8c8c7af87a9a1ca82f51db9494921b5105fea39/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f8c8c7af87a9a1ca82f51db9494921b5105fea39/config
Defconfig      : http://autobuild.buildroot.net/results/f8c8c7af87a9a1ca82f51db9494921b5105fea39/defconfig

Build 87b61b26fde23617b0550d68c5631fb9d129652d
==============================================

Status         : NOK
Failure reason : berkeleydb-5.3.21
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 05:18:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/87b61b26fde23617b0550d68c5631fb9d129652d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/87b61b26fde23617b0550d68c5631fb9d129652d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/87b61b26fde23617b0550d68c5631fb9d129652d/config
Defconfig      : http://autobuild.buildroot.net/results/87b61b26fde23617b0550d68c5631fb9d129652d/defconfig

Build 819139cb22fc9ed8233b3cdab14b1c2aae62f04a
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 05:21:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/819139cb22fc9ed8233b3cdab14b1c2aae62f04a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/819139cb22fc9ed8233b3cdab14b1c2aae62f04a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/819139cb22fc9ed8233b3cdab14b1c2aae62f04a/config
Defconfig      : http://autobuild.buildroot.net/results/819139cb22fc9ed8233b3cdab14b1c2aae62f04a/defconfig

Build 87ae30b170a95c9d5a7c6b3ad048b3f346fbd2f5
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 05:40:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/87ae30b170a95c9d5a7c6b3ad048b3f346fbd2f5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/87ae30b170a95c9d5a7c6b3ad048b3f346fbd2f5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/87ae30b170a95c9d5a7c6b3ad048b3f346fbd2f5/config
Defconfig      : http://autobuild.buildroot.net/results/87ae30b170a95c9d5a7c6b3ad048b3f346fbd2f5/defconfig

Build ae2c5c388a1cac8144f0546a113c15aa7f7a20dd
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 05:55:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/ae2c5c388a1cac8144f0546a113c15aa7f7a20dd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ae2c5c388a1cac8144f0546a113c15aa7f7a20dd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ae2c5c388a1cac8144f0546a113c15aa7f7a20dd/config
Defconfig      : http://autobuild.buildroot.net/results/ae2c5c388a1cac8144f0546a113c15aa7f7a20dd/defconfig

Build 37cae449ca8a0f1fd64cc23dc35abd08fc47c8cc
==============================================

Status         : NOK
Failure reason : qt-4.8.3
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 05:55:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/37cae449ca8a0f1fd64cc23dc35abd08fc47c8cc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/37cae449ca8a0f1fd64cc23dc35abd08fc47c8cc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/37cae449ca8a0f1fd64cc23dc35abd08fc47c8cc/config
Defconfig      : http://autobuild.buildroot.net/results/37cae449ca8a0f1fd64cc23dc35abd08fc47c8cc/defconfig

Build 159485b8df5c70755c2c4fe03f63a5f1d1f48fc4
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 06:10:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/159485b8df5c70755c2c4fe03f63a5f1d1f48fc4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/159485b8df5c70755c2c4fe03f63a5f1d1f48fc4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/159485b8df5c70755c2c4fe03f63a5f1d1f48fc4/config
Defconfig      : http://autobuild.buildroot.net/results/159485b8df5c70755c2c4fe03f63a5f1d1f48fc4/defconfig

Build 4064433b00b3bed3779e38d75f39ff0acbc8def6
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 06:17:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/4064433b00b3bed3779e38d75f39ff0acbc8def6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4064433b00b3bed3779e38d75f39ff0acbc8def6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4064433b00b3bed3779e38d75f39ff0acbc8def6/config
Defconfig      : http://autobuild.buildroot.net/results/4064433b00b3bed3779e38d75f39ff0acbc8def6/defconfig

Build fcd725417bfeb1372f51f6657ed3bd85dd16784b
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 06:35:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/fcd725417bfeb1372f51f6657ed3bd85dd16784b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fcd725417bfeb1372f51f6657ed3bd85dd16784b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fcd725417bfeb1372f51f6657ed3bd85dd16784b/config
Defconfig      : http://autobuild.buildroot.net/results/fcd725417bfeb1372f51f6657ed3bd85dd16784b/defconfig

Build 48a3bed6397c023c0c10e19f930bd7d97a81d909
==============================================

Status         : NOK
Failure reason : make: *** [gnutls-legal-info] Error 1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 06:36:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/48a3bed6397c023c0c10e19f930bd7d97a81d909/build-end.log
Complete log   : http://autobuild.buildroot.net/results/48a3bed6397c023c0c10e19f930bd7d97a81d909/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/48a3bed6397c023c0c10e19f930bd7d97a81d909/config
Defconfig      : http://autobuild.buildroot.net/results/48a3bed6397c023c0c10e19f930bd7d97a81d909/defconfig

Build 740fe87b7ad7f1ca3cfe3a1d709f50baf4fbf96c
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 06:44:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/740fe87b7ad7f1ca3cfe3a1d709f50baf4fbf96c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/740fe87b7ad7f1ca3cfe3a1d709f50baf4fbf96c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/740fe87b7ad7f1ca3cfe3a1d709f50baf4fbf96c/config
Defconfig      : http://autobuild.buildroot.net/results/740fe87b7ad7f1ca3cfe3a1d709f50baf4fbf96c/defconfig

Build b29175be02de29835b72169ae393723898b5c7c2
==============================================

Status         : NOK
Failure reason : make: *** [gnutls-legal-info] Error 1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 07:23:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/b29175be02de29835b72169ae393723898b5c7c2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b29175be02de29835b72169ae393723898b5c7c2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b29175be02de29835b72169ae393723898b5c7c2/config
Defconfig      : http://autobuild.buildroot.net/results/b29175be02de29835b72169ae393723898b5c7c2/defconfig

Build 72d2c54cd3c41f7c536dc791e3e22e6e1a82b1ed
==============================================

Status         : NOK
Failure reason : nettle-2.5
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 07:26:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/72d2c54cd3c41f7c536dc791e3e22e6e1a82b1ed/build-end.log
Complete log   : http://autobuild.buildroot.net/results/72d2c54cd3c41f7c536dc791e3e22e6e1a82b1ed/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/72d2c54cd3c41f7c536dc791e3e22e6e1a82b1ed/config
Defconfig      : http://autobuild.buildroot.net/results/72d2c54cd3c41f7c536dc791e3e22e6e1a82b1ed/defconfig

Build 86e4a22f0a718153fee077056b3e972c81e35486
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 07:34:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/86e4a22f0a718153fee077056b3e972c81e35486/build-end.log
Complete log   : http://autobuild.buildroot.net/results/86e4a22f0a718153fee077056b3e972c81e35486/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/86e4a22f0a718153fee077056b3e972c81e35486/config
Defconfig      : http://autobuild.buildroot.net/results/86e4a22f0a718153fee077056b3e972c81e35486/defconfig

Build b473a32a36df0a1097da9be798b7a64f6fe7b56c
==============================================

Status         : NOK
Failure reason : dvb-apps-3fc7dfa68484
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 08:12:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/b473a32a36df0a1097da9be798b7a64f6fe7b56c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b473a32a36df0a1097da9be798b7a64f6fe7b56c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b473a32a36df0a1097da9be798b7a64f6fe7b56c/config
Defconfig      : http://autobuild.buildroot.net/results/b473a32a36df0a1097da9be798b7a64f6fe7b56c/defconfig

Build 9da552fc5355fee1e351e70c79f721ac137aaef3
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 08:18:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/9da552fc5355fee1e351e70c79f721ac137aaef3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9da552fc5355fee1e351e70c79f721ac137aaef3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9da552fc5355fee1e351e70c79f721ac137aaef3/config
Defconfig      : http://autobuild.buildroot.net/results/9da552fc5355fee1e351e70c79f721ac137aaef3/defconfig

Build 12f010c4af293e23bae0a1a001056237e82ec811
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 08:39:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/12f010c4af293e23bae0a1a001056237e82ec811/build-end.log
Complete log   : http://autobuild.buildroot.net/results/12f010c4af293e23bae0a1a001056237e82ec811/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/12f010c4af293e23bae0a1a001056237e82ec811/config
Defconfig      : http://autobuild.buildroot.net/results/12f010c4af293e23bae0a1a001056237e82ec811/defconfig

Build 2de430157776c21e131005a002b6a6742f98ad04
==============================================

Status         : NOK
Failure reason : make: *** [gnutls-legal-info] Error 1
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 08:40:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/2de430157776c21e131005a002b6a6742f98ad04/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2de430157776c21e131005a002b6a6742f98ad04/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2de430157776c21e131005a002b6a6742f98ad04/config
Defconfig      : http://autobuild.buildroot.net/results/2de430157776c21e131005a002b6a6742f98ad04/defconfig

Build bb308c1e99183fbff7b3f2f24317e5555d0fab84
==============================================

Status         : NOK
Failure reason : dvb-apps-3fc7dfa68484
Architecture   : sh4a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 08:58:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/bb308c1e99183fbff7b3f2f24317e5555d0fab84/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bb308c1e99183fbff7b3f2f24317e5555d0fab84/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bb308c1e99183fbff7b3f2f24317e5555d0fab84/config
Defconfig      : http://autobuild.buildroot.net/results/bb308c1e99183fbff7b3f2f24317e5555d0fab84/defconfig

Build 2dd72ba0799280c7b624b18f7a6afb484c31de80
==============================================

Status         : NOK
Failure reason : nettle-2.5
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-29 09:19:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/2dd72ba0799280c7b624b18f7a6afb484c31de80/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2dd72ba0799280c7b624b18f7a6afb484c31de80/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2dd72ba0799280c7b624b18f7a6afb484c31de80/config
Defconfig      : http://autobuild.buildroot.net/results/2dd72ba0799280c7b624b18f7a6afb484c31de80/defconfig

Build d1e418075a33b1b4008070b07d855327f6d67b49
==============================================

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

Build cbe6134057efdc8f34d927c472b25b493d85563f
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 09:27:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/cbe6134057efdc8f34d927c472b25b493d85563f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cbe6134057efdc8f34d927c472b25b493d85563f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cbe6134057efdc8f34d927c472b25b493d85563f/config
Defconfig      : http://autobuild.buildroot.net/results/cbe6134057efdc8f34d927c472b25b493d85563f/defconfig

Build 2e983ce1c76591e182a0acd9107ca8ac677d0287
==============================================

Status         : NOK
Failure reason : dvb-apps-3fc7dfa68484
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 09:42:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/2e983ce1c76591e182a0acd9107ca8ac677d0287/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2e983ce1c76591e182a0acd9107ca8ac677d0287/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2e983ce1c76591e182a0acd9107ca8ac677d0287/config
Defconfig      : http://autobuild.buildroot.net/results/2e983ce1c76591e182a0acd9107ca8ac677d0287/defconfig

Build c66891610551f41e486771b7cf1fe6d7629a0f38
==============================================

Status         : NOK
Failure reason : make: *** [gnutls-legal-info] Error 1
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 10:00:50
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/c66891610551f41e486771b7cf1fe6d7629a0f38/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c66891610551f41e486771b7cf1fe6d7629a0f38/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c66891610551f41e486771b7cf1fe6d7629a0f38/config
Defconfig      : http://autobuild.buildroot.net/results/c66891610551f41e486771b7cf1fe6d7629a0f38/defconfig

Build 90598ddf8207e6dee7e4d75db5fa459a8a7dedad
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 10:08:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/90598ddf8207e6dee7e4d75db5fa459a8a7dedad/build-end.log
Complete log   : http://autobuild.buildroot.net/results/90598ddf8207e6dee7e4d75db5fa459a8a7dedad/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/90598ddf8207e6dee7e4d75db5fa459a8a7dedad/config
Defconfig      : http://autobuild.buildroot.net/results/90598ddf8207e6dee7e4d75db5fa459a8a7dedad/defconfig

Build e01b9d6da7f0d74f736193950ee0836f2c2594fe
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 10:32:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/e01b9d6da7f0d74f736193950ee0836f2c2594fe/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e01b9d6da7f0d74f736193950ee0836f2c2594fe/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e01b9d6da7f0d74f736193950ee0836f2c2594fe/config
Defconfig      : http://autobuild.buildroot.net/results/e01b9d6da7f0d74f736193950ee0836f2c2594fe/defconfig

Build aadf28abdf2b16e1788bc9f0e997b7cfd2c49db8
==============================================

Status         : NOK
Failure reason : dvb-apps-3fc7dfa68484
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 10:52:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/aadf28abdf2b16e1788bc9f0e997b7cfd2c49db8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aadf28abdf2b16e1788bc9f0e997b7cfd2c49db8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aadf28abdf2b16e1788bc9f0e997b7cfd2c49db8/config
Defconfig      : http://autobuild.buildroot.net/results/aadf28abdf2b16e1788bc9f0e997b7cfd2c49db8/defconfig

Build ac194befc4c04d465512dd1666c412672dd05b09
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 10:54:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/ac194befc4c04d465512dd1666c412672dd05b09/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ac194befc4c04d465512dd1666c412672dd05b09/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ac194befc4c04d465512dd1666c412672dd05b09/config
Defconfig      : http://autobuild.buildroot.net/results/ac194befc4c04d465512dd1666c412672dd05b09/defconfig

Build d7661444ec8fbc1d4df0197c3ca2922d8fb9e0b3
==============================================

Status         : NOK
Failure reason : nettle-2.5
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 10:57:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/d7661444ec8fbc1d4df0197c3ca2922d8fb9e0b3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d7661444ec8fbc1d4df0197c3ca2922d8fb9e0b3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d7661444ec8fbc1d4df0197c3ca2922d8fb9e0b3/config
Defconfig      : http://autobuild.buildroot.net/results/d7661444ec8fbc1d4df0197c3ca2922d8fb9e0b3/defconfig

Build fcf18cc29f5ebbf828d0e27452b2b586021b8421
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 11:00:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/fcf18cc29f5ebbf828d0e27452b2b586021b8421/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fcf18cc29f5ebbf828d0e27452b2b586021b8421/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fcf18cc29f5ebbf828d0e27452b2b586021b8421/config
Defconfig      : http://autobuild.buildroot.net/results/fcf18cc29f5ebbf828d0e27452b2b586021b8421/defconfig

Build 675faed65d45dd6a368cd58cff7d137ab636d099
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 11:27:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/675faed65d45dd6a368cd58cff7d137ab636d099/build-end.log
Complete log   : http://autobuild.buildroot.net/results/675faed65d45dd6a368cd58cff7d137ab636d099/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/675faed65d45dd6a368cd58cff7d137ab636d099/config
Defconfig      : http://autobuild.buildroot.net/results/675faed65d45dd6a368cd58cff7d137ab636d099/defconfig

Build 2876f72d673e501f088eb6fade03417ccf2173ef
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 11:35:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/2876f72d673e501f088eb6fade03417ccf2173ef/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2876f72d673e501f088eb6fade03417ccf2173ef/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2876f72d673e501f088eb6fade03417ccf2173ef/config
Defconfig      : http://autobuild.buildroot.net/results/2876f72d673e501f088eb6fade03417ccf2173ef/defconfig

Build 1f0828c2d98c3d2e105716fc91c85adf008b0478
==============================================

Status         : NOK
Failure reason : dvb-apps-3fc7dfa68484
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 11:49:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/1f0828c2d98c3d2e105716fc91c85adf008b0478/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1f0828c2d98c3d2e105716fc91c85adf008b0478/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1f0828c2d98c3d2e105716fc91c85adf008b0478/config
Defconfig      : http://autobuild.buildroot.net/results/1f0828c2d98c3d2e105716fc91c85adf008b0478/defconfig

Build 5b1c926054eaca69d2f400927ee7fcb1f9300b8b
==============================================

Status         : NOK
Failure reason : can-utils-836d3cc0122ce31a1b732d369cbd27b690c3110f
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 11:50:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/5b1c926054eaca69d2f400927ee7fcb1f9300b8b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5b1c926054eaca69d2f400927ee7fcb1f9300b8b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5b1c926054eaca69d2f400927ee7fcb1f9300b8b/config
Defconfig      : http://autobuild.buildroot.net/results/5b1c926054eaca69d2f400927ee7fcb1f9300b8b/defconfig

Build fcff584613d2691d2eb0bd282f4b49c90fdbfd50
==============================================

Status         : NOK
Failure reason : audiofile-0.3.4
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 11:51:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/fcff584613d2691d2eb0bd282f4b49c90fdbfd50/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fcff584613d2691d2eb0bd282f4b49c90fdbfd50/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fcff584613d2691d2eb0bd282f4b49c90fdbfd50/config
Defconfig      : http://autobuild.buildroot.net/results/fcff584613d2691d2eb0bd282f4b49c90fdbfd50/defconfig

Build da47067a2b4f635e0dfca97a1833801bb2231925
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 12:00:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/da47067a2b4f635e0dfca97a1833801bb2231925/build-end.log
Complete log   : http://autobuild.buildroot.net/results/da47067a2b4f635e0dfca97a1833801bb2231925/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/da47067a2b4f635e0dfca97a1833801bb2231925/config
Defconfig      : http://autobuild.buildroot.net/results/da47067a2b4f635e0dfca97a1833801bb2231925/defconfig

Build 7d58ef36b5fa86be65093730dbc5019dede4048b
==============================================

Status         : NOK
Failure reason : nettle-2.5
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-29 12:09:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/7d58ef36b5fa86be65093730dbc5019dede4048b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7d58ef36b5fa86be65093730dbc5019dede4048b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7d58ef36b5fa86be65093730dbc5019dede4048b/config
Defconfig      : http://autobuild.buildroot.net/results/7d58ef36b5fa86be65093730dbc5019dede4048b/defconfig

Build 95b5e24d4d2d1a1bad52cf5ffcd8fbf63795aa73
==============================================

Status         : NOK
Failure reason : libeet-1.5.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 12:17:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/95b5e24d4d2d1a1bad52cf5ffcd8fbf63795aa73/build-end.log
Complete log   : http://autobuild.buildroot.net/results/95b5e24d4d2d1a1bad52cf5ffcd8fbf63795aa73/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/95b5e24d4d2d1a1bad52cf5ffcd8fbf63795aa73/config
Defconfig      : http://autobuild.buildroot.net/results/95b5e24d4d2d1a1bad52cf5ffcd8fbf63795aa73/defconfig

Build fb207d551189e6ebaf50b1da8f7a91d4a691417f
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 12:18:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/fb207d551189e6ebaf50b1da8f7a91d4a691417f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fb207d551189e6ebaf50b1da8f7a91d4a691417f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fb207d551189e6ebaf50b1da8f7a91d4a691417f/config
Defconfig      : http://autobuild.buildroot.net/results/fb207d551189e6ebaf50b1da8f7a91d4a691417f/defconfig

Build 02d185b49067ddad83a318c21ecdc14f81c6016f
==============================================

Status         : NOK
Failure reason : squid-3.2.5
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 12:36:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/02d185b49067ddad83a318c21ecdc14f81c6016f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/02d185b49067ddad83a318c21ecdc14f81c6016f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/02d185b49067ddad83a318c21ecdc14f81c6016f/config
Defconfig      : http://autobuild.buildroot.net/results/02d185b49067ddad83a318c21ecdc14f81c6016f/defconfig

Build d62f37d8da7ed867b99824a5daf6174859ebeeb3
==============================================

Status         : NOK
Failure reason : libnspr-4.8.7
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 12:51:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/d62f37d8da7ed867b99824a5daf6174859ebeeb3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d62f37d8da7ed867b99824a5daf6174859ebeeb3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d62f37d8da7ed867b99824a5daf6174859ebeeb3/config
Defconfig      : http://autobuild.buildroot.net/results/d62f37d8da7ed867b99824a5daf6174859ebeeb3/defconfig

Build cbb04984d01a59720a87fa13447fc9e2364cdd98
==============================================

Status         : NOK
Failure reason : libraw1394-2.0.7
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 12:53:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/cbb04984d01a59720a87fa13447fc9e2364cdd98/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cbb04984d01a59720a87fa13447fc9e2364cdd98/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cbb04984d01a59720a87fa13447fc9e2364cdd98/config
Defconfig      : http://autobuild.buildroot.net/results/cbb04984d01a59720a87fa13447fc9e2364cdd98/defconfig

Build 8db397be7be19c6295746aa8b6642e9c640e09b5
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 13:24:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/8db397be7be19c6295746aa8b6642e9c640e09b5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8db397be7be19c6295746aa8b6642e9c640e09b5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8db397be7be19c6295746aa8b6642e9c640e09b5/config
Defconfig      : http://autobuild.buildroot.net/results/8db397be7be19c6295746aa8b6642e9c640e09b5/defconfig

Build fac9617a0c2519c95d629d18da6f5bff707d1b82
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 13:33:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/fac9617a0c2519c95d629d18da6f5bff707d1b82/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fac9617a0c2519c95d629d18da6f5bff707d1b82/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fac9617a0c2519c95d629d18da6f5bff707d1b82/config
Defconfig      : http://autobuild.buildroot.net/results/fac9617a0c2519c95d629d18da6f5bff707d1b82/defconfig

Build f4beb881d1e731a70eee68c115cc94e05e0c0111
==============================================

Status         : NOK
Failure reason : dvb-apps-3fc7dfa68484
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 13:49:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/f4beb881d1e731a70eee68c115cc94e05e0c0111/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f4beb881d1e731a70eee68c115cc94e05e0c0111/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f4beb881d1e731a70eee68c115cc94e05e0c0111/config
Defconfig      : http://autobuild.buildroot.net/results/f4beb881d1e731a70eee68c115cc94e05e0c0111/defconfig

Build 2f473b1b65124f188d313c53b50e5e70db688078
==============================================

Status         : NOK
Failure reason : nettle-2.5
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-29 13:59:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/2f473b1b65124f188d313c53b50e5e70db688078/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2f473b1b65124f188d313c53b50e5e70db688078/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2f473b1b65124f188d313c53b50e5e70db688078/config
Defconfig      : http://autobuild.buildroot.net/results/2f473b1b65124f188d313c53b50e5e70db688078/defconfig

Build 1804fab72126721cc3c06af60c5e2a25de5d28c7
==============================================

Status         : NOK
Failure reason : nettle-2.5
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-29 14:16:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/1804fab72126721cc3c06af60c5e2a25de5d28c7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1804fab72126721cc3c06af60c5e2a25de5d28c7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1804fab72126721cc3c06af60c5e2a25de5d28c7/config
Defconfig      : http://autobuild.buildroot.net/results/1804fab72126721cc3c06af60c5e2a25de5d28c7/defconfig

Build d23d84d2c18dcbe77f4f0c978efc1a1f3ec5c7de
==============================================

Status         : NOK
Failure reason : linux-pam-1.1.4
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 14:28:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/d23d84d2c18dcbe77f4f0c978efc1a1f3ec5c7de/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d23d84d2c18dcbe77f4f0c978efc1a1f3ec5c7de/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d23d84d2c18dcbe77f4f0c978efc1a1f3ec5c7de/config
Defconfig      : http://autobuild.buildroot.net/results/d23d84d2c18dcbe77f4f0c978efc1a1f3ec5c7de/defconfig

Build ac71a706309119d8e6f071d2ae5b4d120a25d396
==============================================

Status         : NOK
Failure reason : nettle-2.5
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-29 14:40:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/ac71a706309119d8e6f071d2ae5b4d120a25d396/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ac71a706309119d8e6f071d2ae5b4d120a25d396/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ac71a706309119d8e6f071d2ae5b4d120a25d396/config
Defconfig      : http://autobuild.buildroot.net/results/ac71a706309119d8e6f071d2ae5b4d120a25d396/defconfig

Build aa26711d7c33d1a37e09cd5c15b5774b36bd9f85
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 14:44:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
End of log     : http://autobuild.buildroot.net/results/aa26711d7c33d1a37e09cd5c15b5774b36bd9f85/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aa26711d7c33d1a37e09cd5c15b5774b36bd9f85/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aa26711d7c33d1a37e09cd5c15b5774b36bd9f85/config
Defconfig      : http://autobuild.buildroot.net/results/aa26711d7c33d1a37e09cd5c15b5774b36bd9f85/defconfig

Build 52d7c53ffc547e400fac19094b7804a5c1670e40
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 15:48:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/52d7c53ffc547e400fac19094b7804a5c1670e40/build-end.log
Complete log   : http://autobuild.buildroot.net/results/52d7c53ffc547e400fac19094b7804a5c1670e40/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/52d7c53ffc547e400fac19094b7804a5c1670e40/config
Defconfig      : http://autobuild.buildroot.net/results/52d7c53ffc547e400fac19094b7804a5c1670e40/defconfig

Build cebd271ee889cacd9a0603c82c290fc61eeb10a6
==============================================

Status         : NOK
Failure reason : transmission-2.33
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 16:23:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/cebd271ee889cacd9a0603c82c290fc61eeb10a6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cebd271ee889cacd9a0603c82c290fc61eeb10a6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cebd271ee889cacd9a0603c82c290fc61eeb10a6/config
Defconfig      : http://autobuild.buildroot.net/results/cebd271ee889cacd9a0603c82c290fc61eeb10a6/defconfig

Build e4ddbc00bc90fc53126a57313f20655ca5b65302
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 16:35:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/e4ddbc00bc90fc53126a57313f20655ca5b65302/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e4ddbc00bc90fc53126a57313f20655ca5b65302/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e4ddbc00bc90fc53126a57313f20655ca5b65302/config
Defconfig      : http://autobuild.buildroot.net/results/e4ddbc00bc90fc53126a57313f20655ca5b65302/defconfig

Build 56a813006acf7aef2bdfb49abd2a6aa62f930f6c
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 17:03:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/56a813006acf7aef2bdfb49abd2a6aa62f930f6c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/56a813006acf7aef2bdfb49abd2a6aa62f930f6c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/56a813006acf7aef2bdfb49abd2a6aa62f930f6c/config
Defconfig      : http://autobuild.buildroot.net/results/56a813006acf7aef2bdfb49abd2a6aa62f930f6c/defconfig

Build 5a6e2f3c1d0e117523dcb61931c2c1d7640afdca
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 17:17:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/5a6e2f3c1d0e117523dcb61931c2c1d7640afdca/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5a6e2f3c1d0e117523dcb61931c2c1d7640afdca/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5a6e2f3c1d0e117523dcb61931c2c1d7640afdca/config
Defconfig      : http://autobuild.buildroot.net/results/5a6e2f3c1d0e117523dcb61931c2c1d7640afdca/defconfig

Build 1e6a8b5da8ff17504f81d15150c27b4ec2e95e3d
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 17:25:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/1e6a8b5da8ff17504f81d15150c27b4ec2e95e3d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1e6a8b5da8ff17504f81d15150c27b4ec2e95e3d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1e6a8b5da8ff17504f81d15150c27b4ec2e95e3d/config
Defconfig      : http://autobuild.buildroot.net/results/1e6a8b5da8ff17504f81d15150c27b4ec2e95e3d/defconfig

Build bf0f9f1401f171acb6b30d770af451ba0f0a2007
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 18:00:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/bf0f9f1401f171acb6b30d770af451ba0f0a2007/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bf0f9f1401f171acb6b30d770af451ba0f0a2007/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bf0f9f1401f171acb6b30d770af451ba0f0a2007/config
Defconfig      : http://autobuild.buildroot.net/results/bf0f9f1401f171acb6b30d770af451ba0f0a2007/defconfig

Build 7890d2dcc6ac0eacced7f817a7b13616d6c5b93b
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 18:52:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/7890d2dcc6ac0eacced7f817a7b13616d6c5b93b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7890d2dcc6ac0eacced7f817a7b13616d6c5b93b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7890d2dcc6ac0eacced7f817a7b13616d6c5b93b/config
Defconfig      : http://autobuild.buildroot.net/results/7890d2dcc6ac0eacced7f817a7b13616d6c5b93b/defconfig

Build d7c6600927346a1cb6ac649abc85ae5663f634fa
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 19:00:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/d7c6600927346a1cb6ac649abc85ae5663f634fa/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d7c6600927346a1cb6ac649abc85ae5663f634fa/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d7c6600927346a1cb6ac649abc85ae5663f634fa/config
Defconfig      : http://autobuild.buildroot.net/results/d7c6600927346a1cb6ac649abc85ae5663f634fa/defconfig

Build 77957a3cd6e5d48eaa8a7e68060ad99823e142ec
==============================================

Status         : NOK
Failure reason : qt-4.8.3
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 19:17:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/77957a3cd6e5d48eaa8a7e68060ad99823e142ec/build-end.log
Complete log   : http://autobuild.buildroot.net/results/77957a3cd6e5d48eaa8a7e68060ad99823e142ec/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/77957a3cd6e5d48eaa8a7e68060ad99823e142ec/config
Defconfig      : http://autobuild.buildroot.net/results/77957a3cd6e5d48eaa8a7e68060ad99823e142ec/defconfig

Build 3460e9f3182bafd133e20dae7a23dfe0c4255f17
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 20:02:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/3460e9f3182bafd133e20dae7a23dfe0c4255f17/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3460e9f3182bafd133e20dae7a23dfe0c4255f17/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3460e9f3182bafd133e20dae7a23dfe0c4255f17/config
Defconfig      : http://autobuild.buildroot.net/results/3460e9f3182bafd133e20dae7a23dfe0c4255f17/defconfig

Build c42cf9b89a995f776b7ca7c9f2b3e63a025d6767
==============================================

Status         : NOK
Failure reason : luajit-2.0.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 20:36:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/c42cf9b89a995f776b7ca7c9f2b3e63a025d6767/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c42cf9b89a995f776b7ca7c9f2b3e63a025d6767/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c42cf9b89a995f776b7ca7c9f2b3e63a025d6767/config
Defconfig      : http://autobuild.buildroot.net/results/c42cf9b89a995f776b7ca7c9f2b3e63a025d6767/defconfig

Build 6187a4a6dfd18ce5e1b2b6d09b5ef6bbe109fa5c
==============================================

Status         : NOK
Failure reason : libeet-1.5.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 20:42:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/6187a4a6dfd18ce5e1b2b6d09b5ef6bbe109fa5c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6187a4a6dfd18ce5e1b2b6d09b5ef6bbe109fa5c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6187a4a6dfd18ce5e1b2b6d09b5ef6bbe109fa5c/config
Defconfig      : http://autobuild.buildroot.net/results/6187a4a6dfd18ce5e1b2b6d09b5ef6bbe109fa5c/defconfig

Build e6994aba587227dc81a34cf6795ec6893a5c4e29
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 20:46:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b
End of log     : http://autobuild.buildroot.net/results/e6994aba587227dc81a34cf6795ec6893a5c4e29/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e6994aba587227dc81a34cf6795ec6893a5c4e29/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e6994aba587227dc81a34cf6795ec6893a5c4e29/config
Defconfig      : http://autobuild.buildroot.net/results/e6994aba587227dc81a34cf6795ec6893a5c4e29/defconfig

Build 83b764c64cb63faca2e04045e55df7807d4c214f
==============================================

Status         : NOK
Failure reason : ruby-1.9.2-p320
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 21:15:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=6a497e3d8c07d816ec5b8d612d4f7563dff9e756
End of log     : http://autobuild.buildroot.net/results/83b764c64cb63faca2e04045e55df7807d4c214f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/83b764c64cb63faca2e04045e55df7807d4c214f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/83b764c64cb63faca2e04045e55df7807d4c214f/config
Defconfig      : http://autobuild.buildroot.net/results/83b764c64cb63faca2e04045e55df7807d4c214f/defconfig

Build 87a04f4a04fd525b69adaf7d018fa470bd692aad
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 21:35:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=6a497e3d8c07d816ec5b8d612d4f7563dff9e756
End of log     : http://autobuild.buildroot.net/results/87a04f4a04fd525b69adaf7d018fa470bd692aad/build-end.log
Complete log   : http://autobuild.buildroot.net/results/87a04f4a04fd525b69adaf7d018fa470bd692aad/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/87a04f4a04fd525b69adaf7d018fa470bd692aad/config
Defconfig      : http://autobuild.buildroot.net/results/87a04f4a04fd525b69adaf7d018fa470bd692aad/defconfig

Build 9350aebc8b63672065d0691803a7918a3557f997
==============================================

Status         : NOK
Failure reason : host-gawk-4.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 21:51:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=6a497e3d8c07d816ec5b8d612d4f7563dff9e756
End of log     : http://autobuild.buildroot.net/results/9350aebc8b63672065d0691803a7918a3557f997/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9350aebc8b63672065d0691803a7918a3557f997/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9350aebc8b63672065d0691803a7918a3557f997/config
Defconfig      : http://autobuild.buildroot.net/results/9350aebc8b63672065d0691803a7918a3557f997/defconfig

Build 258b45f6e0243fcc8c56c1304294df5d9cf57ce8
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 21:58:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=6a497e3d8c07d816ec5b8d612d4f7563dff9e756
End of log     : http://autobuild.buildroot.net/results/258b45f6e0243fcc8c56c1304294df5d9cf57ce8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/258b45f6e0243fcc8c56c1304294df5d9cf57ce8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/258b45f6e0243fcc8c56c1304294df5d9cf57ce8/config
Defconfig      : http://autobuild.buildroot.net/results/258b45f6e0243fcc8c56c1304294df5d9cf57ce8/defconfig

Build 10864477631f99b8ba97e942df74f7a130f87fe3
==============================================

Status         : NOK
Failure reason : gnutls-3.1.5
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-29 21:59:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=6a497e3d8c07d816ec5b8d612d4f7563dff9e756
End of log     : http://autobuild.buildroot.net/results/10864477631f99b8ba97e942df74f7a130f87fe3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/10864477631f99b8ba97e942df74f7a130f87fe3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/10864477631f99b8ba97e942df74f7a130f87fe3/config
Defconfig      : http://autobuild.buildroot.net/results/10864477631f99b8ba97e942df74f7a130f87fe3/defconfig

Build 5d595e4f2d7a174ff264593c6c669d223bc334bc
==============================================

Status         : NOK
Failure reason : libecore-1.1.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-29 22:18:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=6a497e3d8c07d816ec5b8d612d4f7563dff9e756
End of log     : http://autobuild.buildroot.net/results/5d595e4f2d7a174ff264593c6c669d223bc334bc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5d595e4f2d7a174ff264593c6c669d223bc334bc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5d595e4f2d7a174ff264593c6c669d223bc334bc/config
Defconfig      : http://autobuild.buildroot.net/results/5d595e4f2d7a174ff264593c6c669d223bc334bc/defconfig

Build b39c686d786225a877a49be33510161a21fe6f16
==============================================

Status         : NOK
Failure reason : libecore-1.1.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-29 22:23:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=6a497e3d8c07d816ec5b8d612d4f7563dff9e756
End of log     : http://autobuild.buildroot.net/results/b39c686d786225a877a49be33510161a21fe6f16/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b39c686d786225a877a49be33510161a21fe6f16/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b39c686d786225a877a49be33510161a21fe6f16/config
Defconfig      : http://autobuild.buildroot.net/results/b39c686d786225a877a49be33510161a21fe6f16/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [autobuild.buildroot.net] Build results for 2012-12-29
From: Peter Korsgaard @ 2012-12-30 10:02 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121230073456.2BCF452C08C@lolut.humanoidz.org>

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

Hi Gustavo,

 Thomas> Status         : NOK
 Thomas> Failure reason : gnutls-3.1.5
 Thomas> Architecture   : arm
 Thomas> Submitted by   : Peter Korsgaard (gcc10)
 Thomas> Submitted at   : 2012-12-29 01:40:23
 Thomas> Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
 Thomas> End of log     : http://autobuild.buildroot.net/results/feadf0791ce300dc0093950867ac1d1b00d0e3fd/build-end.log
 Thomas> Complete log   : http://autobuild.buildroot.net/results/feadf0791ce300dc0093950867ac1d1b00d0e3fd/build.log.bz2
 Thomas> Configuration  : http://autobuild.buildroot.net/results/feadf0791ce300dc0093950867ac1d1b00d0e3fd/config
 Thomas> Defconfig      : http://autobuild.buildroot.net/results/feadf0791ce300dc0093950867ac1d1b00d0e3fd/defconfig

 Thomas> Build f158cb43f02878885c0fc753f5c5a6d7b6ffdb43
 Thomas> ==============================================

 Thomas> Status         : NOK
 Thomas> Failure reason : gnutls-3.1.5
 Thomas> Architecture   : arm
 Thomas> Submitted by   : Thomas Petazzoni (Free Electrons build server)
 Thomas> Submitted at   : 2012-12-29 01:47:40
 Thomas> Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=14989d0be59762a354e7c5c15a2eeb4826d8040b
 Thomas> End of log     : http://autobuild.buildroot.net/results/f158cb43f02878885c0fc753f5c5a6d7b6ffdb43/build-end.log
 Thomas> Complete log   : http://autobuild.buildroot.net/results/f158cb43f02878885c0fc753f5c5a6d7b6ffdb43/build.log.bz2
 Thomas> Configuration  : http://autobuild.buildroot.net/results/f158cb43f02878885c0fc753f5c5a6d7b6ffdb43/config
 Thomas> Defconfig      : http://autobuild.buildroot.net/results/f158cb43f02878885c0fc753f5c5a6d7b6ffdb43/defconfig

These two looks related to your recent gnutls version bump. Care to have
a look?

 Thomas> Status         : NOK
 Thomas> Failure reason : libecore-1.1.0
 Thomas> Architecture   : powerpc
 Thomas> Submitted by   : Peter Korsgaard (gcc14)
 Thomas> Submitted at   : 2012-12-29 22:18:45
 Thomas> Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=6a497e3d8c07d816ec5b8d612d4f7563dff9e756
 Thomas> End of log     : http://autobuild.buildroot.net/results/5d595e4f2d7a174ff264593c6c669d223bc334bc/build-end.log
 Thomas> Complete log   : http://autobuild.buildroot.net/results/5d595e4f2d7a174ff264593c6c669d223bc334bc/build.log.bz2
 Thomas> Configuration  : http://autobuild.buildroot.net/results/5d595e4f2d7a174ff264593c6c669d223bc334bc/config
 Thomas> Defconfig      : http://autobuild.buildroot.net/results/5d595e4f2d7a174ff264593c6c669d223bc334bc/defconfig

This is probably also related to it, but perhaps that gets fixed by
Thomas' e17 update.

Did you have a look at the host-gawk issue?

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] Merge branch 'e17' of git://git.free-electrons.com/users/thomas-petazzoni/buildroot
From: Peter Korsgaard @ 2012-12-30 10:52 UTC (permalink / raw)
  To: buildroot

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

^ permalink raw reply

* [Buildroot] [pull request v2] Pull request for branch e17
From: Peter Korsgaard @ 2012-12-30 11:29 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <cover.1356849033.git.thomas.petazzoni@free-electrons.com>

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

 Thomas> Hello,
 Thomas> This set of patches bumps all the EFL (Enlightenment Foundation
 Thomas> Libraries) packages to the latest version 1.7.4 which was released on
 Thomas> December, 21st with E17.

 Thomas> It also adds a package for E17 itself, in order to provide a
 Thomas> demonstration of a lightweight desktop environment in Buildroot.

 Thomas> It has been tested on ARM Glibc (Linaro toolchain) and uClibc
 Thomas> (internal toolchain), booted under X.org in Qemu, and it starts fine.

 Thomas> Of course, some additional improvements and tests can be made
 Thomas> later: test with the XCB backend (only the X11 backend has been
 Thomas> tested), test with the OpenGL backend, test more features, etc.

Pulled, thanks!

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] qemu/microblaze: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=0fdfc7db1eb473f49a50a775d90f611e0a46227f
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>
---
 .../{linux-3.6.config => linux-3.7.config}         |    0
 board/qemu/microblazebe-mmu/readme.txt             |    2 +-
 .../{linux-3.6.config => linux-3.7.config}         |    0
 board/qemu/microblazeel-mmu/readme.txt             |    2 +-
 configs/qemu_microblazebe_mmu_defconfig            |    4 ++--
 configs/qemu_microblazeel_mmu_defconfig            |    4 ++--
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/board/qemu/microblazebe-mmu/linux-3.6.config b/board/qemu/microblazebe-mmu/linux-3.7.config
similarity index 100%
rename from board/qemu/microblazebe-mmu/linux-3.6.config
rename to board/qemu/microblazebe-mmu/linux-3.7.config
diff --git a/board/qemu/microblazebe-mmu/readme.txt b/board/qemu/microblazebe-mmu/readme.txt
index 889b561..a52b9ad 100644
--- a/board/qemu/microblazebe-mmu/readme.txt
+++ b/board/qemu/microblazebe-mmu/readme.txt
@@ -4,4 +4,4 @@ Run the emulation with:
 
 The login prompt will appear in the terminal that started Qemu.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/board/qemu/microblazeel-mmu/linux-3.6.config b/board/qemu/microblazeel-mmu/linux-3.7.config
similarity index 100%
rename from board/qemu/microblazeel-mmu/linux-3.6.config
rename to board/qemu/microblazeel-mmu/linux-3.7.config
diff --git a/board/qemu/microblazeel-mmu/readme.txt b/board/qemu/microblazeel-mmu/readme.txt
index 9bc5440..e61eeb6 100644
--- a/board/qemu/microblazeel-mmu/readme.txt
+++ b/board/qemu/microblazeel-mmu/readme.txt
@@ -4,4 +4,4 @@ Run the emulation with:
 
 The login prompt will appear in the terminal that started Qemu.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_microblazebe_mmu_defconfig b/configs/qemu_microblazebe_mmu_defconfig
index 6ca7cc9..6f5c871 100644
--- a/configs/qemu_microblazebe_mmu_defconfig
+++ b/configs/qemu_microblazebe_mmu_defconfig
@@ -19,9 +19,9 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/microblazebe-mmu/linux-3.6.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/microblazebe-mmu/linux-3.7.config"
 BR2_LINUX_KERNEL_LINUX_BIN=y
 BR2_LINUX_KERNEL_USE_CUSTOM_DTS=y
 BR2_LINUX_KERNEL_CUSTOM_DTS_PATH="board/qemu/microblazebe-mmu/system.dts"
diff --git a/configs/qemu_microblazeel_mmu_defconfig b/configs/qemu_microblazeel_mmu_defconfig
index a4e13d2..6f9f8f9 100644
--- a/configs/qemu_microblazeel_mmu_defconfig
+++ b/configs/qemu_microblazeel_mmu_defconfig
@@ -19,9 +19,9 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/microblazeel-mmu/linux-3.6.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/microblazeel-mmu/linux-3.7.config"
 BR2_LINUX_KERNEL_LINUX_BIN=y
 BR2_LINUX_KERNEL_USE_CUSTOM_DTS=y
 BR2_LINUX_KERNEL_CUSTOM_DTS_PATH="board/qemu/microblazeel-mmu/system.dts"

^ permalink raw reply related

* [Buildroot] [git commit] qemu/sparc-ss10: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=05dcaabbdc5ddff6fcc86625d06e76049c071b31
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>
---
 board/qemu/sparc-ss10/readme.txt  |    2 +-
 configs/qemu_sparc_ss10_defconfig |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/board/qemu/sparc-ss10/readme.txt b/board/qemu/sparc-ss10/readme.txt
index e5a1d45..4290c55 100644
--- a/board/qemu/sparc-ss10/readme.txt
+++ b/board/qemu/sparc-ss10/readme.txt
@@ -5,4 +5,4 @@ Run the emulation with:
 The login prompt will appear in the terminal that started Qemu.
 The graphical window is the framebuffer.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_sparc_ss10_defconfig b/configs/qemu_sparc_ss10_defconfig
index e13b610..38bf243 100644
--- a/configs/qemu_sparc_ss10_defconfig
+++ b/configs/qemu_sparc_ss10_defconfig
@@ -6,12 +6,12 @@ BR2_sparc_supersparc=y
 BR2_TARGET_ROOTFS_EXT2=y
 # BR2_TARGET_ROOTFS_TAR is not set
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Linux kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_DEFCONFIG="sparc32"
 BR2_LINUX_KERNEL_ZIMAGE=y

^ permalink raw reply related

* [Buildroot] [git commit] qemu/ppc-g3beige: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=9f8ba2c918fb1cfe4a645e61e7d28c4c890cf31c
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>
---
 .../{linux-3.6.config => linux-3.7.config}         |    0
 board/qemu/powerpc-g3beige/readme.txt              |    2 +-
 configs/qemu_ppc_g3beige_defconfig                 |    8 ++++----
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/board/qemu/powerpc-g3beige/linux-3.6.config b/board/qemu/powerpc-g3beige/linux-3.7.config
similarity index 100%
rename from board/qemu/powerpc-g3beige/linux-3.6.config
rename to board/qemu/powerpc-g3beige/linux-3.7.config
diff --git a/board/qemu/powerpc-g3beige/readme.txt b/board/qemu/powerpc-g3beige/readme.txt
index 01f0baf..05aa380 100644
--- a/board/qemu/powerpc-g3beige/readme.txt
+++ b/board/qemu/powerpc-g3beige/readme.txt
@@ -5,4 +5,4 @@ Run the emulation with:
 The login prompt will appear in the terminal that started Qemu. The
 graphical window is the framebuffer.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_ppc_g3beige_defconfig b/configs/qemu_ppc_g3beige_defconfig
index 420710b..5aef9bf 100644
--- a/configs/qemu_ppc_g3beige_defconfig
+++ b/configs/qemu_ppc_g3beige_defconfig
@@ -6,15 +6,15 @@ BR2_powerpc_750=y
 BR2_TARGET_ROOTFS_EXT2=y
 # BR2_TARGET_ROOTFS_TAR is not set
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/powerpc-g3beige/linux-3.6.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/powerpc-g3beige/linux-3.7.config"
 BR2_LINUX_KERNEL_VMLINUX=y
 
 # Serial port config

^ permalink raw reply related

* [Buildroot] [git commit] qemu/ppc-virtex-ml507: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=99a8940dc4f8014acc12234a5600062dc2385256
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>
---
 board/qemu/powerpc-virtex-ml507/readme.txt |    2 +-
 configs/qemu_ppc_virtex_ml507_defconfig    |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/board/qemu/powerpc-virtex-ml507/readme.txt b/board/qemu/powerpc-virtex-ml507/readme.txt
index 0500a95..a225985 100644
--- a/board/qemu/powerpc-virtex-ml507/readme.txt
+++ b/board/qemu/powerpc-virtex-ml507/readme.txt
@@ -5,4 +5,4 @@ Run the emulation with:
 
 The login prompt will appear in the terminal that started Qemu.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_ppc_virtex_ml507_defconfig b/configs/qemu_ppc_virtex_ml507_defconfig
index 6b4ea74..59812c9 100644
--- a/configs/qemu_ppc_virtex_ml507_defconfig
+++ b/configs/qemu_ppc_virtex_ml507_defconfig
@@ -6,8 +6,8 @@ BR2_powerpc_440=y
 # BR2_TARGET_ROOTFS_TAR is not set
 BR2_TARGET_ROOTFS_INITRAMFS=y
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Use soft float
 BR2_SOFT_FLOAT=y
@@ -15,7 +15,7 @@ BR2_SOFT_FLOAT=y
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.9"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_DEFCONFIG="44x/virtex5"
 BR2_LINUX_KERNEL_VMLINUX=y
 BR2_LINUX_KERNEL_DTS_SUPPORT=y

^ permalink raw reply related

* [Buildroot] [git commit] qemu/ppc-mpc8544ds: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=49b1747048a56f2ca68421c58537d7475519c428
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>
---
 board/qemu/powerpc-mpc8544ds/readme.txt |    2 +-
 configs/qemu_ppc_mpc8544ds_defconfig    |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/board/qemu/powerpc-mpc8544ds/readme.txt b/board/qemu/powerpc-mpc8544ds/readme.txt
index 07a9e3b..d361fd9 100644
--- a/board/qemu/powerpc-mpc8544ds/readme.txt
+++ b/board/qemu/powerpc-mpc8544ds/readme.txt
@@ -4,4 +4,4 @@ Run the emulation with:
 
 The login prompt will appear in the terminal that started Qemu.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_ppc_mpc8544ds_defconfig b/configs/qemu_ppc_mpc8544ds_defconfig
index 95218a7..39f0339 100644
--- a/configs/qemu_ppc_mpc8544ds_defconfig
+++ b/configs/qemu_ppc_mpc8544ds_defconfig
@@ -6,13 +6,13 @@ BR2_powerpc_8548=y
 # BR2_TARGET_ROOTFS_TAR is not set
 BR2_TARGET_ROOTFS_INITRAMFS=y
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_DEFCONFIG="mpc85xx"
 BR2_LINUX_KERNEL_VMLINUX=y
 

^ permalink raw reply related

* [Buildroot] [git commit] qemu/sh4-r2d: update to use kernel 3.2.35
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=7e6122be61ff5cd8256b80fbb1f34b2cde1c4cb0
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>
---
 board/qemu/sh4-r2d/readme.txt  |    2 +-
 configs/qemu_sh4_r2d_defconfig |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/board/qemu/sh4-r2d/readme.txt b/board/qemu/sh4-r2d/readme.txt
index 0eaf1cf..9ae7496 100644
--- a/board/qemu/sh4-r2d/readme.txt
+++ b/board/qemu/sh4-r2d/readme.txt
@@ -5,4 +5,4 @@ Run the emulation with:
 The login prompt will appear in the terminal that started Qemu.
 The graphical window is the framebuffer.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_sh4_r2d_defconfig b/configs/qemu_sh4_r2d_defconfig
index d766bc3..746dc0b 100644
--- a/configs/qemu_sh4_r2d_defconfig
+++ b/configs/qemu_sh4_r2d_defconfig
@@ -20,7 +20,7 @@ BR2_EXTRA_GCC_CONFIG_OPTIONS="--with-multilib-list=m4,m4-nofpu"
 # Linux kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2.33"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.2.35"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/sh4-r2d/linux-3.2.config"
 BR2_LINUX_KERNEL_ZIMAGE=y

^ permalink raw reply related

* [Buildroot] [git commit] qemu/x86_64: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=a5a9b728dadddf8137cad34854ef448c56cca834
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>
---
 .../x86_64/{linux-3.6.config => linux-3.7.config}  |    0
 board/qemu/x86_64/readme.txt                       |    2 +-
 configs/qemu_x86_64_defconfig                      |    8 ++++----
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/board/qemu/x86_64/linux-3.6.config b/board/qemu/x86_64/linux-3.7.config
similarity index 100%
rename from board/qemu/x86_64/linux-3.6.config
rename to board/qemu/x86_64/linux-3.7.config
diff --git a/board/qemu/x86_64/readme.txt b/board/qemu/x86_64/readme.txt
index 791109c..7d3c6c5 100644
--- a/board/qemu/x86_64/readme.txt
+++ b/board/qemu/x86_64/readme.txt
@@ -4,4 +4,4 @@ Run the emulation with:
 
 The login prompt will appear in the graphical window.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_x86_64_defconfig b/configs/qemu_x86_64_defconfig
index 03cc5b3..2093242 100644
--- a/configs/qemu_x86_64_defconfig
+++ b/configs/qemu_x86_64_defconfig
@@ -9,12 +9,12 @@ BR2_TARGET_GENERIC_GETTY_PORT="tty1"
 BR2_TARGET_ROOTFS_EXT2=y
 # BR2_TARGET_ROOTFS_TAR is not set
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86_64/linux-3.6.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86_64/linux-3.7.config"

^ permalink raw reply related

* [Buildroot] [git commit] qemu/x86: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=6420570f6697405a033d00875739661d39edae5a
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>
---
 .../x86/{linux-3.6.config => linux-3.7.config}     |    0
 board/qemu/x86/readme.txt                          |    2 +-
 configs/qemu_x86_defconfig                         |    8 ++++----
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/board/qemu/x86/linux-3.6.config b/board/qemu/x86/linux-3.7.config
similarity index 100%
rename from board/qemu/x86/linux-3.6.config
rename to board/qemu/x86/linux-3.7.config
diff --git a/board/qemu/x86/readme.txt b/board/qemu/x86/readme.txt
index 3cca682..4342556 100644
--- a/board/qemu/x86/readme.txt
+++ b/board/qemu/x86/readme.txt
@@ -4,4 +4,4 @@ Run the emulation with:
 
 The login prompt will appear in the graphical window.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_x86_defconfig b/configs/qemu_x86_defconfig
index 90524b5..ddb9fd1 100644
--- a/configs/qemu_x86_defconfig
+++ b/configs/qemu_x86_defconfig
@@ -10,12 +10,12 @@ BR2_TARGET_GENERIC_GETTY_PORT="tty1"
 BR2_TARGET_ROOTFS_EXT2=y
 # BR2_TARGET_ROOTFS_TAR is not set
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux-3.6.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux-3.7.config"

^ permalink raw reply related

* [Buildroot] [git commit] qemu/mipsel-malta: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=5232c1081c517556c8efb7546e0363327910c4f0
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>
---
 .../{linux-3.6.config => linux-3.7.config}         |    0
 board/qemu/mipsel-malta/readme.txt                 |    2 +-
 configs/qemu_mipsel_malta_defconfig                |    8 ++++----
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/board/qemu/mipsel-malta/linux-3.6.config b/board/qemu/mipsel-malta/linux-3.7.config
similarity index 100%
rename from board/qemu/mipsel-malta/linux-3.6.config
rename to board/qemu/mipsel-malta/linux-3.7.config
diff --git a/board/qemu/mipsel-malta/readme.txt b/board/qemu/mipsel-malta/readme.txt
index d8a5847..8dd4024 100644
--- a/board/qemu/mipsel-malta/readme.txt
+++ b/board/qemu/mipsel-malta/readme.txt
@@ -6,4 +6,4 @@ The login prompt will appear in the terminal that started Qemu. The
 graphical window is the framebuffer. No keyboard support has been
 enabled.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_mipsel_malta_defconfig b/configs/qemu_mipsel_malta_defconfig
index 42992d7..3adde2f 100644
--- a/configs/qemu_mipsel_malta_defconfig
+++ b/configs/qemu_mipsel_malta_defconfig
@@ -6,15 +6,15 @@ BR2_mips_32r2=y
 BR2_TARGET_ROOTFS_EXT2=y
 # BR2_TARGET_ROOTFS_TAR is not set
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mipsel-malta/linux-3.6.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mipsel-malta/linux-3.7.config"
 BR2_LINUX_KERNEL_VMLINUX=y
 
 # Serial port config

^ permalink raw reply related

* [Buildroot] [git commit] qemu/mips-malta: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=d6781b73a29488d9e0302bd96295542a18aac5ba
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>
---
 .../{linux-3.6.config => linux-3.7.config}         |    0
 board/qemu/mips-malta/readme.txt                   |    2 +-
 configs/qemu_mips_malta_defconfig                  |    8 ++++----
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/board/qemu/mips-malta/linux-3.6.config b/board/qemu/mips-malta/linux-3.7.config
similarity index 100%
rename from board/qemu/mips-malta/linux-3.6.config
rename to board/qemu/mips-malta/linux-3.7.config
diff --git a/board/qemu/mips-malta/readme.txt b/board/qemu/mips-malta/readme.txt
index 104c427..d3d8446 100644
--- a/board/qemu/mips-malta/readme.txt
+++ b/board/qemu/mips-malta/readme.txt
@@ -6,4 +6,4 @@ The login prompt will appear in the terminal that started Qemu. The
 graphical window is the framebuffer. No keyboard support has been
 enabled.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_mips_malta_defconfig b/configs/qemu_mips_malta_defconfig
index 435b02d..33c389a 100644
--- a/configs/qemu_mips_malta_defconfig
+++ b/configs/qemu_mips_malta_defconfig
@@ -6,15 +6,15 @@ BR2_mips_32r2=y
 BR2_TARGET_ROOTFS_EXT2=y
 # BR2_TARGET_ROOTFS_TAR is not set
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mips-malta/linux-3.6.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mips-malta/linux-3.7.config"
 BR2_LINUX_KERNEL_VMLINUX=y
 
 # Serial port config

^ permalink raw reply related

* [Buildroot] [git commit] qemu/mips64-malta: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=e095c715c347558f73f2a4d31c362361f4195dac
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>
---
 .../{linux-3.6.config => linux-3.7.config}         |    0
 board/qemu/mips64-malta/readme.txt                 |    2 +-
 configs/qemu_mips64_malta_defconfig                |    8 ++++----
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/board/qemu/mips64-malta/linux-3.6.config b/board/qemu/mips64-malta/linux-3.7.config
similarity index 100%
rename from board/qemu/mips64-malta/linux-3.6.config
rename to board/qemu/mips64-malta/linux-3.7.config
diff --git a/board/qemu/mips64-malta/readme.txt b/board/qemu/mips64-malta/readme.txt
index ad24b6e..1d6ff10 100644
--- a/board/qemu/mips64-malta/readme.txt
+++ b/board/qemu/mips64-malta/readme.txt
@@ -8,4 +8,4 @@ enabled.
 
 This configuration is known to be flaky.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_mips64_malta_defconfig b/configs/qemu_mips64_malta_defconfig
index 2c1192a..8644acd 100644
--- a/configs/qemu_mips64_malta_defconfig
+++ b/configs/qemu_mips64_malta_defconfig
@@ -10,15 +10,15 @@ BR2_PREFER_STATIC_LIB=y
 BR2_TARGET_ROOTFS_EXT2=y
 # BR2_TARGET_ROOTFS_TAR is not set
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mips64-malta/linux-3.6.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mips64-malta/linux-3.7.config"
 BR2_LINUX_KERNEL_VMLINUX=y
 
 # Serial port config

^ permalink raw reply related

* [Buildroot] [git commit] qemu/arm-vexpress: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

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

Bump to use kernel 3.7.1
Switch to hard float toolchain with NEON and VFP support.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 board/qemu/arm-vexpress/readme.txt  |    2 +-
 configs/qemu_arm_vexpress_defconfig |   13 ++++++++-----
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/board/qemu/arm-vexpress/readme.txt b/board/qemu/arm-vexpress/readme.txt
index 41a5f67..c74bfcd 100644
--- a/board/qemu/arm-vexpress/readme.txt
+++ b/board/qemu/arm-vexpress/readme.txt
@@ -5,4 +5,4 @@ Run the emulation with:
 The login prompt will appear in the terminal that started Qemu. The
 graphical window is the framebuffer.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_arm_vexpress_defconfig b/configs/qemu_arm_vexpress_defconfig
index 424a7c5..f749800 100644
--- a/configs/qemu_arm_vexpress_defconfig
+++ b/configs/qemu_arm_vexpress_defconfig
@@ -1,22 +1,25 @@
 # Architecture
 BR2_arm=y
 BR2_cortex_a9=y
+BR2_ARM_ENABLE_NEON=y
+BR2_VFP_FLOAT=y
+# BR2_SOFT_FLOAT is not set
 
-# system
+# System
 BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y
 BR2_TARGET_GENERIC_GETTY=y
 BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0"
 
-# filesystem
+# Filesystem
 BR2_TARGET_ROOTFS_EXT2=y
 # BR2_TARGET_ROOTFS_TAR is not set
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_DEFCONFIG="vexpress"
 BR2_LINUX_KERNEL_ZIMAGE=y

^ permalink raw reply related

* [Buildroot] [git commit] qemu/arm-versatile: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:32 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=aa5d13568d193b741d4c20fb8670a3f7334efdcb
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>
---
 .../{linux-3.6.config => linux-3.7.config}         |    6 +++---
 board/qemu/arm-versatile/readme.txt                |    2 +-
 configs/qemu_arm_versatile_defconfig               |    8 ++++----
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/board/qemu/arm-versatile/linux-3.6.config b/board/qemu/arm-versatile/linux-3.7.config
similarity index 96%
rename from board/qemu/arm-versatile/linux-3.6.config
rename to board/qemu/arm-versatile/linux-3.7.config
index 5f58b97..da73575 100644
--- a/board/qemu/arm-versatile/linux-3.6.config
+++ b/board/qemu/arm-versatile/linux-3.7.config
@@ -1,3 +1,4 @@
+CONFIG_ARCH_VERSATILE=y
 CONFIG_EXPERIMENTAL=y
 # CONFIG_LOCALVERSION_AUTO is not set
 CONFIG_SYSVIPC=y
@@ -15,7 +16,6 @@ CONFIG_LEDS_CPU=y
 CONFIG_ZBOOT_ROM_TEXT=0x0
 CONFIG_ZBOOT_ROM_BSS=0x0
 CONFIG_CMDLINE="root=1f03 mem=32M"
-CONFIG_VFP=y
 CONFIG_PM=y
 CONFIG_NET=y
 CONFIG_PACKET=y
@@ -34,11 +34,12 @@ CONFIG_MTD_BLOCK=y
 CONFIG_MTD_CFI=y
 CONFIG_MTD_CFI_ADV_OPTIONS=y
 CONFIG_MTD_CFI_INTELEXT=y
-CONFIG_MTD_ARM_INTEGRATOR=y
+CONFIG_MTD_PHYSMAP=y
 CONFIG_BLK_DEV_RAM=y
 CONFIG_SCSI=y
 CONFIG_BLK_DEV_SD=y
 CONFIG_SCSI_SYM53C8XX_2=y
+CONFIG_EEPROM_LEGACY=m
 CONFIG_NETDEVICES=y
 CONFIG_NET_ETHERNET=y
 CONFIG_SMC91X=y
@@ -69,7 +70,6 @@ CONFIG_MMC=y
 CONFIG_MMC_ARMMMCI=m
 CONFIG_EXT2_FS=y
 CONFIG_VFAT_FS=m
-CONFIG_TMPFS=y
 CONFIG_JFFS2_FS=y
 CONFIG_CRAMFS=y
 CONFIG_MINIX_FS=y
diff --git a/board/qemu/arm-versatile/readme.txt b/board/qemu/arm-versatile/readme.txt
index 7868204..51364c7 100644
--- a/board/qemu/arm-versatile/readme.txt
+++ b/board/qemu/arm-versatile/readme.txt
@@ -5,4 +5,4 @@ Run the emulation with:
 The login prompt will appear in the terminal that started Qemu. The
 graphical window is the framebuffer.
 
-Tested with QEMU 1.2.0
+Tested with QEMU 1.3.0
diff --git a/configs/qemu_arm_versatile_defconfig b/configs/qemu_arm_versatile_defconfig
index 85efa2b..428e07e 100644
--- a/configs/qemu_arm_versatile_defconfig
+++ b/configs/qemu_arm_versatile_defconfig
@@ -10,13 +10,13 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0"
 BR2_TARGET_ROOTFS_EXT2=y
 # BR2_TARGET_ROOTFS_TAR is not set
 
-# Lock to 3.6 headers to avoid breaking with newer kernels
-BR2_KERNEL_HEADERS_3_6=y
+# Lock to 3.7 headers to avoid breaking with newer kernels
+BR2_KERNEL_HEADERS_3_7=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/arm-versatile/linux-3.6.config"
+BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/arm-versatile/linux-3.7.config"
 BR2_LINUX_KERNEL_ZIMAGE=y

^ permalink raw reply related

* [Buildroot] [PATCH 01/13] qemu/microblaze: update to use kernel 3.7.1
From: Peter Korsgaard @ 2012-12-30 11:33 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1356834204-21952-1-git-send-email-gustavo@zacarias.com.ar>

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed series, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [autobuild.buildroot.net] Build results for 2012-12-29
From: Gustavo Zacarias @ 2012-12-30 12:03 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <87r4m7uacj.fsf@dell.be.48ers.dk>

On 12/30/2012 07:02 AM, Peter Korsgaard wrote:

> These two looks related to your recent gnutls version bump. Care to have
> a look?

Running a failing config now, i don't think i'll hit it barebones though
since they look like a pretty regular config.
Probably have to debootstrap.

> This is probably also related to it, but perhaps that gets fixed by
> Thomas' e17 update.

Seems unlikely from looking at the source of ecore.
Since people have been using and accustomed to gnutls-2.x which required
libgcrypt they've been including it blindly.
I'll test to see if it really requires libgcrypt (like ntfs-3g) or it's
just probably following old gnutls instructions and fix accordingly.

> Did you have a look at the host-gawk issue?

Yes, it seems peko-specific so my hunch says it's a distro toolchain
thing. I've asked Thomas and it seems it's runnig gcc 4.3.2.
Looks like the new gawk DFA is triggering a bug or using a newer feature
that it shouldn't.
Couldn't reproduce yet, so an old gentoo stage or debootstrap might help me.
So also looking into it.
A puny dual-core won't help me with getting these things solved quickly
though, except libecore :)
Regards.

^ permalink raw reply

* [Buildroot] Using a precompiled busybox toolchain as an external toolchain
From: Willy Lambert @ 2012-12-30 12:56 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAKvQZ_2ZJ9GOV-B2Gi1zG-gjJiFVYHxpd4GzFCHCAg7ABAPFUA@mail.gmail.com>

2012/12/18 Willy Lambert <lambert.willy@gmail.com>:
> 2012/12/18 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>:
>> Dear Willy Lambert,
>>
>> On Tue, 18 Dec 2012 16:19:47 +0100, Willy Lambert wrote:
>>
>>> aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaah. To be honest an entry
>>> in the manual to state this would be nice.
>>
>> Indeed. Feel free to submit a patch for the manual :-)
>>
>
> yes, but how ? Should I edit html files by and in the docs/manual folder ?
> I'm not at ease with git, so I will see during hollidays if I can do
> something with it.
>
>>> thanks, should I understand that I can't publish the buildroot
>>> toolchain on another  PC without installing it at the __same__ place ?
>>

may I bump this, how should I edit documentation ?

I succeeded in creating the toolchain in "MY_TOOLCAHIN_PATH", but :
_ if I do a make clean it disapear, so I suppose I have to change
BR2_HOST_DIR back the default value after having creating the
toolchain ?
_ what's happening if I create several toolchain for several arch in
the same "MY_TOOLCHAIN_PATH ? does they override or do they install
nicely both in the same dir ?
_ what is the path I have to give to buildroot ? "MY_TOOLCHAIN_PATH'
or something like "MY_TOOLCHAIN_PATH'/usr/...

>> Your understanding is correct. Making the toolchain relocatable is part
>> of our TODO-list, though.
>>
>
> Ok thanks
>
>> Best regards,
>>
>> Thomas
>> --
>> Thomas Petazzoni, Free Electrons
>> Kernel, drivers, real-time and embedded Linux
>> development, consulting, training and support.
>> http://free-electrons.com

^ permalink raw reply


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