Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 13/51] package/spice: new package
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/Config.in       |    1 +
 package/spice/Config.in |   23 +++++++++++++++++
 package/spice/spice.mk  |   62 +++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 86 insertions(+), 0 deletions(-)
 create mode 100644 package/spice/Config.in
 create mode 100644 package/spice/spice.mk

diff --git a/package/Config.in b/package/Config.in
index 8651fb7..02f65fb 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -658,6 +658,7 @@ source "package/socat/Config.in"
 source "package/socketcand/Config.in"
 source "package/spawn-fcgi/Config.in"
 source "package/spice-protocol/Config.in"
+source "package/spice/Config.in"
 source "package/squid/Config.in"
 source "package/stunnel/Config.in"
 source "package/tcpdump/Config.in"
diff --git a/package/spice/Config.in b/package/spice/Config.in
new file mode 100644
index 0000000..ced3ec7
--- /dev/null
+++ b/package/spice/Config.in
@@ -0,0 +1,23 @@
+comment "spice server depends on python"
+	depends on !BR2_PACKAGE_PYTHON
+
+config BR2_PACKAGE_SPICE
+	bool "spice server"
+	depends on BR2_PACKAGE_PYTHON
+	select BR2_PACKAGE_PYTHON_PYPARSING
+	select BR2_PACKAGE_SPICE_PROTOCOL
+	select BR2_PACKAGE_PIXMAN
+	select BR2_PACKAGE_CELT051
+	select BR2_PACKAGE_ALSA_LIB
+	select BR2_PACKAGE_OPENSSL
+	select BR2_PACKAGE_JPEG
+	help
+	  The Spice project aims to provide a complete open source
+	  solution for interaction with virtualized desktop devices.
+	  The Spice project deals with both the virtualized devices
+	  and the front-end. Interaction between front-end and
+	  back-end is done using VD-Interfaces.
+	  
+	  This package implements the server-part of Spice.
+	  
+	  http://www.spice-space.org/
diff --git a/package/spice/spice.mk b/package/spice/spice.mk
new file mode 100644
index 0000000..dbd2d5f
--- /dev/null
+++ b/package/spice/spice.mk
@@ -0,0 +1,62 @@
+#############################################################
+#
+# Spice
+#
+#############################################################
+
+SPICE_VERSION         = 0.12.0
+SPICE_SOURCE          = spice-$(SPICE_VERSION).tar.bz2
+SPICE_SITE            = http://www.spice-space.org/download/releases/
+SPICE_LICENSE         = LGPLv2.1+
+SPICE_LICENSE_FILES   = COPYING
+SPICE_INSTALL_STAGING = YES
+SPICE_DEPENDENCIES    = \
+    spice-protocol      \
+    pixman              \
+    celt051             \
+    python-pyparsing    \
+    alsa-lib            \
+    openssl             \
+    jpeg                \
+
+# We disable everything for now, because the dependency tree can become
+# quite deep if we try to enable some features, and I have not tested that.
+SPICE_CONF_OPT =            \
+  --disable-tunnel          \
+  --disable-gui             \
+  --disable-opengl          \
+  --disable-smartcard       \
+  --disable-client          \
+  --disable-automated-tests \
+  --without-sasl            \
+
+SPICE_DEPENDENCIES += host-pkgconf
+
+SPICE_CONF_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages
+SPICE_MAKE_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages
+
+# We need to tweak spice.pc because it /forgets/ (for static linking) that
+# it should link against libz and libjpeg. libz is pkg-config-aware, while
+# libjpeg isn't, hence the two-line tweak
+define SPICE_POST_INSTALL_STAGING_FIX_PC
+	$(SED) 's/^\(Requires.private:.*\)$$/\1 zlib/; s/^\(Libs.private:.*\)$$/\1 -ljpeg/;'    \
+	       "$(STAGING_DIR)/usr/lib/pkgconfig/spice-server.pc"
+endef
+SPICE_POST_INSTALL_STAGING_HOOKS += SPICE_POST_INSTALL_STAGING_FIX_PC
+
+# It is currently not possible to detect if stack-protection is available
+# or not, because it requires support from both the compiler *and* the
+# C library, but the C library (eg. uClibc) can be compiled without that
+# support, even if gcc accepts the -fstack-protector-all option.
+# spice's ./configure only checks for gcc's -fstack-protector-all option,
+# so it misses the case where the C library doe not provide the requires
+# support.
+# A correct fix would be to fix spice's ./configure to also check the C
+# library, but it might be much more involved.
+# So, we simply disable it for now. After all, as uClibc's help puts it:
+#     Note that NOEXECSTACK on a kernel with address space randomization
+#     is generally sufficient to prevent most buffer overflow exploits
+#     without increasing code size.
+SPICE_CONF_OPT += gl_cv_warn__fstack_protector_all=no
+
+$(eval $(autotools-package))
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 12/51] package/slirp: new package
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/Config.in       |    1 +
 package/slirp/Config.in |   25 +++++++++++++++++++++++++
 package/slirp/slirp.mk  |   15 +++++++++++++++
 3 files changed, 41 insertions(+), 0 deletions(-)
 create mode 100644 package/slirp/Config.in
 create mode 100644 package/slirp/slirp.mk

diff --git a/package/Config.in b/package/Config.in
index 6fda15b..8651fb7 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -489,6 +489,7 @@ source "package/libupnp/Config.in"
 source "package/libvncserver/Config.in"
 source "package/nss-mdns/Config.in"
 source "package/ortp/Config.in"
+source "package/slirp/Config.in"
 source "package/usbredir/Config.in"
 source "package/zeromq/Config.in"
 endmenu
diff --git a/package/slirp/Config.in b/package/slirp/Config.in
new file mode 100644
index 0000000..dedded3
--- /dev/null
+++ b/package/slirp/Config.in
@@ -0,0 +1,25 @@
+config BR2_PACKAGE_SLIRP
+	bool "slirp"
+	help
+	  The Spice project aims to provide a complete open source
+	  solution for interaction with virtualized desktop devices.
+	  The Spice project deals with both the virtualized devices
+	  and the front-end. Interaction between front-end and
+	  back-end is done using VD-Interfaces.
+	  
+	  This package implements the slirp-part for Spice.
+	  Slirp emulates a PPP or SLIP connection over a normal terminal.
+	  
+	  http://www.spice-space.org/
+	  
+	  NOTE:
+	  This package has some history of a unique kind:
+	    - originally developped as 'slirp' by Danny Gasparovski, and
+	      seemingly abandonned (developper /disapeared/)
+	    - then re-maintained at sourceforge by "Kelly", up to some
+	      time around 2009: http://slirp.sourceforge.net/
+	    - during that period, QEMU (Fabrice BELLARD) forked the code
+	      and included it in QEMU
+	    - and it was imported from this breed by the Spice project
+	      around May 2009
+	    - which is what we use here
diff --git a/package/slirp/slirp.mk b/package/slirp/slirp.mk
new file mode 100644
index 0000000..04a4736
--- /dev/null
+++ b/package/slirp/slirp.mk
@@ -0,0 +1,15 @@
+#############################################################
+#
+# Spice-slirp
+#
+#############################################################
+
+SLIRP_VERSION         = 8c2da74c1385242f20799fec8c04f8378edc6550
+SLIRP_SITE            = git://anongit.freedesktop.org/spice/slirp
+SLIRP_LICENSE         = BSD-4c BSD-2c
+# Note: The license file 'COPYRIGHT' is missing from the sources,
+# although some files refer to it.
+SLIRP_INSTALL_STAGING = YES
+SLIRP_AUTORECONF      = YES
+
+$(eval $(autotools-package))
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 11/51] package/cegui06: new package
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

Although there are more reent versions of CEGUI, we are stuck
with 0.6.2b for use by spice.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
---
 package/Config.in                      |    1 +
 package/cegui06/Config.in              |   15 +++++++++++++
 package/cegui06/cegui06-stddef.h.patch |   26 +++++++++++++++++++++++
 package/cegui06/cegui06.mk             |   36 ++++++++++++++++++++++++++++++++
 4 files changed, 78 insertions(+), 0 deletions(-)
 create mode 100644 package/cegui06/Config.in
 create mode 100644 package/cegui06/cegui06-stddef.h.patch
 create mode 100644 package/cegui06/cegui06.mk

diff --git a/package/Config.in b/package/Config.in
index a19c265..6fda15b 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -109,6 +109,7 @@ comment "Graphic applications"
 source "package/rrdtool/Config.in"
 
 comment "graphic libraries"
+source "package/cegui06/Config.in"
 source "package/directfb/Config.in"
 source "package/directfb-examples/Config.in"
 source "package/divine/Config.in"
diff --git a/package/cegui06/Config.in b/package/cegui06/Config.in
new file mode 100644
index 0000000..3b77e9f
--- /dev/null
+++ b/package/cegui06/Config.in
@@ -0,0 +1,15 @@
+config BR2_PACKAGE_CEGUI06
+	bool "cegui06"
+	depends on BR2_TOOLCHAIN_HAS_THREADS
+	select BR2_PACKAGE_FREETYPE
+	select BR2_PACKAGE_PCRE
+	select BR2_PACKAGE_EXPAT
+	help
+	  Crazy Eddie's GUI System is a free library providing windowing and
+	  widgets for graphics APIs / engines where such functionality is not
+	  natively available, or severely lacking. The library is object
+	  orientated, written in C++, and targeted at games developers who
+	  should be spending their time creating great games, not building
+	  GUI sub-systems!
+	  
+	  http://www.cegui.org.uk/
diff --git a/package/cegui06/cegui06-stddef.h.patch b/package/cegui06/cegui06-stddef.h.patch
new file mode 100644
index 0000000..cc16eff
--- /dev/null
+++ b/package/cegui06/cegui06-stddef.h.patch
@@ -0,0 +1,26 @@
+includes: ptrdiff_t is defined in stddef.h
+
+ptrdiff_t is defined in the stddef.h header, so this
+header must be included.
+
+Do the #include in a common header to avoid doing it
+all over the place.
+
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+
+---
+Patch not sent upstream, it's a no-longer-maintained branch.
+To be noted, however, is that the current devel branch is
+still missing that include.
+
+diff -durN cegui06-0.6.2.orig/include/CEGUIBase.h cegui06-0.6.2/include/CEGUIBase.h
+--- cegui06-0.6.2.orig//include/CEGUIBase.h	2008-02-11 15:38:27.000000000 +0100
++++ cegui06-0.6.2/include/CEGUIBase.h	2012-08-19 22:51:50.260385978 +0200
+@@ -34,6 +34,7 @@
+ #define _CEGUIBase_h_
+ 
+ #include <cassert>
++#include <stddef.h>
+ 
+ // bring in configuration options
+ #include "CEGUIConfig.h"
diff --git a/package/cegui06/cegui06.mk b/package/cegui06/cegui06.mk
new file mode 100644
index 0000000..c32c15b
--- /dev/null
+++ b/package/cegui06/cegui06.mk
@@ -0,0 +1,36 @@
+#############################################################
+#
+# libcegui
+#
+#############################################################
+
+# Do not update the version, we need exactly that one for Spice.
+CEGUI06_VERSION_MAJOR   = 0.6.2
+CEGUI06_VERSION         = $(CEGUI06_VERSION_MAJOR)b
+CEGUI06_SOURCE          = CEGUI-$(CEGUI06_VERSION).tar.gz
+CEGUI06_SITE            = http://downloads.sourceforge.net/project/crayzedsgui/CEGUI%20Mk-2/$(CEGUI06_VERSION_MAJOR)
+CEGUI06_LICENSE         = MIT
+CEGUI06_LICENSE_FILES   = COPYING
+CEGUI06_INSTALL_STAGING = YES
+
+CEGUI06_DEPENDENCIES    =       \
+    freetype                    \
+    pcre                        \
+    expat                       \
+
+CEGUI06_CONF_OPT =              \
+    --enable-expat              \
+    --disable-external-tinyxml  \
+    --disable-xerces-c          \
+    --disable-libxml            \
+    --disable-tinyxml           \
+    --disable-opengl-renderer   \
+    --disable-external-glew     \
+    --disable-irrlicht-renderer \
+    --disable-directfb-renderer \
+    --disable-samples           \
+    --disable-lua-module        \
+    --disable-toluacegui        \
+    --disable-external-toluapp  \
+
+$(eval $(autotools-package))
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 10/51] package/spice-protocol: new package
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/Config.in                        |    1 +
 package/spice-protocol/Config.in         |   12 ++++++++++++
 package/spice-protocol/spice-protocol.mk |   14 ++++++++++++++
 3 files changed, 27 insertions(+), 0 deletions(-)
 create mode 100644 package/spice-protocol/Config.in
 create mode 100644 package/spice-protocol/spice-protocol.mk

diff --git a/package/Config.in b/package/Config.in
index ffe0b8f..a19c265 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -655,6 +655,7 @@ source "package/ser2net/Config.in"
 source "package/socat/Config.in"
 source "package/socketcand/Config.in"
 source "package/spawn-fcgi/Config.in"
+source "package/spice-protocol/Config.in"
 source "package/squid/Config.in"
 source "package/stunnel/Config.in"
 source "package/tcpdump/Config.in"
diff --git a/package/spice-protocol/Config.in b/package/spice-protocol/Config.in
new file mode 100644
index 0000000..b354361
--- /dev/null
+++ b/package/spice-protocol/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_SPICE_PROTOCOL
+	bool "spice protocol"
+	help
+	  The Spice project aims to provide a complete open source
+	  solution for interaction with virtualized desktop devices.
+	  The Spice project deals with both the virtualized devices
+	  and the front-end. Interaction between front-end and
+	  back-end is done using VD-Interfaces.
+	  
+	  This package implements the protocol-part of Spice.
+	  
+	  http://www.spice-space.org/
diff --git a/package/spice-protocol/spice-protocol.mk b/package/spice-protocol/spice-protocol.mk
new file mode 100644
index 0000000..dcfe50d
--- /dev/null
+++ b/package/spice-protocol/spice-protocol.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# Spice-protocol
+#
+#############################################################
+
+SPICE_PROTOCOL_VERSION         = 0.12.2
+SPICE_PROTOCOL_SOURCE          = spice-protocol-$(SPICE_PROTOCOL_VERSION).tar.bz2
+SPICE_PROTOCOL_SITE            = http://www.spice-space.org/download/releases/
+SPICE_PROTOCOL_LICENSE         = BSD-3c
+SPICE_PROTOCOL_LICENSE_FILES   = COPYING
+SPICE_PROTOCOL_INSTALL_STAGING = YES
+
+$(eval $(autotools-package))
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 09/51] package/python-pyparsing: new package
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/Config.in                            |    1 +
 package/python-pyparsing/Config.in           |   11 +++++++
 package/python-pyparsing/python-pyparsing.mk |   38 ++++++++++++++++++++++++++
 3 files changed, 50 insertions(+), 0 deletions(-)
 create mode 100644 package/python-pyparsing/Config.in
 create mode 100644 package/python-pyparsing/python-pyparsing.mk

diff --git a/package/Config.in b/package/Config.in
index 029a550..ffe0b8f 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -307,6 +307,7 @@ source "package/python-netifaces/Config.in"
 source "package/python-nfc/Config.in"
 source "package/python-protobuf/Config.in"
 source "package/python-pygame/Config.in"
+source "package/python-pyparsing/Config.in"
 source "package/python-serial/Config.in"
 source "package/python-setuptools/Config.in"
 endmenu
diff --git a/package/python-pyparsing/Config.in b/package/python-pyparsing/Config.in
new file mode 100644
index 0000000..126dd0e
--- /dev/null
+++ b/package/python-pyparsing/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_PYTHON_PYPARSING
+	bool "pyparsing"
+	depends on BR2_PACKAGE_PYTHON
+	help
+	  The pyparsing module is an alternative approach to creating and
+	  executing simple grammars, vs. the traditional lex/yacc approach,
+	  or the use of regular expressions. The pyparsing module provides
+	  a library of classes that client code uses to construct the grammar
+	  directly in Python code.
+	  
+	  http://pyparsing.wikispaces.com/
diff --git a/package/python-pyparsing/python-pyparsing.mk b/package/python-pyparsing/python-pyparsing.mk
new file mode 100644
index 0000000..621f636
--- /dev/null
+++ b/package/python-pyparsing/python-pyparsing.mk
@@ -0,0 +1,38 @@
+#############################################################
+#
+# python-pyparsing
+#
+#############################################################
+
+PYTHON_PYPARSING_VERSION         = 1.5.6
+PYTHON_PYPARSING_SOURCE          = pyparsing-$(PYTHON_PYPARSING_VERSION).tar.gz
+PYTHON_PYPARSING_SITE            = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/pyparsing/pyparsing/pyparsing-$(PYTHON_PYPARSING_VERSION)
+PYTHON_PYPARSING_LICENSE         = MIT
+PYTHON_PYPARSING_LICENSE_FILES   = LICENSE
+PYTHON_PYPARSING_INSTALL_STAGING = YES
+PYTHON_PYPARSING_DEPENDENCIES    = python
+
+# Shamelessly vampirised from python-pygame ;-)
+define PYTHON_PYPARSING_BUILD_CMDS
+	(cd $(@D);                                              \
+	 CC="$(TARGET_CC)"                                      \
+	 CFLAGS="$(TARGET_CFLAGS)"                              \
+	 LDSHARED="$(TARGET_CROSS)gcc -shared"                  \
+	 CROSS_COMPILING=yes                                    \
+	 _python_sysroot=$(STAGING_DIR)                         \
+	 _python_srcdir=$(BUILD_DIR)/python$(PYTHON_VERSION)    \
+	 _python_prefix=/usr                                    \
+	 _python_exec_prefix=/usr                               \
+	 $(HOST_DIR)/usr/bin/python setup.py build              \
+	)
+endef
+
+# Shamelessly vampirised from python-pygame ;-)
+define PYTHON_PYPARSING_INSTALL_TARGET_CMDS
+	(cd $(@D);                                              \
+	 $(HOST_DIR)/usr/bin/python setup.py install            \
+	                            --prefix=$(TARGET_DIR)/usr  \
+	)
+endef
+
+$(eval $(generic-package))
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 08/51] package/celt051: new package
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/multimedia/Config.in         |    1 +
 package/multimedia/celt051/Config.in |   15 +++++++++++++++
 package/multimedia/celt051/celt.mk   |   30 ++++++++++++++++++++++++++++++
 3 files changed, 46 insertions(+), 0 deletions(-)
 create mode 100644 package/multimedia/celt051/Config.in
 create mode 100644 package/multimedia/celt051/celt.mk

diff --git a/package/multimedia/Config.in b/package/multimedia/Config.in
index 273d9bc..5e8d60c 100644
--- a/package/multimedia/Config.in
+++ b/package/multimedia/Config.in
@@ -2,6 +2,7 @@ menu "Audio and video applications"
 source "package/multimedia/alsa-utils/Config.in"
 source "package/multimedia/aumix/Config.in"
 source "package/multimedia/bellagio/Config.in"
+source "package/multimedia/celt051/Config.in"
 source "package/multimedia/faad2/Config.in"
 source "package/multimedia/flac/Config.in"
 source "package/multimedia/ffmpeg/Config.in"
diff --git a/package/multimedia/celt051/Config.in b/package/multimedia/celt051/Config.in
new file mode 100644
index 0000000..50ed069
--- /dev/null
+++ b/package/multimedia/celt051/Config.in
@@ -0,0 +1,15 @@
+config BR2_PACKAGE_CELT051
+	bool "celt051"
+	select BR2_PACKAGE_LIBOGG
+	help
+	  The CELT ultra-low delay audio codec
+	  
+	  The CELT codec is a compression algorithm for audio. Like MP3,
+	  Vorbis, and AAC it is suitable for transmitting music with high
+	  quality. Unlike these formats CELT imposes very little delay on
+	  the signal, even less than is typical for speech centric formats
+	  like Speex, GSM, or G.729.
+	  
+	  Note: this is version 0.5.1.3 of celt.
+	  
+	  http://www.celt-codec.org/
diff --git a/package/multimedia/celt051/celt.mk b/package/multimedia/celt051/celt.mk
new file mode 100644
index 0000000..9baaa82
--- /dev/null
+++ b/package/multimedia/celt051/celt.mk
@@ -0,0 +1,30 @@
+#############################################################
+#
+# celt051
+#
+#############################################################
+
+# Although version newer than 0.5.1.3 exists, we're
+# stuck with 0.5.1.3 for use by Spice (coming later)
+CELT051_VERSION         = 0.5.1.3
+CELT051_SOURCE          = celt-$(CELT051_VERSION).tar.gz
+CELT051_SITE            = http://downloads.xiph.org/releases/celt
+CELT051_LICENSE         = BSD-2c
+CELT051_LICENSE_FILES   = COPYING
+CELT051_INSTALL_STAGING = YES
+CELT051_DEPENDENCIES    = libogg
+
+# Need to specify --with-ogg, otherwise /usr/lib may be searched for
+# if target is the same kind as host (ie. same arch, same bitness,
+# same endianness, so that /usr/lib contains libraries linkable by
+# our cross-compiler)
+CELT051_CONF_OPT =                  \
+  --enable-fixed-point              \
+  --disable-fixed-point-debug       \
+  --disable-experimental-postfilter \
+  --disable-static-modes            \
+  --disable-assertions              \
+  --disable-oggtest                 \
+  --with-ogg=$(STAGING_DIR)/usr     \
+
+$(eval $(autotools-package))
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 07/51] package/usbredir: new package
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
---
 package/Config.in            |    1 +
 package/usbredir/Config.in   |   28 ++++++++++++++++++++++++++++
 package/usbredir/usbredir.mk |   31 +++++++++++++++++++++++++++++++
 3 files changed, 60 insertions(+), 0 deletions(-)
 create mode 100644 package/usbredir/Config.in
 create mode 100644 package/usbredir/usbredir.mk

diff --git a/package/Config.in b/package/Config.in
index b50eaf8..029a550 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -487,6 +487,7 @@ source "package/libupnp/Config.in"
 source "package/libvncserver/Config.in"
 source "package/nss-mdns/Config.in"
 source "package/ortp/Config.in"
+source "package/usbredir/Config.in"
 source "package/zeromq/Config.in"
 endmenu
 
diff --git a/package/usbredir/Config.in b/package/usbredir/Config.in
new file mode 100644
index 0000000..8d8ac5a
--- /dev/null
+++ b/package/usbredir/Config.in
@@ -0,0 +1,28 @@
+comment "usbredir requires libusb"
+	depends on !BR2_PACKAGE_LIBUSB
+
+config BR2_PACKAGE_USBREDIR
+	bool "usbredir"
+	depends on BR2_PACKAGE_LIBUSB
+	help
+	  usbredir is the name of a network protocol for sending usb device
+	  traffic over a network connection. It is also the name of the
+	  software package offering a parsing library, a usbredirhost library
+	  and several utilities implementing this protocol.
+	  
+	  Note: only the library is installed, not the utilities. Say 'y'
+	  below if you want the server too.
+	  
+	  http://www.spice-space.org/page/UsbRedir
+
+if BR2_PACKAGE_USBREDIR
+
+config BR2_PACKAGE_USBREDIR_SERVER
+	bool "usbredirserver on target"
+	help
+	  If you want to serve usbredir requests on your target, say 'y'
+	  here to have the usbredir server on the target.
+	  
+	  Note: the server is not required to use the library.
+
+endif
diff --git a/package/usbredir/usbredir.mk b/package/usbredir/usbredir.mk
new file mode 100644
index 0000000..70b50c3
--- /dev/null
+++ b/package/usbredir/usbredir.mk
@@ -0,0 +1,31 @@
+#############################################################
+#
+# usbredir
+#
+#############################################################
+
+USBREDIR_VERSION         = 0.4.3
+USBREDIR_SOURCE          = usbredir-$(USBREDIR_VERSION).tar.bz2
+USBREDIR_SITE            = http://spice-space.org/download/usbredir
+USBREDIR_LICENSE         = LGPLv2.1+
+USBREDIR_LICENSE_FILES   = COPYING.LIB
+USBREDIR_INSTALL_STAGING = YES
+USBREDIR_DEPENDENCIES    = libusb
+
+USBREDIR_DEPENDENCIES    += host-pkgconf
+
+ifeq ($(BR2_PACKAGE_USBREDIR_SERVER),y)
+
+USBREDIR_LICENSE         += (for the library), GPLv2+ (for the server)
+USBREDIR_LICENSE_FILES   += COPYING
+
+else # BR2_PACKAGE_USBREDIR_SERVER != y
+
+define USBREDIR_POST_INSTALL_TARGET_RM_SERVER
+	rm -f $(TARGET_DIR)/usr/sbin/usbredirserver
+endef
+USBREDIR_POST_INSTALL_TARGET_HOOKS += USBREDIR_POST_INSTALL_TARGET_RM_SERVER
+
+endif # BR2_PACKAGE_USBREDIR_SERVER
+
+$(eval $(autotools-package))
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 06/51] package/libiscsi: new package
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/Config.in            |    1 +
 package/libiscsi/Config.in   |   12 ++++++++++++
 package/libiscsi/libiscsi.mk |   15 +++++++++++++++
 3 files changed, 28 insertions(+), 0 deletions(-)
 create mode 100644 package/libiscsi/Config.in
 create mode 100644 package/libiscsi/libiscsi.mk

diff --git a/package/Config.in b/package/Config.in
index 529c1ce..b50eaf8 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -461,6 +461,7 @@ source "package/libesmtp/Config.in"
 source "package/libeXosip2/Config.in"
 source "package/libfcgi/Config.in"
 source "package/libidn/Config.in"
+source "package/libiscsi/Config.in"
 source "package/liboauth/Config.in"
 source "package/libmicrohttpd/Config.in"
 source "package/neon/Config.in"
diff --git a/package/libiscsi/Config.in b/package/libiscsi/Config.in
new file mode 100644
index 0000000..f3fc29e
--- /dev/null
+++ b/package/libiscsi/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_LIBISCSI
+	bool "libiscsi"
+	select BR2_PACKAGE_POPT
+	help
+	  Libiscsi is a client-side library to implement the iSCSI protocol
+	  that can be used to access resource of an iSCSI Target.
+	  
+	  The library is fully async with regards to iscsi commands and scsi
+	  tasks, but a sync layer is also provided for ease of use for simpler
+	  applications.
+	  
+	  https://github.com/sahlberg/libiscsi  (no proper homepage)
diff --git a/package/libiscsi/libiscsi.mk b/package/libiscsi/libiscsi.mk
new file mode 100644
index 0000000..bfebd7e
--- /dev/null
+++ b/package/libiscsi/libiscsi.mk
@@ -0,0 +1,15 @@
+#############################################################
+#
+# libiscsi
+#
+#############################################################
+
+LIBISCSI_VERSION         = 1.6.0
+LIBISCSI_SOURCE          = libiscsi-$(LIBISCSI_VERSION).tar.gz
+LIBISCSI_SITE            = https://github.com/downloads/sahlberg/libiscsi
+LIBISCSI_LICENSE         = GPLv2+ LGPLv2.1+
+LIBISCSI_LICENSE_FILES   = COPYING LICENCE-GPL-2.txt LICENCE-LGPL-2.1.txt
+LIBISCSI_INSTALL_STAGING = YES
+LIBISCSI_DEPENDENCIES    = popt
+
+$(eval $(autotools-package))
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 05/51] package/vde2: new package
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

VDE is an ethernet compliant virtual network that can be
spawned over a set of physical computer over the Internet.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/Config.in      |    1 +
 package/vde2/Config.in |   10 ++++++++++
 package/vde2/vde2.mk   |   36 ++++++++++++++++++++++++++++++++++++
 3 files changed, 47 insertions(+), 0 deletions(-)
 create mode 100644 package/vde2/Config.in
 create mode 100644 package/vde2/vde2.mk

diff --git a/package/Config.in b/package/Config.in
index 74e439e..529c1ce 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -667,6 +667,7 @@ source "package/ttcp/Config.in"
 source "package/udpcast/Config.in"
 source "package/ulogd/Config.in"
 source "package/ushare/Config.in"
+source "package/vde2/Config.in"
 source "package/vpnc/Config.in"
 source "package/vsftpd/Config.in"
 source "package/vtun/Config.in"
diff --git a/package/vde2/Config.in b/package/vde2/Config.in
new file mode 100644
index 0000000..1591bc4
--- /dev/null
+++ b/package/vde2/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_VDE2
+	bool "vde2"
+	help
+	  VDE is an ethernet compliant virtual network that can be
+	  spawned over a set of physical computer over the Internet.
+	  VDE is part of virtualsquare project.
+	  
+	  http://vde.sourceforge.net/
+	  
+	  Note: only the libraries are installed.
diff --git a/package/vde2/vde2.mk b/package/vde2/vde2.mk
new file mode 100644
index 0000000..b2e0fea
--- /dev/null
+++ b/package/vde2/vde2.mk
@@ -0,0 +1,36 @@
+#############################################################
+#
+# vde2
+#
+#############################################################
+
+VDE2_VERSION         = 2.3.2
+VDE2_SOURCE          = vde2-$(VDE2_VERSION).tar.bz2
+VDE2_SITE            = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/vde/vde2/$(VDE2_VERSION)
+VDE2_LICENSE         = GPLv2+ LGPLv2.1+ BSD-3c
+VDE2_LICENSE_FILES   = COPYING COPYING.libvdeplug COPYING.slirpvde
+VDE2_INSTALL_STAGING = YES
+
+# Reasons for enabling/disabling stuff:
+#?- tuntap is enabled in the hope we're using a recent-enough toolchain
+#   that does have if_tun.h (virtually everything these days)
+# - kvde_switch is disabled because it requires a patched kernel
+# - cryptcab is disabled to not depend on openSSL
+# - python is disabled to not depend on Python
+# - pcap is disabled to not depend on libpcap
+# - profiling is disabled because we do not want to debug/profile
+#
+# Note: disabled features can be added with corresponding dependencies
+#       in future commits.
+VDE2_CONF_OPT = --disable-experimental  \
+                --disable-cryptcab      \
+                --disable-pcap          \
+                --disable-python        \
+                --disable-profile       \
+                --disable-kernel-switch \
+                --enable-tuntap         \
+
+#?Package does not build in parallel due to improper make rules
+VDE2_MAKE = $(MAKE1)
+
+$(eval $(autotools-package))
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 04/51] package/qemu: bump version
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

Bump QEMU to 1.2.1.

Note: 1.3.0 is out now, but ./configure has changed a bit, and there are
new dependencies, so the bump to 1.3.0 is postponed for a litle while...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Francois Perrad <fperrad@gmail.com>
---
 package/qemu/qemu.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 6c4c6a1..2fdf2ae 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-QEMU_VERSION = 1.2.0
+QEMU_VERSION = 1.2.1
 QEMU_SOURCE = qemu-$(QEMU_VERSION).tar.bz2
 QEMU_SITE = http://wiki.qemu.org/download
 QEMU_LICENSE = GPLv2 LGPLv2.1 MIT BSD-3c BSD-2c Others/BSD-1c
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 03/51] package/qemu: use autotools-package infrastructure
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

Turns out that, with a little bit of tweaking, we can use
the autotools-package infrastructure to build QEMU.

That's better than defining all the _CMDS and using the
generic-package infra.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Francois Perrad <fperrad@gmail.com>
---
 package/qemu/qemu.mk |   17 ++++-------------
 1 files changed, 4 insertions(+), 13 deletions(-)

diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 81cd79f..6c4c6a1 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -62,6 +62,9 @@ ifeq ($(HOST_QEMU_ARCH),powerpc)
 endif
 HOST_QEMU_TARGETS=$(HOST_QEMU_ARCH)-linux-user
 
+# Note: although QEMU has a ./configure script, it is not a real autotools
+# package, and ./configure chokes on options such as --host or --target.
+# So, provide out own _CONFIGURE_CMDS to override the defaults.
 define HOST_QEMU_CONFIGURE_CMDS
 	(cd $(@D); $(HOST_CONFIGURE_OPTS) ./configure   \
 		--target-list="$(HOST_QEMU_TARGETS)"    \
@@ -74,19 +77,7 @@ define HOST_QEMU_CONFIGURE_CMDS
 	)
 endef
 
-define HOST_QEMU_BUILD_CMDS
-	$(MAKE) -C $(@D) all
-endef
-
-define HOST_QEMU_INSTALL_CMDS
-	$(MAKE) -C $(@D) install
-endef
-
-define HOST_QEMU_CLEAN_CMDS
-	$(MAKE) -C $(@D) clean
-endef
-
-$(eval $(host-generic-package))
+$(eval $(host-autotools-package))
 
 # variable used by other packages
 QEMU_USER = $(HOST_DIR)/usr/bin/qemu-$(QEMU_ARCH)
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 02/51] package/qemu: fix host-qemu variable names
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

With the upcoming introduction of qemu-on-target, we need to properly
separate the variables used for the host qemu, from the variables
used for the target qemu.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Francois Perrad <fperrad@gmail.com>
---
 package/qemu/qemu.mk |   25 ++++++++++++++-----------
 1 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 790d34f..81cd79f 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -13,7 +13,10 @@ QEMU_LICENSE_FILES = COPYING COPYING.LIB
 #       the non-(L)GPL license texts are specified in the affected
 #       individual source files.
 
-QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
+#-------------------------------------------------------------
+# Host-qemu
+
+HOST_QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
 
 #       BR ARCH         qemu
 #       -------         ----
@@ -44,20 +47,20 @@ QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
 #       sh64            not supported
 #       sparc           sparc
 
-QEMU_ARCH = $(ARCH)
-ifeq ($(QEMU_ARCH),i486)
-    QEMU_ARCH = i386
+HOST_QEMU_ARCH = $(ARCH)
+ifeq ($(HOST_QEMU_ARCH),i486)
+    HOST_QEMU_ARCH = i386
 endif
-ifeq ($(QEMU_ARCH),i586)
-    QEMU_ARCH = i386
+ifeq ($(HOST_QEMU_ARCH),i586)
+    HOST_QEMU_ARCH = i386
 endif
-ifeq ($(QEMU_ARCH),i686)
-    QEMU_ARCH = i386
+ifeq ($(HOST_QEMU_ARCH),i686)
+    HOST_QEMU_ARCH = i386
 endif
-ifeq ($(QEMU_ARCH),powerpc)
-    QEMU_ARCH = ppc
+ifeq ($(HOST_QEMU_ARCH),powerpc)
+    HOST_QEMU_ARCH = ppc
 endif
-HOST_QEMU_TARGETS=$(QEMU_ARCH)-linux-user
+HOST_QEMU_TARGETS=$(HOST_QEMU_ARCH)-linux-user
 
 define HOST_QEMU_CONFIGURE_CMDS
 	(cd $(@D); $(HOST_CONFIGURE_OPTS) ./configure   \
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 01/51] package/qemu: add license information
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355070924-8009-1-git-send-email-yann.morin.1998@free.fr>

QEMU is such a snakes-nest of licenses... :-/

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Francois Perrad <fperrad@gmail.com>
---
 package/qemu/qemu.mk |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index d40d7c9..790d34f 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -7,6 +7,11 @@
 QEMU_VERSION = 1.2.0
 QEMU_SOURCE = qemu-$(QEMU_VERSION).tar.bz2
 QEMU_SITE = http://wiki.qemu.org/download
+QEMU_LICENSE = GPLv2 LGPLv2.1 MIT BSD-3c BSD-2c Others/BSD-1c
+QEMU_LICENSE_FILES = COPYING COPYING.LIB
+#?NOTE: there is no top-level license file for non-(L)GPL licenses;
+#       the non-(L)GPL license texts are specified in the affected
+#       individual source files.
 
 QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
 
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH 0/51 v4] Add QEMU for runing on the target
From: Yann E. MORIN @ 2012-12-09 16:34 UTC (permalink / raw)
  To: buildroot

Hello!

This patch series adds qemu as a package to run on the target.

Although this may sound weird in a first place, I use it to build a
simple VM server.

I also use it to build statically-linked user-emulation to run foreign
chroots on my PC (eg. running an ARM chroot on my x86_64), because
using glibc for static-linking is not possible (it still requires some
shared libs that it dlopens at runtime).

In the future, I plan on adding libvirt to remotely manage the VM server.

Changes v3 -> v4:
  - drop applied cURL fix (Peter)
  - fix some licenses infos (Thomas, Arnout)
  - rename DTC's make goals (Arnout) [*]
  - no longer autoreconf libiscsi (Thomas)
  - use autotools-package infra for qemu
  - drop bsd-user emulation, it does not build on Linux
  - move DTC to the end of the series, in case it is still a problem.

  [*] Not really using the names we discussed on the list, as Thomas said
      on IRC: "do not over-engineer", or "YAGNI". When/if the make-package
      infra is added, it will *then* be time to rename the variables, and
      nothing can guarantee that the names we choose *now* will still be
      relevant *then*.

Changes v2 -> v3:
  - act on Arnout's comments on v2:
    - cURL fix as a post-patch hook rather than post-install hook
    - dtc package name, install tools
    - usbredir cleanups
    - cegui06 package name
  - update to qemu 1.2.1

    [PATCH 01/51] package/qemu: add license information
    [PATCH 02/51] package/qemu: fix host-qemu variable names
    [PATCH 03/51] package/qemu: use autotools-package infrastructure
    [PATCH 04/51] package/qemu: bump version
    [PATCH 05/51] package/vde2: new package
    [PATCH 06/51] package/libiscsi: new package
    [PATCH 07/51] package/usbredir: new package
    [PATCH 08/51] package/celt051: new package
    [PATCH 09/51] package/python-pyparsing: new package
    [PATCH 10/51] package/spice-protocol: new package
    [PATCH 11/51] package/cegui06: new package
    [PATCH 12/51] package/slirp: new package
    [PATCH 13/51] package/spice: new package
    [PATCH 14/51] package/spice: enable client
    [PATCH 15/51] package/spice: enable GUI
    [PATCH 16/51] package/spice: enable slirp support
    [PATCH 17/51] package/libseccomp: new package
    [PATCH 18/51] package/keyutils: new package
    [PATCH 19/51] package/pmake: add host pmake
    [PATCH 20/51] package/libbsd: new package
    [PATCH 21/51] package/libedit2: new package
    [PATCH 22/51] package/ceph: new package
    [PATCH 23/51] package/qemu: build for the target (i386 or x86_64 only)
    [PATCH 24/51] package/qemu: add basic target selection
    [PATCH 25/51] package/qemu: add fine-grained target selection
    [PATCH 26/51] package/qemu: add SDL frontends
    [PATCH 27/51] package/qemu: add option to enable/disable the VNC frontend
    [PATCH 28/51] package/qemu: add VNC jpeg and png compression
    [PATCH 29/51] package/qemu: add VNC TLS-encryption
    [PATCH 30/51] package/qemu: add option to not install blobs
    [PATCH 31/51] package/qemu: add option to remove unwanted keymaps
    [PATCH 32/51] package/qemu: add uuid support
    [PATCH 33/51] package/qemu: add support for capabilities
    [PATCH 34/51] package/qemu: add attr/xattr option
    [PATCH 35/51] package/qemu: add support for virtfs
    [PATCH 36/51] package/qemu: add support for cURL
    [PATCH 37/51] package/qemu: enable use of the curses frontend
    [PATCH 38/51] package/qemu: add BlueZ connectivity
    [PATCH 39/51] package/qemu: add AIO support
    [PATCH 40/51] package/qemu: add support for VDE switches
    [PATCH 41/51] package/qemu: add iSCSI support
    [PATCH 42/51] package/qemu: add support for USB redirection
    [PATCH 43/51] package/qemu: add support for Spice
    [PATCH 44/51] package/qemu: enable sound
    [PATCH 45/51] package/qemu: add support for libseccomp
    [PATCH 46/51] package/qemu: option to build the docs
    [PATCH 47/51] package/qemu: move sub-options into a sub-menu
    [PATCH 48/51] package/qemu: enable a static build
    [PATCH 49/51] package/dtc: new package
    [PATCH 50/51] package/dtc: add option to install programs
    [PATCH 51/51] package/qemu: add support for FDT

Regards,
Yann E. MORIN.

^ permalink raw reply

* [Buildroot] [PATCH] tslib: add license info
From: Stephan Hoffmann @ 2012-12-09 15:54 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50C4A9E5.9060303@mind.be>

Am 09.12.2012 16:10, schrieb Arnout Vandecappelle:
> On 07/12/12 11:29, Stephan Hoffmann wrote:
>> Signed-off-by: Stephan Hoffmann<sho@relinux.de>
>> ---
>>   package/tslib/tslib.mk |    3 +++
>>   1 files changed, 3 insertions(+), 0 deletions(-)
>>
>> diff --git a/package/tslib/tslib.mk b/package/tslib/tslib.mk
>> index b10b5ec..9b51015 100644
>> --- a/package/tslib/tslib.mk
>> +++ b/package/tslib/tslib.mk
>> @@ -5,6 +5,9 @@
>>   #############################################################
>>   TSLIB_VERSION = 412d99d
>>   TSLIB_SITE = http://github.com/kergoth/tslib/tarball/master
>> +TSLIB_LICENSE = LGPLv2
>
>  The source files don't specify a version number. The COPYING file says:
>
> If the Library does not specify a license version number, you may
> choose any version ever published by the Free Software Foundation.
>
>
>  In other words, it's LGPL.
O.K., I wrote LGPLv2 because the author added the text of version 2. I
did not otice the cited text.

Regards

Stephan
>
>
>  Regards,
>  Arnout
>
>
>> +TSLIB_LICENSE_FILES = COPYING
>> +
>>   TSLIB_AUTORECONF = YES
>>   TSLIB_INSTALL_STAGING = YES
>>   TSLIB_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR)
>> LDFLAGS=-L$(STAGING_DIR)/usr/lib install
>


-- 
reLinux     -    Stephan Hoffmann
Am Schmidtgrund 124    50765 K?ln
Tel. +49.221.95595-19    Fax: -64
www.reLinux.de     sho at reLinux.de

^ permalink raw reply

* [Buildroot] [PATCH] pkg-download.mk: fix multiple matches in shallow clone test
From: Arnout Vandecappelle @ 2012-12-09 15:12 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354847827-4902-1-git-send-email-danomimanchego123@gmail.com>

On 07/12/12 03:37, Danomi Manchego wrote:
> Move the git reference directly to git-ls-remote rather than
> piping the output to grep, to help avoid reporting partial
> matches rather than the actual requested reference.  Also,
> add quotes to protest "test" from failing when multiple
> strings are reported.
>
> Signed-off-by: Danomi Manchego<danomimanchego123@gmail.com>

Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

> ---
>   package/pkg-download.mk |    2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/pkg-download.mk b/package/pkg-download.mk
> index ea01b05..1705fcd 100644
> --- a/package/pkg-download.mk
> +++ b/package/pkg-download.mk
> @@ -82,7 +82,7 @@ domainseparator=$(if $(1),$(1),/)
>   define DOWNLOAD_GIT
>   	test -e $(DL_DIR)/$($(PKG)_SOURCE) || \
>   	(pushd $(DL_DIR)>  /dev/null&&  \
> -	 ((test `git ls-remote  $($(PKG)_SITE) | cut -f 2- | grep $($(PKG)_DL_VERSION)`&&  \
> +	 ((test "`git ls-remote $($(PKG)_SITE) $($(PKG)_DL_VERSION)`"&&  \
>   	   echo "Doing shallow clone"&&  \
>   	   $(GIT) clone --depth 1 -b $($(PKG)_DL_VERSION) --bare $($(PKG)_SITE) $($(PKG)_BASE_NAME)) || \
>   	  (echo "Doing full clone"&&  \

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

^ permalink raw reply

* [Buildroot] [PATCH] tslib: add license info
From: Arnout Vandecappelle @ 2012-12-09 15:10 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354876163-30452-1-git-send-email-sho@relinux.de>

On 07/12/12 11:29, Stephan Hoffmann wrote:
> Signed-off-by: Stephan Hoffmann<sho@relinux.de>
> ---
>   package/tslib/tslib.mk |    3 +++
>   1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/package/tslib/tslib.mk b/package/tslib/tslib.mk
> index b10b5ec..9b51015 100644
> --- a/package/tslib/tslib.mk
> +++ b/package/tslib/tslib.mk
> @@ -5,6 +5,9 @@
>   #############################################################
>   TSLIB_VERSION = 412d99d
>   TSLIB_SITE = http://github.com/kergoth/tslib/tarball/master
> +TSLIB_LICENSE = LGPLv2

  The source files don't specify a version number. The COPYING file says:

If the Library does not specify a license version number, you may
choose any version ever published by the Free Software Foundation.


  In other words, it's LGPL.


  Regards,
  Arnout


> +TSLIB_LICENSE_FILES = COPYING
> +
>   TSLIB_AUTORECONF = YES
>   TSLIB_INSTALL_STAGING = YES
>   TSLIB_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install

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

^ permalink raw reply

* [Buildroot] [PATCH] fbv: add license info
From: Arnout Vandecappelle @ 2012-12-09 15:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354875156-28654-1-git-send-email-sho@relinux.de>

On 07/12/12 11:12, Stephan Hoffmann wrote:
> Signed-off-by: Stephan Hoffmann<sho@relinux.de>
> ---
>   package/fbv/fbv.mk |    3 +++
>   1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/package/fbv/fbv.mk b/package/fbv/fbv.mk
> index 7949e99..f697fe8 100644
> --- a/package/fbv/fbv.mk
> +++ b/package/fbv/fbv.mk
> @@ -7,6 +7,9 @@ FBV_VERSION:=1.0b
>   FBV_SOURCE:=fbv-$(FBV_VERSION).tar.gz
>   FBV_SITE:=http://s-tech.elsat.net.pl/fbv
>
> +FBV_LICENSE = GPLv2

  Although the README and COPYING files claim it's version 2, all source files
say version 2 or later.

  I'm not sure what to do here.  The safe option is:

FBV_LICENSE = GPLv2 (or later?)


> +FBV_LICENSE_FILES = COPYING

  That file is just referring to the GNU website, so it doesn't help much
to use that as the license file. Still, it's better than nothing I guess.


  Regards,
  Arnout

> +
>   ### image format dependencies and configure options
>   FBV_DEPENDENCIES = # empty
>   FBV_CONFIGURE_OPTS = # empty

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

^ permalink raw reply

* [Buildroot] [PATCH] tcl: add license information
From: Arnout Vandecappelle @ 2012-12-09 14:59 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354914901-4480-2-git-send-email-zinosat@tiscali.it>

On 07/12/12 22:15, Davide Viti wrote:
>
> Signed-off-by: Davide Viti<zinosat@tiscali.it>

Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>


  Regards,
  Arnout

> ---
>   package/tcl/tcl.mk |    2 ++
>   1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/package/tcl/tcl.mk b/package/tcl/tcl.mk
> index 606042e..ec089ee 100644
> --- a/package/tcl/tcl.mk
> +++ b/package/tcl/tcl.mk
> @@ -8,6 +8,8 @@ TCL_VERSION_MINOR = 19
>   TCL_VERSION = $(TCL_VERSION_MAJOR).$(TCL_VERSION_MINOR)
>   TCL_SOURCE = tcl$(TCL_VERSION)-src.tar.gz
>   TCL_SITE = http://downloads.sourceforge.net/project/tcl/Tcl/$(TCL_VERSION_MAJOR).$(TCL_VERSION_MINOR)
> +TCL_LICENSE = tcl license
> +TCL_LICENSE_FILE = license.terms
>   TCL_SUBDIR = unix
>   TCL_CONF_OPT = \
>   		--disable-symbols \

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

^ permalink raw reply

* [Buildroot] [PATCH] sane-backends: fix documentation build failure
From: Gustavo Zacarias @ 2012-12-09 14:35 UTC (permalink / raw)
  To: buildroot

Disable documentation build, it seems to break with older
texlive/kpathsea versions, fixes:
http://autobuild.buildroot.net/results/44327b543d8918929bf252c5284e8691fda87fd0/
Also switch to alioth mirror since the original tarball is gone from the
regular site when 1.0.23 was released.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/sane-backends/sane-backends.mk |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/package/sane-backends/sane-backends.mk b/package/sane-backends/sane-backends.mk
index 56ce82d..496dca4 100644
--- a/package/sane-backends/sane-backends.mk
+++ b/package/sane-backends/sane-backends.mk
@@ -5,7 +5,7 @@
 #############################################################
 SANE_BACKENDS_VERSION = 1.0.22
 SANE_BACKENDS_SOURCE = sane-backends-$(SANE_BACKENDS_VERSION).tar.gz
-SANE_BACKENDS_SITE = ftp://ftp2.sane-project.org/pub/sane/sane-backends-$(SANE_BACKENDS_VERSION)
+SANE_BACKENDS_SITE = https://alioth.debian.org/frs/download.php/3503
 
 ifeq ($(BR2_PACKAGE_LIBUSB),y)
 SANE_BACKENDS_DEPENDENCIES += libusb
@@ -37,4 +37,10 @@ else
 SANE_BACKENDS_CONF_OPT += --without-snmp
 endif
 
+define SANE_BACKENDS_DISABLE_DOCS
+	$(SED) 's/ doc//' $(@D)/Makefile
+endef
+
+SANE_BACKENDS_POST_CONFIGURE_HOOKS += SANE_BACKENDS_DISABLE_DOCS
+
 $(eval $(autotools-package))
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] [PATCH] bmon: needs mmu
From: Gustavo Zacarias @ 2012-12-09 14:13 UTC (permalink / raw)
  To: buildroot

Fixes
http://autobuild.buildroot.net/results/673b0e9a1ba75123ba2c59df8ad81550170fffef

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/bmon/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/package/bmon/Config.in b/package/bmon/Config.in
index 9692118..61d72f0 100644
--- a/package/bmon/Config.in
+++ b/package/bmon/Config.in
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_BMON
 	bool "bmon"
 	depends on BR2_INET_IPV6
+	depends on BR2_USE_MMU # fork()
 	help
 	  Linux bandwidth monitor
 
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] [PATCH] libfuse: needs threads
From: Gustavo Zacarias @ 2012-12-09 14:05 UTC (permalink / raw)
  To: buildroot

libfuse needs threads, fixes:
http://autobuild.buildroot.net/results/0111a67b9ed5f5f5dfc0725d009ea5c756c1755c

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libfuse/Config.in |    5 +++--
 package/sshfs/Config.in   |    1 +
 package/unionfs/Config.in |    1 +
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/package/libfuse/Config.in b/package/libfuse/Config.in
index dffadf8..2e9b7dc 100644
--- a/package/libfuse/Config.in
+++ b/package/libfuse/Config.in
@@ -1,10 +1,11 @@
 config BR2_PACKAGE_LIBFUSE
 	bool "libfuse"
 	depends on BR2_LARGEFILE
+	depends on BR2_TOOLCHAIN_HAS_THREADS
 	help
 	  FUSE (Filesystem in UserSpacE)
 
 	  http://fuse.sourceforge.net/
 
-comment "libfuse requires a toolchain with LARGEFILE support"
-        depends on !BR2_LARGEFILE
+comment "libfuse requires a toolchain with LARGEFILE and threads support"
+        depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/sshfs/Config.in b/package/sshfs/Config.in
index 37188ba..f729143 100644
--- a/package/sshfs/Config.in
+++ b/package/sshfs/Config.in
@@ -7,6 +7,7 @@ config BR2_PACKAGE_SSHFS
 	select BR2_PACKAGE_OPENSSH
 	depends on BR2_LARGEFILE
 	depends on BR2_USE_WCHAR # glib2
+	depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
 	help
 	  FUSE filesystem client based on the SSH File Transfer Protocol.
 
diff --git a/package/unionfs/Config.in b/package/unionfs/Config.in
index a974c8c..84dd7d7 100644
--- a/package/unionfs/Config.in
+++ b/package/unionfs/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_UNIONFS
 	bool "unionfs (FUSE)"
 	select BR2_PACKAGE_LIBFUSE
 	depends on BR2_LARGEFILE
+	depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
 	help
 	  A userspace unionfs implementation.
 
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] [PATCH] ltrace: bump to version 0.7.2
From: Gustavo Zacarias @ 2012-12-09 13:57 UTC (permalink / raw)
  To: buildroot

Bump ltrace to version 0.7.2 which includes my ppc fixup patch.
Also exclude aarch64 since it's not supported, fixes
http://autobuild.buildroot.net/results/8fc3a3720d9be2525784b0488653b4fdbb29e676/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/ltrace/Config.in                   |    1 +
 package/ltrace/ltrace-ppc-waitstatus.patch |   37 ----------------------------
 package/ltrace/ltrace.mk                   |    2 +-
 3 files changed, 2 insertions(+), 38 deletions(-)
 delete mode 100644 package/ltrace/ltrace-ppc-waitstatus.patch

diff --git a/package/ltrace/Config.in b/package/ltrace/Config.in
index 9fd9aaa..c77108f 100644
--- a/package/ltrace/Config.in
+++ b/package/ltrace/Config.in
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_LTRACE
 	bool "ltrace"
 	depends on !(BR2_avr32 || BR2_mips || BR2_sh || BR2_sh64 || BR2_xtensa)
+	depends on !BR2_aarch64
 	select BR2_PACKAGE_LIBELF
 	help
 	  Debugging program which runs a specified command until it exits.
diff --git a/package/ltrace/ltrace-ppc-waitstatus.patch b/package/ltrace/ltrace-ppc-waitstatus.patch
deleted file mode 100644
index fa87ea4..0000000
--- a/package/ltrace/ltrace-ppc-waitstatus.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From faa8dfe0507b56fb8a7666e326177aec7f364071 Mon Sep 17 00:00:00 2001
-From: Gustavo Zacarias <gustavo@zacarias.com.ar>
-Date: Mon, 3 Dec 2012 11:12:08 -0300
-Subject: [PATCH] Fix build failure on ppc
-
-ppc/trace.c is using waitstatus bits without including the appropiate
-headers, leading to a build failure:
-
-libtool: link:
-/home/gustavoz/b/test/output/host/usr/bin/powerpc-buildroot-linux-uclibc-gcc
--Wall -Wsign-compare -Wfloat-equal -Wformat-security -pipe -Os -o ltrace
-main.o  ./.libs/libltrace.a -lelf
-./.libs/libltrace.a(lt1-trace.o): In function `syscall_p':
-trace.c:(.text+0x28): undefined reference to `WIFSTOPPED'
-trace.c:(.text+0x40): undefined reference to `WSTOPSIG'
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
----
- sysdeps/linux-gnu/ppc/trace.c |    2 ++
- 1 files changed, 2 insertions(+), 0 deletions(-)
-
-diff --git a/sysdeps/linux-gnu/ppc/trace.c b/sysdeps/linux-gnu/ppc/trace.c
-index c152101..4357a1e 100644
---- a/sysdeps/linux-gnu/ppc/trace.c
-+++ b/sysdeps/linux-gnu/ppc/trace.c
-@@ -29,6 +29,8 @@
- #include <errno.h>
- #include <signal.h>
- #include <string.h>
-+#include <sys/types.h>
-+#include <sys/wait.h>
- 
- #include "backend.h"
- #include "breakpoint.h"
--- 
-1.7.8.6
-
diff --git a/package/ltrace/ltrace.mk b/package/ltrace/ltrace.mk
index ca6d621..4b31690 100644
--- a/package/ltrace/ltrace.mk
+++ b/package/ltrace/ltrace.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-LTRACE_VERSION = 0.7.1
+LTRACE_VERSION = 0.7.2
 LTRACE_SITE = http://alioth.debian.org/frs/download.php/3844
 LTRACE_SOURCE = ltrace-$(LTRACE_VERSION).tar.bz2
 LTRACE_DEPENDENCIES = libelf
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] [PATCH] libroxml: don't build docs
From: Gustavo Zacarias @ 2012-12-09 13:46 UTC (permalink / raw)
  To: buildroot

Don't build docs to avoid failures such as
http://autobuild.buildroot.net/results/3f1971472fe35a516b0f26ced477d33cb18280c9/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libroxml/libroxml.mk |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/package/libroxml/libroxml.mk b/package/libroxml/libroxml.mk
index d7ef6a4..6e690aa 100644
--- a/package/libroxml/libroxml.mk
+++ b/package/libroxml/libroxml.mk
@@ -30,4 +30,10 @@ define LIBROXML_CLEAN_CMDS
 	-$(MAKE) -C $(@D) clean
 endef
 
+define LIBROXML_DISABLE_DOXYGEN
+	$(SED) 's:) doxy:):' $(@D)/Makefile
+endef
+
+LIBROXML_POST_PATCH_HOOKS += LIBROXML_DISABLE_DOXYGEN
+
 $(eval $(generic-package))
-- 
1.7.8.6

^ permalink raw reply related

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


Hello,

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

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

Build d94eefd0ec56f4efed9ce04c42b0c0115295df51
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 00:01:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/d94eefd0ec56f4efed9ce04c42b0c0115295df51/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d94eefd0ec56f4efed9ce04c42b0c0115295df51/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d94eefd0ec56f4efed9ce04c42b0c0115295df51/config
Defconfig      : http://autobuild.buildroot.net/results/d94eefd0ec56f4efed9ce04c42b0c0115295df51/defconfig

Build 4491abc3584b9e62b5cbed1f784a16b715060b5d
==============================================

Status         : NOK
Failure reason : berkeleydb-5.3.21
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 00:39:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/4491abc3584b9e62b5cbed1f784a16b715060b5d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4491abc3584b9e62b5cbed1f784a16b715060b5d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4491abc3584b9e62b5cbed1f784a16b715060b5d/config
Defconfig      : http://autobuild.buildroot.net/results/4491abc3584b9e62b5cbed1f784a16b715060b5d/defconfig

Build 66bc5dedbb697ff932ca42195ec0b35a643323c6
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 01:37:50
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/66bc5dedbb697ff932ca42195ec0b35a643323c6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/66bc5dedbb697ff932ca42195ec0b35a643323c6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/66bc5dedbb697ff932ca42195ec0b35a643323c6/config
Defconfig      : http://autobuild.buildroot.net/results/66bc5dedbb697ff932ca42195ec0b35a643323c6/defconfig

Build 1ab984a1506239974e8de66b6551706f03c50370
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 02:16:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/1ab984a1506239974e8de66b6551706f03c50370/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1ab984a1506239974e8de66b6551706f03c50370/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1ab984a1506239974e8de66b6551706f03c50370/config
Defconfig      : http://autobuild.buildroot.net/results/1ab984a1506239974e8de66b6551706f03c50370/defconfig

Build 236f93451c95edf7df70e246054a3d2723e9a6dc
==============================================

Status         : NOK
Failure reason : sane-backends-1.0.22
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 02:27:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/236f93451c95edf7df70e246054a3d2723e9a6dc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/236f93451c95edf7df70e246054a3d2723e9a6dc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/236f93451c95edf7df70e246054a3d2723e9a6dc/config
Defconfig      : http://autobuild.buildroot.net/results/236f93451c95edf7df70e246054a3d2723e9a6dc/defconfig

Build 80174ef293eac35504a8de9b7f3d59415f9798f2
==============================================

Status         : NOK
Failure reason : imagemagick-6.7.8-8
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 02:30:15
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/80174ef293eac35504a8de9b7f3d59415f9798f2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/80174ef293eac35504a8de9b7f3d59415f9798f2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/80174ef293eac35504a8de9b7f3d59415f9798f2/config
Defconfig      : http://autobuild.buildroot.net/results/80174ef293eac35504a8de9b7f3d59415f9798f2/defconfig

Build 0f5243989128203df72b0ebcdbb2e570088338cf
==============================================

Status         : NOK
Failure reason : tiff-4.0.3
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 02:31:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/0f5243989128203df72b0ebcdbb2e570088338cf/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0f5243989128203df72b0ebcdbb2e570088338cf/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0f5243989128203df72b0ebcdbb2e570088338cf/config
Defconfig      : http://autobuild.buildroot.net/results/0f5243989128203df72b0ebcdbb2e570088338cf/defconfig

Build 44d0de61c04d83738a868aeb2b7e58dceffd73f5
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 02:42:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/44d0de61c04d83738a868aeb2b7e58dceffd73f5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/44d0de61c04d83738a868aeb2b7e58dceffd73f5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/44d0de61c04d83738a868aeb2b7e58dceffd73f5/config
Defconfig      : http://autobuild.buildroot.net/results/44d0de61c04d83738a868aeb2b7e58dceffd73f5/defconfig

Build 24f1e31f3b9aa35267044f33f54cb3f7d1e9216c
==============================================

Status         : NOK
Failure reason : collectd-5.1.1
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 02:56:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/24f1e31f3b9aa35267044f33f54cb3f7d1e9216c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/24f1e31f3b9aa35267044f33f54cb3f7d1e9216c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/24f1e31f3b9aa35267044f33f54cb3f7d1e9216c/config
Defconfig      : http://autobuild.buildroot.net/results/24f1e31f3b9aa35267044f33f54cb3f7d1e9216c/defconfig

Build 1f1d40759ee09125ee23ed707151c978babc46c9
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 03:04:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/1f1d40759ee09125ee23ed707151c978babc46c9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1f1d40759ee09125ee23ed707151c978babc46c9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1f1d40759ee09125ee23ed707151c978babc46c9/config
Defconfig      : http://autobuild.buildroot.net/results/1f1d40759ee09125ee23ed707151c978babc46c9/defconfig

Build 18c53a0f65090bb3dbdc23f50b450ea6706ecdbb
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 04:00:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/18c53a0f65090bb3dbdc23f50b450ea6706ecdbb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/18c53a0f65090bb3dbdc23f50b450ea6706ecdbb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/18c53a0f65090bb3dbdc23f50b450ea6706ecdbb/config
Defconfig      : http://autobuild.buildroot.net/results/18c53a0f65090bb3dbdc23f50b450ea6706ecdbb/defconfig

Build 3f1971472fe35a516b0f26ced477d33cb18280c9
==============================================

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

Build 005ebd6a26fc1f6109226dc073cce613a08483c6
==============================================

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

Build 7afed1ac91c3566f617a2d8c64a2876c37df715a
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 05:53:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/7afed1ac91c3566f617a2d8c64a2876c37df715a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7afed1ac91c3566f617a2d8c64a2876c37df715a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7afed1ac91c3566f617a2d8c64a2876c37df715a/config
Defconfig      : http://autobuild.buildroot.net/results/7afed1ac91c3566f617a2d8c64a2876c37df715a/defconfig

Build 2ff764fe51b80e8034ea87ae0bb54af17db0d9dd
==============================================

Status         : NOK
Failure reason : boa-0.94.14rc21
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 05:54:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/2ff764fe51b80e8034ea87ae0bb54af17db0d9dd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2ff764fe51b80e8034ea87ae0bb54af17db0d9dd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2ff764fe51b80e8034ea87ae0bb54af17db0d9dd/config
Defconfig      : http://autobuild.buildroot.net/results/2ff764fe51b80e8034ea87ae0bb54af17db0d9dd/defconfig

Build 5fce5e1887991bce4d3fb5bc98cc766abe4952b8
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-08 06:04:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/5fce5e1887991bce4d3fb5bc98cc766abe4952b8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5fce5e1887991bce4d3fb5bc98cc766abe4952b8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5fce5e1887991bce4d3fb5bc98cc766abe4952b8/config
Defconfig      : http://autobuild.buildroot.net/results/5fce5e1887991bce4d3fb5bc98cc766abe4952b8/defconfig

Build 292fd2879849916ee8d0c3fd577c85499ee276ee
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 06:11:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/292fd2879849916ee8d0c3fd577c85499ee276ee/build-end.log
Complete log   : http://autobuild.buildroot.net/results/292fd2879849916ee8d0c3fd577c85499ee276ee/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/292fd2879849916ee8d0c3fd577c85499ee276ee/config
Defconfig      : http://autobuild.buildroot.net/results/292fd2879849916ee8d0c3fd577c85499ee276ee/defconfig

Build 8fc3a3720d9be2525784b0488653b4fdbb29e676
==============================================

Status         : NOK
Failure reason : ltrace-0.7.1
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 06:18:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/8fc3a3720d9be2525784b0488653b4fdbb29e676/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8fc3a3720d9be2525784b0488653b4fdbb29e676/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8fc3a3720d9be2525784b0488653b4fdbb29e676/config
Defconfig      : http://autobuild.buildroot.net/results/8fc3a3720d9be2525784b0488653b4fdbb29e676/defconfig

Build eb14c31fbbe45cc4f16ecac5a796a516c7588673
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 06:20:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/eb14c31fbbe45cc4f16ecac5a796a516c7588673/build-end.log
Complete log   : http://autobuild.buildroot.net/results/eb14c31fbbe45cc4f16ecac5a796a516c7588673/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/eb14c31fbbe45cc4f16ecac5a796a516c7588673/config
Defconfig      : http://autobuild.buildroot.net/results/eb14c31fbbe45cc4f16ecac5a796a516c7588673/defconfig

Build 9993bd7db012e6442cdf514776c6b2fb80dda31e
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 06:32:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/9993bd7db012e6442cdf514776c6b2fb80dda31e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9993bd7db012e6442cdf514776c6b2fb80dda31e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9993bd7db012e6442cdf514776c6b2fb80dda31e/config
Defconfig      : http://autobuild.buildroot.net/results/9993bd7db012e6442cdf514776c6b2fb80dda31e/defconfig

Build b9c1c0e06a05463f551aa24e07e300653e01e5f1
==============================================

Status         : NOK
Failure reason : gdb-7.4.1-target
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 06:34:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/b9c1c0e06a05463f551aa24e07e300653e01e5f1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b9c1c0e06a05463f551aa24e07e300653e01e5f1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b9c1c0e06a05463f551aa24e07e300653e01e5f1/config
Defconfig      : http://autobuild.buildroot.net/results/b9c1c0e06a05463f551aa24e07e300653e01e5f1/defconfig

Build 61cd89e55a95d50754d53a1ca41b3711ba72ac7e
==============================================

Status         : NOK
Failure reason : host-python-2.7.3
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 06:54:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/61cd89e55a95d50754d53a1ca41b3711ba72ac7e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/61cd89e55a95d50754d53a1ca41b3711ba72ac7e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/61cd89e55a95d50754d53a1ca41b3711ba72ac7e/config
Defconfig      : http://autobuild.buildroot.net/results/61cd89e55a95d50754d53a1ca41b3711ba72ac7e/defconfig

Build c802981210bd654643877f270a7dcb2d9c8c2d32
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-08 07:20:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/c802981210bd654643877f270a7dcb2d9c8c2d32/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c802981210bd654643877f270a7dcb2d9c8c2d32/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c802981210bd654643877f270a7dcb2d9c8c2d32/config
Defconfig      : http://autobuild.buildroot.net/results/c802981210bd654643877f270a7dcb2d9c8c2d32/defconfig

Build 525a08da2bf4a15fe247276c6d0162b980a3edf1
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 07:43:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/525a08da2bf4a15fe247276c6d0162b980a3edf1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/525a08da2bf4a15fe247276c6d0162b980a3edf1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/525a08da2bf4a15fe247276c6d0162b980a3edf1/config
Defconfig      : http://autobuild.buildroot.net/results/525a08da2bf4a15fe247276c6d0162b980a3edf1/defconfig

Build 431e1027db200af791ef2471c92b7ef8d8136cad
==============================================

Status         : NOK
Failure reason : luajit-2.0.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 07:50:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/431e1027db200af791ef2471c92b7ef8d8136cad/build-end.log
Complete log   : http://autobuild.buildroot.net/results/431e1027db200af791ef2471c92b7ef8d8136cad/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/431e1027db200af791ef2471c92b7ef8d8136cad/config
Defconfig      : http://autobuild.buildroot.net/results/431e1027db200af791ef2471c92b7ef8d8136cad/defconfig

Build 62330a46ee3da5f5c03a521319e3b798c0f5518c
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 07:56:17
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/62330a46ee3da5f5c03a521319e3b798c0f5518c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/62330a46ee3da5f5c03a521319e3b798c0f5518c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/62330a46ee3da5f5c03a521319e3b798c0f5518c/config
Defconfig      : http://autobuild.buildroot.net/results/62330a46ee3da5f5c03a521319e3b798c0f5518c/defconfig

Build 268611a3abea38e70d0b48bd887906d6100d6a44
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-08 08:28:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/268611a3abea38e70d0b48bd887906d6100d6a44/build-end.log
Complete log   : http://autobuild.buildroot.net/results/268611a3abea38e70d0b48bd887906d6100d6a44/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/268611a3abea38e70d0b48bd887906d6100d6a44/config
Defconfig      : http://autobuild.buildroot.net/results/268611a3abea38e70d0b48bd887906d6100d6a44/defconfig

Build f809ceaf07cbf4a2d736c2fb8e67c0a45fe7291f
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 09:40:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/f809ceaf07cbf4a2d736c2fb8e67c0a45fe7291f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f809ceaf07cbf4a2d736c2fb8e67c0a45fe7291f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f809ceaf07cbf4a2d736c2fb8e67c0a45fe7291f/config
Defconfig      : http://autobuild.buildroot.net/results/f809ceaf07cbf4a2d736c2fb8e67c0a45fe7291f/defconfig

Build 42c835c3f58ccbf19f3248f366f0fa517a760c03
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 09:46:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/42c835c3f58ccbf19f3248f366f0fa517a760c03/build-end.log
Complete log   : http://autobuild.buildroot.net/results/42c835c3f58ccbf19f3248f366f0fa517a760c03/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/42c835c3f58ccbf19f3248f366f0fa517a760c03/config
Defconfig      : http://autobuild.buildroot.net/results/42c835c3f58ccbf19f3248f366f0fa517a760c03/defconfig

Build fda5410eb7d3f3cd8542d2d395341fe87f18c2b9
==============================================

Status         : NOK
Failure reason : qt-4.8.3
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 09:51:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/fda5410eb7d3f3cd8542d2d395341fe87f18c2b9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fda5410eb7d3f3cd8542d2d395341fe87f18c2b9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fda5410eb7d3f3cd8542d2d395341fe87f18c2b9/config
Defconfig      : http://autobuild.buildroot.net/results/fda5410eb7d3f3cd8542d2d395341fe87f18c2b9/defconfig

Build 8accf1b3ab253815666f309fed8f4266beb14980
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-08 09:57:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/8accf1b3ab253815666f309fed8f4266beb14980/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8accf1b3ab253815666f309fed8f4266beb14980/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8accf1b3ab253815666f309fed8f4266beb14980/config
Defconfig      : http://autobuild.buildroot.net/results/8accf1b3ab253815666f309fed8f4266beb14980/defconfig

Build 54aa70f535bb5ac453a85c673c91c9203db1a842
==============================================

Status         : NOK
Failure reason : gpsd-3.7
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 10:26:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/54aa70f535bb5ac453a85c673c91c9203db1a842/build-end.log
Complete log   : http://autobuild.buildroot.net/results/54aa70f535bb5ac453a85c673c91c9203db1a842/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/54aa70f535bb5ac453a85c673c91c9203db1a842/config
Defconfig      : http://autobuild.buildroot.net/results/54aa70f535bb5ac453a85c673c91c9203db1a842/defconfig

Build de3d0ba98f2100385e82e4e421d0d39b5b9cade3
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 10:29:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/de3d0ba98f2100385e82e4e421d0d39b5b9cade3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/de3d0ba98f2100385e82e4e421d0d39b5b9cade3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/de3d0ba98f2100385e82e4e421d0d39b5b9cade3/config
Defconfig      : http://autobuild.buildroot.net/results/de3d0ba98f2100385e82e4e421d0d39b5b9cade3/defconfig

Build a8fc870f833679a483aa6e87463dbe3334e4b419
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-08 10:46:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/a8fc870f833679a483aa6e87463dbe3334e4b419/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a8fc870f833679a483aa6e87463dbe3334e4b419/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a8fc870f833679a483aa6e87463dbe3334e4b419/config
Defconfig      : http://autobuild.buildroot.net/results/a8fc870f833679a483aa6e87463dbe3334e4b419/defconfig

Build 0111a67b9ed5f5f5dfc0725d009ea5c756c1755c
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 11:28:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/0111a67b9ed5f5f5dfc0725d009ea5c756c1755c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0111a67b9ed5f5f5dfc0725d009ea5c756c1755c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0111a67b9ed5f5f5dfc0725d009ea5c756c1755c/config
Defconfig      : http://autobuild.buildroot.net/results/0111a67b9ed5f5f5dfc0725d009ea5c756c1755c/defconfig

Build 3f8e2e714d0a6de37ab2ec519c73ef7d2d507407
==============================================

Status         : NOK
Failure reason : sdl-1.2.15
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 11:35:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/3f8e2e714d0a6de37ab2ec519c73ef7d2d507407/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3f8e2e714d0a6de37ab2ec519c73ef7d2d507407/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3f8e2e714d0a6de37ab2ec519c73ef7d2d507407/config
Defconfig      : http://autobuild.buildroot.net/results/3f8e2e714d0a6de37ab2ec519c73ef7d2d507407/defconfig

Build 4b8a4cebde81f005e5e820a181396fd983435bcb
==============================================

Status         : NOK
Failure reason : pciutils-3.1.10
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 11:41:15
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/4b8a4cebde81f005e5e820a181396fd983435bcb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4b8a4cebde81f005e5e820a181396fd983435bcb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4b8a4cebde81f005e5e820a181396fd983435bcb/config
Defconfig      : http://autobuild.buildroot.net/results/4b8a4cebde81f005e5e820a181396fd983435bcb/defconfig

Build 6291019f2756c6996fa014d79a50af6bad371b3b
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-08 12:02:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/6291019f2756c6996fa014d79a50af6bad371b3b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6291019f2756c6996fa014d79a50af6bad371b3b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6291019f2756c6996fa014d79a50af6bad371b3b/config
Defconfig      : http://autobuild.buildroot.net/results/6291019f2756c6996fa014d79a50af6bad371b3b/defconfig

Build 5c8de04063284d223eb81198e7c98efac73f347b
==============================================

Status         : NOK
Failure reason : pv-1.2.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 12:07:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/5c8de04063284d223eb81198e7c98efac73f347b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5c8de04063284d223eb81198e7c98efac73f347b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5c8de04063284d223eb81198e7c98efac73f347b/config
Defconfig      : http://autobuild.buildroot.net/results/5c8de04063284d223eb81198e7c98efac73f347b/defconfig

Build 2c13796067b945acc6809956cc5eec99bb428e07
==============================================

Status         : NOK
Failure reason : libroxml-2.2.1
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 12:44:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/2c13796067b945acc6809956cc5eec99bb428e07/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2c13796067b945acc6809956cc5eec99bb428e07/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2c13796067b945acc6809956cc5eec99bb428e07/config
Defconfig      : http://autobuild.buildroot.net/results/2c13796067b945acc6809956cc5eec99bb428e07/defconfig

Build 57ce050339ad22d6691e0edf83a66ea1d9adf77c
==============================================

Status         : NOK
Failure reason : imagemagick-6.7.8-8
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 13:17:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/57ce050339ad22d6691e0edf83a66ea1d9adf77c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/57ce050339ad22d6691e0edf83a66ea1d9adf77c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/57ce050339ad22d6691e0edf83a66ea1d9adf77c/config
Defconfig      : http://autobuild.buildroot.net/results/57ce050339ad22d6691e0edf83a66ea1d9adf77c/defconfig

Build 0ba4d3c1fff62ffb8157a437f4366f396011b6a7
==============================================

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

Build e0a37968e61b9d301dca6bd19adefd54c832e9fd
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 13:39:50
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/e0a37968e61b9d301dca6bd19adefd54c832e9fd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e0a37968e61b9d301dca6bd19adefd54c832e9fd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e0a37968e61b9d301dca6bd19adefd54c832e9fd/config
Defconfig      : http://autobuild.buildroot.net/results/e0a37968e61b9d301dca6bd19adefd54c832e9fd/defconfig

Build afe84e25d24b8ff3ab4b1fa30658302729c170b0
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 13:49:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/afe84e25d24b8ff3ab4b1fa30658302729c170b0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/afe84e25d24b8ff3ab4b1fa30658302729c170b0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/afe84e25d24b8ff3ab4b1fa30658302729c170b0/config
Defconfig      : http://autobuild.buildroot.net/results/afe84e25d24b8ff3ab4b1fa30658302729c170b0/defconfig

Build ab591f15983167e241b370e1e8ef19e00701fa73
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 13:52:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/ab591f15983167e241b370e1e8ef19e00701fa73/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ab591f15983167e241b370e1e8ef19e00701fa73/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ab591f15983167e241b370e1e8ef19e00701fa73/config
Defconfig      : http://autobuild.buildroot.net/results/ab591f15983167e241b370e1e8ef19e00701fa73/defconfig

Build 2ba0eb693d24ac4ed9979762db234bfff1952c69
==============================================

Status         : NOK
Failure reason : ccache-3.1.8
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 13:57:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/2ba0eb693d24ac4ed9979762db234bfff1952c69/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2ba0eb693d24ac4ed9979762db234bfff1952c69/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2ba0eb693d24ac4ed9979762db234bfff1952c69/config
Defconfig      : http://autobuild.buildroot.net/results/2ba0eb693d24ac4ed9979762db234bfff1952c69/defconfig

Build b94f93f5ad490e188bcb398a60451363086b7bc3
==============================================

Status         : NOK
Failure reason : squid-3.2.3
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 14:08:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/b94f93f5ad490e188bcb398a60451363086b7bc3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b94f93f5ad490e188bcb398a60451363086b7bc3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b94f93f5ad490e188bcb398a60451363086b7bc3/config
Defconfig      : http://autobuild.buildroot.net/results/b94f93f5ad490e188bcb398a60451363086b7bc3/defconfig

Build 44327b543d8918929bf252c5284e8691fda87fd0
==============================================

Status         : NOK
Failure reason : sane-backends-1.0.22
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 14:29:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/44327b543d8918929bf252c5284e8691fda87fd0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/44327b543d8918929bf252c5284e8691fda87fd0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/44327b543d8918929bf252c5284e8691fda87fd0/config
Defconfig      : http://autobuild.buildroot.net/results/44327b543d8918929bf252c5284e8691fda87fd0/defconfig

Build de710f15d01c8b11783b3cf7bfeebcdf1243d0d9
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 14:50:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/de710f15d01c8b11783b3cf7bfeebcdf1243d0d9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/de710f15d01c8b11783b3cf7bfeebcdf1243d0d9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/de710f15d01c8b11783b3cf7bfeebcdf1243d0d9/config
Defconfig      : http://autobuild.buildroot.net/results/de710f15d01c8b11783b3cf7bfeebcdf1243d0d9/defconfig

Build 568ebb442d5f96e8ec0c81fa794ccdd2f6f550cb
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 15:07:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/568ebb442d5f96e8ec0c81fa794ccdd2f6f550cb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/568ebb442d5f96e8ec0c81fa794ccdd2f6f550cb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/568ebb442d5f96e8ec0c81fa794ccdd2f6f550cb/config
Defconfig      : http://autobuild.buildroot.net/results/568ebb442d5f96e8ec0c81fa794ccdd2f6f550cb/defconfig

Build df7846fe6f349d988d5d302e33950f135ae22862
==============================================

Status         : NOK
Failure reason : libcap-ng-0.6.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 15:29:17
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/df7846fe6f349d988d5d302e33950f135ae22862/build-end.log
Complete log   : http://autobuild.buildroot.net/results/df7846fe6f349d988d5d302e33950f135ae22862/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/df7846fe6f349d988d5d302e33950f135ae22862/config
Defconfig      : http://autobuild.buildroot.net/results/df7846fe6f349d988d5d302e33950f135ae22862/defconfig

Build af00c338632aa71b148716cdd6265cfe5506eda2
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 15:49:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/af00c338632aa71b148716cdd6265cfe5506eda2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/af00c338632aa71b148716cdd6265cfe5506eda2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/af00c338632aa71b148716cdd6265cfe5506eda2/config
Defconfig      : http://autobuild.buildroot.net/results/af00c338632aa71b148716cdd6265cfe5506eda2/defconfig

Build 695293d889128c666174d5fe03c5deadbe4d5415
==============================================

Status         : NOK
Failure reason : rt-tests-0.83
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 15:49:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/695293d889128c666174d5fe03c5deadbe4d5415/build-end.log
Complete log   : http://autobuild.buildroot.net/results/695293d889128c666174d5fe03c5deadbe4d5415/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/695293d889128c666174d5fe03c5deadbe4d5415/config
Defconfig      : http://autobuild.buildroot.net/results/695293d889128c666174d5fe03c5deadbe4d5415/defconfig

Build 8e5740ac08fafe21ff58729606ebcc4b2a520c5b
==============================================

Status         : NOK
Failure reason : sane-backends-1.0.22
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 16:09:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/8e5740ac08fafe21ff58729606ebcc4b2a520c5b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8e5740ac08fafe21ff58729606ebcc4b2a520c5b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8e5740ac08fafe21ff58729606ebcc4b2a520c5b/config
Defconfig      : http://autobuild.buildroot.net/results/8e5740ac08fafe21ff58729606ebcc4b2a520c5b/defconfig

Build 442f8d90d7371ad1b7496d7ac9414c140d59dd5f
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 16:11:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/442f8d90d7371ad1b7496d7ac9414c140d59dd5f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/442f8d90d7371ad1b7496d7ac9414c140d59dd5f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/442f8d90d7371ad1b7496d7ac9414c140d59dd5f/config
Defconfig      : http://autobuild.buildroot.net/results/442f8d90d7371ad1b7496d7ac9414c140d59dd5f/defconfig

Build 673b0e9a1ba75123ba2c59df8ad81550170fffef
==============================================

Status         : NOK
Failure reason : bmon-2.1.0
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 16:13:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/673b0e9a1ba75123ba2c59df8ad81550170fffef/build-end.log
Complete log   : http://autobuild.buildroot.net/results/673b0e9a1ba75123ba2c59df8ad81550170fffef/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/673b0e9a1ba75123ba2c59df8ad81550170fffef/config
Defconfig      : http://autobuild.buildroot.net/results/673b0e9a1ba75123ba2c59df8ad81550170fffef/defconfig

Build 4af821f423e0c786121a902b1a2d94b35fc78190
==============================================

Status         : NOK
Failure reason : host-python-2.7.3
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 16:27:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/4af821f423e0c786121a902b1a2d94b35fc78190/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4af821f423e0c786121a902b1a2d94b35fc78190/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4af821f423e0c786121a902b1a2d94b35fc78190/config
Defconfig      : http://autobuild.buildroot.net/results/4af821f423e0c786121a902b1a2d94b35fc78190/defconfig

Build 3519ce3e4b1c0e6f0746d858b8225458aaaade71
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-08 17:14:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/3519ce3e4b1c0e6f0746d858b8225458aaaade71/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3519ce3e4b1c0e6f0746d858b8225458aaaade71/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3519ce3e4b1c0e6f0746d858b8225458aaaade71/config
Defconfig      : http://autobuild.buildroot.net/results/3519ce3e4b1c0e6f0746d858b8225458aaaade71/defconfig

Build 5f741e1cbb316c221ef9e89283fb4bc859ff361a
==============================================

Status         : NOK
Failure reason : libroxml-2.2.1
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 18:15:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/5f741e1cbb316c221ef9e89283fb4bc859ff361a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5f741e1cbb316c221ef9e89283fb4bc859ff361a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5f741e1cbb316c221ef9e89283fb4bc859ff361a/config
Defconfig      : http://autobuild.buildroot.net/results/5f741e1cbb316c221ef9e89283fb4bc859ff361a/defconfig

Build 29228a1d245b6bd6bbbd19438f202a51b2f6761e
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 18:38:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/29228a1d245b6bd6bbbd19438f202a51b2f6761e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/29228a1d245b6bd6bbbd19438f202a51b2f6761e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/29228a1d245b6bd6bbbd19438f202a51b2f6761e/config
Defconfig      : http://autobuild.buildroot.net/results/29228a1d245b6bd6bbbd19438f202a51b2f6761e/defconfig

Build 0c3aa26c06bf9fdd2bfeba84c398e9fe7c3cb350
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 19:08:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/0c3aa26c06bf9fdd2bfeba84c398e9fe7c3cb350/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0c3aa26c06bf9fdd2bfeba84c398e9fe7c3cb350/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0c3aa26c06bf9fdd2bfeba84c398e9fe7c3cb350/config
Defconfig      : http://autobuild.buildroot.net/results/0c3aa26c06bf9fdd2bfeba84c398e9fe7c3cb350/defconfig

Build 9384b364c6edbe00039d8e56c94db882bc7b2129
==============================================

Status         : NOK
Failure reason : bzip2-1.0.6
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 19:08:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/9384b364c6edbe00039d8e56c94db882bc7b2129/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9384b364c6edbe00039d8e56c94db882bc7b2129/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9384b364c6edbe00039d8e56c94db882bc7b2129/config
Defconfig      : http://autobuild.buildroot.net/results/9384b364c6edbe00039d8e56c94db882bc7b2129/defconfig

Build 54b28fd63ee98b390f5c04b346cf76fb6a9011d9
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 19:44:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/54b28fd63ee98b390f5c04b346cf76fb6a9011d9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/54b28fd63ee98b390f5c04b346cf76fb6a9011d9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/54b28fd63ee98b390f5c04b346cf76fb6a9011d9/config
Defconfig      : http://autobuild.buildroot.net/results/54b28fd63ee98b390f5c04b346cf76fb6a9011d9/defconfig

Build dd00906f77112fe5087998a7ce49f473d6ac6584
==============================================

Status         : NOK
Failure reason : linux-pam-1.1.4
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 19:47:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/dd00906f77112fe5087998a7ce49f473d6ac6584/build-end.log
Complete log   : http://autobuild.buildroot.net/results/dd00906f77112fe5087998a7ce49f473d6ac6584/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/dd00906f77112fe5087998a7ce49f473d6ac6584/config
Defconfig      : http://autobuild.buildroot.net/results/dd00906f77112fe5087998a7ce49f473d6ac6584/defconfig

Build 3152204a40ceba624b58fa9aafbfd823b2419f79
==============================================

Status         : NOK
Failure reason : ffmpeg-0.8.12
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 19:56:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/3152204a40ceba624b58fa9aafbfd823b2419f79/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3152204a40ceba624b58fa9aafbfd823b2419f79/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3152204a40ceba624b58fa9aafbfd823b2419f79/config
Defconfig      : http://autobuild.buildroot.net/results/3152204a40ceba624b58fa9aafbfd823b2419f79/defconfig

Build d65cd8adadbba8b6cc1be8b121f5f2778b3663c6
==============================================

Status         : NOK
Failure reason : sane-backends-1.0.22
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 20:03:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/d65cd8adadbba8b6cc1be8b121f5f2778b3663c6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d65cd8adadbba8b6cc1be8b121f5f2778b3663c6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d65cd8adadbba8b6cc1be8b121f5f2778b3663c6/config
Defconfig      : http://autobuild.buildroot.net/results/d65cd8adadbba8b6cc1be8b121f5f2778b3663c6/defconfig

Build 1dabf1bccc8d1c99b531e8a0c74ebccc55aa4a4d
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 20:19:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/1dabf1bccc8d1c99b531e8a0c74ebccc55aa4a4d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1dabf1bccc8d1c99b531e8a0c74ebccc55aa4a4d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1dabf1bccc8d1c99b531e8a0c74ebccc55aa4a4d/config
Defconfig      : http://autobuild.buildroot.net/results/1dabf1bccc8d1c99b531e8a0c74ebccc55aa4a4d/defconfig

Build fa059a89a305914700f63d7f0b0d4a3f63beb039
==============================================

Status         : NOK
Failure reason : xapp_xmh-1.0.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 20:28:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/fa059a89a305914700f63d7f0b0d4a3f63beb039/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fa059a89a305914700f63d7f0b0d4a3f63beb039/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fa059a89a305914700f63d7f0b0d4a3f63beb039/config
Defconfig      : http://autobuild.buildroot.net/results/fa059a89a305914700f63d7f0b0d4a3f63beb039/defconfig

Build 3eb3265f461e7a77a21bfd824dbc9b1945ea0bbb
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-08 20:45:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/3eb3265f461e7a77a21bfd824dbc9b1945ea0bbb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3eb3265f461e7a77a21bfd824dbc9b1945ea0bbb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3eb3265f461e7a77a21bfd824dbc9b1945ea0bbb/config
Defconfig      : http://autobuild.buildroot.net/results/3eb3265f461e7a77a21bfd824dbc9b1945ea0bbb/defconfig

Build 2dc4ac4917637110c860ff0d1933c4e4063b1404
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 21:14:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/2dc4ac4917637110c860ff0d1933c4e4063b1404/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2dc4ac4917637110c860ff0d1933c4e4063b1404/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2dc4ac4917637110c860ff0d1933c4e4063b1404/config
Defconfig      : http://autobuild.buildroot.net/results/2dc4ac4917637110c860ff0d1933c4e4063b1404/defconfig

Build fca0c8b1f11724623a88325956b6376ac173e2b0
==============================================

Status         : NOK
Failure reason : libroxml-2.2.1
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 21:23:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/fca0c8b1f11724623a88325956b6376ac173e2b0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fca0c8b1f11724623a88325956b6376ac173e2b0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fca0c8b1f11724623a88325956b6376ac173e2b0/config
Defconfig      : http://autobuild.buildroot.net/results/fca0c8b1f11724623a88325956b6376ac173e2b0/defconfig

Build 798717e03370a43a5761e3168624604f5d180d75
==============================================

Status         : NOK
Failure reason : valgrind-3.7.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 21:30:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/798717e03370a43a5761e3168624604f5d180d75/build-end.log
Complete log   : http://autobuild.buildroot.net/results/798717e03370a43a5761e3168624604f5d180d75/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/798717e03370a43a5761e3168624604f5d180d75/config
Defconfig      : http://autobuild.buildroot.net/results/798717e03370a43a5761e3168624604f5d180d75/defconfig

Build 51c23c4bff66e24bb0c842be2f21d44e3c3ab015
==============================================

Status         : NOK
Failure reason : boost-1.49.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 22:07:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/51c23c4bff66e24bb0c842be2f21d44e3c3ab015/build-end.log
Complete log   : http://autobuild.buildroot.net/results/51c23c4bff66e24bb0c842be2f21d44e3c3ab015/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/51c23c4bff66e24bb0c842be2f21d44e3c3ab015/config
Defconfig      : http://autobuild.buildroot.net/results/51c23c4bff66e24bb0c842be2f21d44e3c3ab015/defconfig

Build ef778a6cf24d56a848e10e1600665170c1f631b5
==============================================

Status         : NOK
Failure reason : cairo-1.10.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 22:09:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/ef778a6cf24d56a848e10e1600665170c1f631b5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ef778a6cf24d56a848e10e1600665170c1f631b5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ef778a6cf24d56a848e10e1600665170c1f631b5/config
Defconfig      : http://autobuild.buildroot.net/results/ef778a6cf24d56a848e10e1600665170c1f631b5/defconfig

Build 70db5353728c90f1f74f3e21b11ce97bd151ce5b
==============================================

Status         : NOK
Failure reason : sdl-1.2.15
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 22:31:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/70db5353728c90f1f74f3e21b11ce97bd151ce5b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/70db5353728c90f1f74f3e21b11ce97bd151ce5b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/70db5353728c90f1f74f3e21b11ce97bd151ce5b/config
Defconfig      : http://autobuild.buildroot.net/results/70db5353728c90f1f74f3e21b11ce97bd151ce5b/defconfig

Build fbbeece5ad12548e2ba2325ef24517c1714c8334
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-08 22:56:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/fbbeece5ad12548e2ba2325ef24517c1714c8334/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fbbeece5ad12548e2ba2325ef24517c1714c8334/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fbbeece5ad12548e2ba2325ef24517c1714c8334/config
Defconfig      : http://autobuild.buildroot.net/results/fbbeece5ad12548e2ba2325ef24517c1714c8334/defconfig

Build d5eed5930636d62d002e00244a84ee09cc8062ae
==============================================

Status         : NOK
Failure reason : libroxml-2.2.1
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-08 23:47:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/d5eed5930636d62d002e00244a84ee09cc8062ae/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d5eed5930636d62d002e00244a84ee09cc8062ae/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d5eed5930636d62d002e00244a84ee09cc8062ae/config
Defconfig      : http://autobuild.buildroot.net/results/d5eed5930636d62d002e00244a84ee09cc8062ae/defconfig

Build 1187475a11870688451b4775b6f77e40b613ca7d
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-08 23:51:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/1187475a11870688451b4775b6f77e40b613ca7d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1187475a11870688451b4775b6f77e40b613ca7d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1187475a11870688451b4775b6f77e40b613ca7d/config
Defconfig      : http://autobuild.buildroot.net/results/1187475a11870688451b4775b6f77e40b613ca7d/defconfig

Build b56543e324d91536a03a1dde9683b7fc62df89ef
==============================================

Status         : NOK
Failure reason : neard-0.8
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-08 23:53:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=054f97e1f2de337ea0c788d766212a36d6d4e41c
End of log     : http://autobuild.buildroot.net/results/b56543e324d91536a03a1dde9683b7fc62df89ef/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b56543e324d91536a03a1dde9683b7fc62df89ef/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b56543e324d91536a03a1dde9683b7fc62df89ef/config
Defconfig      : http://autobuild.buildroot.net/results/b56543e324d91536a03a1dde9683b7fc62df89ef/defconfig



-- 
http://autobuild.buildroot.net

^ 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