Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] List the useful hook points available in buildroot
From: Samuel Martin @ 2012-11-25 17:25 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353861817-4570-1-git-send-email-zinosat@tiscali.it>

2012/11/25 Davide Viti <zinosat@tiscali.it>:
> The complete list can be obtained with the following command:
>   grep "_HOOKS[ ]\+?=" package/pkg-generic.mk
>
> Signed-off-by: Davide Viti <zinosat@tiscali.it>
Acked-by: Samuel Martin <s.martin49@gmail.com>

-- 
Sam

^ permalink raw reply

* [Buildroot] Passing arguments to the linker when external toolchain is used.
From: Ronny Meeus @ 2012-11-25 17:23 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50B15945.90300@mind.be>

On Sun, Nov 25, 2012 at 12:33 AM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On 23/11/12 14:04, Ronny Meeus wrote:
>>
>> Hello
>>
>> I'm using buildroot to build an environment for MIPS (Cavium).
>> For this I use a 64 bit toolchain provided by Cavium as an external
>> toolchain.
>>
>> My buildroot configuration is as follows:
>> * Buildroot 2012.05
>> * Target Architecture: MIPS (big endian)
>> * Target Architecture Variant: mips 64
>> * Target ABI: n32
>> * glibc
>>
>> In my application we need to create partially linked objects that will
>> be linked together in a final link step.
>> I see that the correct options (ABI etc) are passed to the compiler
>> via the ext-toolchain-wrapper construction, but for the linker this
>> technique is not used. It is directly invoked without modifying the
>> command line. If I want to create this partially linked file, I need
>> to pass an extra option the linker to indicate that is needs to use
>> the N32 abi (-melf32btsmipn32).
>
>
>  First of all, I don't understand why ld needs any option that we normally
> pass to the compiler.  Do the -march, -mtune and -mfpu options even work
> in ld?

I think you miss-understood my mail.
The linker needs a different option (-melf32btsmipn32) while the
compiler needs -march, -mtune and -mfpu etc.
For the compiler there is no issue, it is the linker for which no
options are passed.

If you look to the changes I made to the wrapper, you can see that a
completely different set of options can be passed to the linker. The
compiler options are passed to the compiler while a different set of
options is passed to the linker.

>  That said, if you do need the CFLAGS, then perhaps you should use
> '$(CC) -nostdlib' rather than $(LD) (and of course pass ld-specific
> options using -Wl,...).
>
>>
>> To make this work, I needed to make 2 changes:
>> - make the linker a link to the ext-toolchain-wrapper
>> - change the ext-toolchain-wrapper so that it passes to options to the
>> linker (currently the option is hardcoded but this needs to be changed
>> so that the BR2_TARGET_LDFLAGS are used.
>
>
>  Since not all gcc flags are supported by ld, I think it should be a
> separate toolchain wrapper, specific for ld.  It can be generated from
> the same source code, though (using ifdefs).
>

That is also an option. In my code I look to the name of the program
that is executed, so at runtime the wrapper determines which set of
options need to be used.

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

^ permalink raw reply

* [Buildroot] [PATCH] List the useful hook points available in buildroot
From: Davide Viti @ 2012-11-25 16:43 UTC (permalink / raw)
  To: buildroot

The complete list can be obtained with the following command:
  grep "_HOOKS[ ]\+?=" package/pkg-generic.mk

Signed-off-by: Davide Viti <zinosat@tiscali.it>
---
 docs/manual/adding-packages-generic.txt |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt
index b05043a..3057074 100644
--- a/docs/manual/adding-packages-generic.txt
+++ b/docs/manual/adding-packages-generic.txt
@@ -357,6 +357,9 @@ userful for generic packages.
 
 The following hook points are available:
 
+* +LIBFOO_POST_DOWNLOAD_HOOKS+
+* +LIBFOO_POST_EXTRACT_HOOKS+
+* +LIBFOO_PRE_PATCH_HOOKS+
 * +LIBFOO_POST_PATCH_HOOKS+
 * +LIBFOO_PRE_CONFIGURE_HOOKS+
 * +LIBFOO_POST_CONFIGURE_HOOKS+
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH] lcdproc: fix autobuild errors
From: spdawson at gmail.com @ 2012-11-25 15:52 UTC (permalink / raw)
  To: buildroot

From: Simon Dawson <spdawson@gmail.com>

The autobuilders are falling over building lcdproc, with failures like the
following.

  http://autobuild.buildroot.net/results/622b7da10be751c725ba25eb40102269790b4b03/build-end.log

As Thomas Petazzoni has pointed out, the compile command lines incorrectly
contain host header and library search paths, such as the following.

  -I/home/peko/scratch/host/usr/include/freetype2
  -L/home/peko/scratch/host/usr/lib -lfreetype

This patch changes the lcdproc package to pass the freetype installation
prefixes on the configure command line.

Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
 package/lcdproc/lcdproc.mk |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/package/lcdproc/lcdproc.mk b/package/lcdproc/lcdproc.mk
index 2a80289..fe88f46 100644
--- a/package/lcdproc/lcdproc.mk
+++ b/package/lcdproc/lcdproc.mk
@@ -10,7 +10,9 @@ LCDPROC_LICENSE = GPLv2+
 LCDPROC_LICENSE_FILES = COPYING
 LCDPROC_MAKE = $(MAKE1)
 
-LCDPROC_CONF_OPT = --enable-drivers=$(BR2_PACKAGE_LCDPROC_DRIVERS)
+LCDPROC_CONF_OPT = --enable-drivers=$(BR2_PACKAGE_LCDPROC_DRIVERS) \
+	--with-ft-prefix="$(STAGING_DIR)/usr" \
+	--with-ft-exec-prefix="$(STAGING_DIR)/usr"
 
 ifeq ($(BR2_PACKAGE_LCDPROC_MENUS),y)
 LCDPROC_CONF_OPT += --enable-lcdproc-menus
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCH] List the useful hook points available in buildroot
From: Davide Viti @ 2012-11-25 13:52 UTC (permalink / raw)
  To: buildroot

The complete list can be obtained with the following command:
  grep "_HOOKS[ ]\+?=" package/pkg-generic.mk
---
 docs/manual/adding-packages-generic.txt |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt
index b05043a..3057074 100644
--- a/docs/manual/adding-packages-generic.txt
+++ b/docs/manual/adding-packages-generic.txt
@@ -357,6 +357,9 @@ userful for generic packages.
 
 The following hook points are available:
 
+* +LIBFOO_POST_DOWNLOAD_HOOKS+
+* +LIBFOO_POST_EXTRACT_HOOKS+
+* +LIBFOO_PRE_PATCH_HOOKS+
 * +LIBFOO_POST_PATCH_HOOKS+
 * +LIBFOO_PRE_CONFIGURE_HOOKS+
 * +LIBFOO_POST_CONFIGURE_HOOKS+
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH] List all the available hook points
From: Davide Viti @ 2012-11-25 12:57 UTC (permalink / raw)
  To: buildroot

The list was obtained with the following command:
  grep "_HOOKS[ ]\+?=" package/pkg-generic.mk
---
 docs/manual/adding-packages-generic.txt |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt
index b05043a..3057074 100644
--- a/docs/manual/adding-packages-generic.txt
+++ b/docs/manual/adding-packages-generic.txt
@@ -357,6 +357,9 @@ userful for generic packages.
 
 The following hook points are available:
 
+* +LIBFOO_POST_DOWNLOAD_HOOKS+
+* +LIBFOO_POST_EXTRACT_HOOKS+
+* +LIBFOO_PRE_PATCH_HOOKS+
 * +LIBFOO_POST_PATCH_HOOKS+
 * +LIBFOO_PRE_CONFIGURE_HOOKS+
 * +LIBFOO_POST_CONFIGURE_HOOKS+
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH] List all the available hook points
From: Samuel Martin @ 2012-11-25 12:17 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAHXCMMK2UfLJ5LEuky7tkh8fGPa+4cpCTx54UdSod=nbvhwxWw@mail.gmail.com>

Hi Davide, Yann, all,

2012/11/18 Samuel Martin <s.martin49@gmail.com>:
> Hi Davide, all,
>
> 2012/11/18 Davide Viti <zinosat@tiscali.it>:
>> The list was obtained with the following command:
>>   grep "_HOOKS[ ]\+?=" package/pkg-generic.mk
>> ---
>>  docs/manual/adding-packages-generic.txt |    4 ++++
>>  1 files changed, 4 insertions(+), 0 deletions(-)
>>
>> diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt
>> index b05043a..a2f37ec 100644
>> --- a/docs/manual/adding-packages-generic.txt
>> +++ b/docs/manual/adding-packages-generic.txt
>> @@ -357,6 +357,9 @@ userful for generic packages.
>>
>>  The following hook points are available:
>>
>> +* +LIBFOO_POST_DOWNLOAD_HOOKS+
>> +* +LIBFOO_POST_EXTRACT_HOOKS+
>> +* +LIBFOO_PRE_PATCH_HOOKS+
>>  * +LIBFOO_POST_PATCH_HOOKS+
>>  * +LIBFOO_PRE_CONFIGURE_HOOKS+
>>  * +LIBFOO_POST_CONFIGURE_HOOKS+
>> @@ -364,6 +367,7 @@ The following hook points are available:
>>  * +LIBFOO_POST_INSTALL_HOOKS+ (for host packages only)
>>  * +LIBFOO_POST_INSTALL_STAGING_HOOKS+ (for target packages only)
>>  * +LIBFOO_POST_INSTALL_TARGET_HOOKS+ (for target packages only)
>> +* +LIBFOO_POST_INSTALL_IMAGES_HOOKS+
>
> I'm a bit worried about this POST_INSTALL_IMAGES_HOOKS could be
> mis-understood or mis-used...
> Maybe it'd be worth to add few words saying that it's mainly for
> bootloader purpose.

Since the POST_INSTALL_IMAGES_HOOKS seems to be controversial, at
least its presence in the documentation, I think it is not worth to
document it.

My point is the documentation should contain as much information as
possible to safely hack Buildroot; so, avoid documenting things that
may be mis-understood or mis-used.

So Davide, could you repost the patch without the POST_INSTALL_IMAGES_HOOKS?


BTW, this hook is used in cases as special as rare (only used once in
the current Buildroot code base...).
Also, after some talk on the IRC chan, Thomas P. may have a way to not
use it where it is currently used.


Regards,

-- 
Samuel

^ permalink raw reply

* [Buildroot] [autobuild.buildroot.net] Build results for 2012-11-24
From: Thomas Petazzoni @ 2012-11-25  7:33 UTC (permalink / raw)
  To: buildroot


Hello,

On 2012-11-24, 137 random build tests have been done and
submitted on autobuild.buildroot.net.
 86 builds have been successful
 51 builds have failed

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

Build 24c5208bf643ccdc0443859e9d2075c90305a6b5
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 00:01:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/24c5208bf643ccdc0443859e9d2075c90305a6b5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/24c5208bf643ccdc0443859e9d2075c90305a6b5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/24c5208bf643ccdc0443859e9d2075c90305a6b5/config
Defconfig      : http://autobuild.buildroot.net/results/24c5208bf643ccdc0443859e9d2075c90305a6b5/defconfig

Build 0bd04bb7359d66d0fc5ad775d039fb94a27588f3
==============================================

Status         : NOK
Failure reason : berkeleydb-5.3.21
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 00:08:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/0bd04bb7359d66d0fc5ad775d039fb94a27588f3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0bd04bb7359d66d0fc5ad775d039fb94a27588f3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0bd04bb7359d66d0fc5ad775d039fb94a27588f3/config
Defconfig      : http://autobuild.buildroot.net/results/0bd04bb7359d66d0fc5ad775d039fb94a27588f3/defconfig

Build 6c075ed7cbdff3e9bf24fac9b8d2e0f522c92f6c
==============================================

Status         : NOK
Failure reason : luajit-2.0.0-beta11
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 01:04:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/6c075ed7cbdff3e9bf24fac9b8d2e0f522c92f6c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6c075ed7cbdff3e9bf24fac9b8d2e0f522c92f6c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6c075ed7cbdff3e9bf24fac9b8d2e0f522c92f6c/config
Defconfig      : http://autobuild.buildroot.net/results/6c075ed7cbdff3e9bf24fac9b8d2e0f522c92f6c/defconfig

Build f276cf72e6e1c3e5d75a8ee06e313a543bb70c2b
==============================================

Status         : NOK
Failure reason : mtd-1.5.0
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 01:11:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/f276cf72e6e1c3e5d75a8ee06e313a543bb70c2b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f276cf72e6e1c3e5d75a8ee06e313a543bb70c2b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f276cf72e6e1c3e5d75a8ee06e313a543bb70c2b/config
Defconfig      : http://autobuild.buildroot.net/results/f276cf72e6e1c3e5d75a8ee06e313a543bb70c2b/defconfig

Build 27c52222d5b8291519cb626f09f21e48a41e593d
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 01:11:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/27c52222d5b8291519cb626f09f21e48a41e593d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/27c52222d5b8291519cb626f09f21e48a41e593d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/27c52222d5b8291519cb626f09f21e48a41e593d/config
Defconfig      : http://autobuild.buildroot.net/results/27c52222d5b8291519cb626f09f21e48a41e593d/defconfig

Build 465f985b70a6fe6eae75920fbc9de03dffa9aa09
==============================================

Status         : NOK
Failure reason : netatalk-3.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 01:44:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/465f985b70a6fe6eae75920fbc9de03dffa9aa09/build-end.log
Complete log   : http://autobuild.buildroot.net/results/465f985b70a6fe6eae75920fbc9de03dffa9aa09/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/465f985b70a6fe6eae75920fbc9de03dffa9aa09/config
Defconfig      : http://autobuild.buildroot.net/results/465f985b70a6fe6eae75920fbc9de03dffa9aa09/defconfig

Build ba532c48741d06a17cc6aa100ab7a67873b15068
==============================================

Status         : NOK
Failure reason : gdb-7.4.1-target
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 01:51:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/ba532c48741d06a17cc6aa100ab7a67873b15068/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ba532c48741d06a17cc6aa100ab7a67873b15068/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ba532c48741d06a17cc6aa100ab7a67873b15068/config
Defconfig      : http://autobuild.buildroot.net/results/ba532c48741d06a17cc6aa100ab7a67873b15068/defconfig

Build 0b621e49f6de057105ba270a996a5888c36fe2a4
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 01:52:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/0b621e49f6de057105ba270a996a5888c36fe2a4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0b621e49f6de057105ba270a996a5888c36fe2a4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0b621e49f6de057105ba270a996a5888c36fe2a4/config
Defconfig      : http://autobuild.buildroot.net/results/0b621e49f6de057105ba270a996a5888c36fe2a4/defconfig

Build 692062a217ab4598d1070d9af23e8c11ac5340c7
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 01:59:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/692062a217ab4598d1070d9af23e8c11ac5340c7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/692062a217ab4598d1070d9af23e8c11ac5340c7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/692062a217ab4598d1070d9af23e8c11ac5340c7/config
Defconfig      : http://autobuild.buildroot.net/results/692062a217ab4598d1070d9af23e8c11ac5340c7/defconfig

Build 324c74653b5292433f6c567579bc7263b32cd554
==============================================

Status         : NOK
Failure reason : boost-1.49.0
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 02:02:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/324c74653b5292433f6c567579bc7263b32cd554/build-end.log
Complete log   : http://autobuild.buildroot.net/results/324c74653b5292433f6c567579bc7263b32cd554/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/324c74653b5292433f6c567579bc7263b32cd554/config
Defconfig      : http://autobuild.buildroot.net/results/324c74653b5292433f6c567579bc7263b32cd554/defconfig

Build d2948c32f9fa0654b5f4b8cc86dc5380db135fcd
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 02:36:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/d2948c32f9fa0654b5f4b8cc86dc5380db135fcd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d2948c32f9fa0654b5f4b8cc86dc5380db135fcd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d2948c32f9fa0654b5f4b8cc86dc5380db135fcd/config
Defconfig      : http://autobuild.buildroot.net/results/d2948c32f9fa0654b5f4b8cc86dc5380db135fcd/defconfig

Build 1c0af4986e9c09e2a0d4eed630a2e6444a313583
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 02:55:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/1c0af4986e9c09e2a0d4eed630a2e6444a313583/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1c0af4986e9c09e2a0d4eed630a2e6444a313583/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1c0af4986e9c09e2a0d4eed630a2e6444a313583/config
Defconfig      : http://autobuild.buildroot.net/results/1c0af4986e9c09e2a0d4eed630a2e6444a313583/defconfig

Build 4031f8eea6fe6f2667b2cca499ced82309a2859b
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 03:22:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/4031f8eea6fe6f2667b2cca499ced82309a2859b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4031f8eea6fe6f2667b2cca499ced82309a2859b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4031f8eea6fe6f2667b2cca499ced82309a2859b/config
Defconfig      : http://autobuild.buildroot.net/results/4031f8eea6fe6f2667b2cca499ced82309a2859b/defconfig

Build 0adad66abd9030ba4dbb641e2e7291605eeb3d17
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 03:32:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/0adad66abd9030ba4dbb641e2e7291605eeb3d17/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0adad66abd9030ba4dbb641e2e7291605eeb3d17/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0adad66abd9030ba4dbb641e2e7291605eeb3d17/config
Defconfig      : http://autobuild.buildroot.net/results/0adad66abd9030ba4dbb641e2e7291605eeb3d17/defconfig

Build 929435917cb053519f068461b1b4615c4666e246
==============================================

Status         : NOK
Failure reason : berkeleydb-5.3.21
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 04:01:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/929435917cb053519f068461b1b4615c4666e246/build-end.log
Complete log   : http://autobuild.buildroot.net/results/929435917cb053519f068461b1b4615c4666e246/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/929435917cb053519f068461b1b4615c4666e246/config
Defconfig      : http://autobuild.buildroot.net/results/929435917cb053519f068461b1b4615c4666e246/defconfig

Build a780c12209cc13960313f1dff4889b2e097fbd62
==============================================

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

Build 398275959e675dc41c4f844799e8a12ede62dbbc
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 04:17:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/398275959e675dc41c4f844799e8a12ede62dbbc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/398275959e675dc41c4f844799e8a12ede62dbbc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/398275959e675dc41c4f844799e8a12ede62dbbc/config
Defconfig      : http://autobuild.buildroot.net/results/398275959e675dc41c4f844799e8a12ede62dbbc/defconfig

Build 0dfcf71aebc3f545f67e1c7f6d617a6429d2852e
==============================================

Status         : NOK
Failure reason : pv-1.2.0
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 04:57:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/0dfcf71aebc3f545f67e1c7f6d617a6429d2852e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0dfcf71aebc3f545f67e1c7f6d617a6429d2852e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0dfcf71aebc3f545f67e1c7f6d617a6429d2852e/config
Defconfig      : http://autobuild.buildroot.net/results/0dfcf71aebc3f545f67e1c7f6d617a6429d2852e/defconfig

Build c72561f1ea09fa565f345140e2fd6889f1003480
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 04:59:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/c72561f1ea09fa565f345140e2fd6889f1003480/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c72561f1ea09fa565f345140e2fd6889f1003480/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c72561f1ea09fa565f345140e2fd6889f1003480/config
Defconfig      : http://autobuild.buildroot.net/results/c72561f1ea09fa565f345140e2fd6889f1003480/defconfig

Build 4b44df6f56f3489453d5072c3d4238d9fb0b24ac
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 05:07:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/4b44df6f56f3489453d5072c3d4238d9fb0b24ac/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4b44df6f56f3489453d5072c3d4238d9fb0b24ac/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4b44df6f56f3489453d5072c3d4238d9fb0b24ac/config
Defconfig      : http://autobuild.buildroot.net/results/4b44df6f56f3489453d5072c3d4238d9fb0b24ac/defconfig

Build c7c6d300f02684f72d909a6284a63976761b3df6
==============================================

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

Build ac6e6b531b4c192f0aa35c066002078cf2618076
==============================================

Status         : NOK
Failure reason : xenomai-2.6.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 05:44:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/ac6e6b531b4c192f0aa35c066002078cf2618076/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ac6e6b531b4c192f0aa35c066002078cf2618076/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ac6e6b531b4c192f0aa35c066002078cf2618076/config
Defconfig      : http://autobuild.buildroot.net/results/ac6e6b531b4c192f0aa35c066002078cf2618076/defconfig

Build 29004d642a7b8cf3ee617bcdecc6cddb53647449
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 06:26:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/29004d642a7b8cf3ee617bcdecc6cddb53647449/build-end.log
Complete log   : http://autobuild.buildroot.net/results/29004d642a7b8cf3ee617bcdecc6cddb53647449/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/29004d642a7b8cf3ee617bcdecc6cddb53647449/config
Defconfig      : http://autobuild.buildroot.net/results/29004d642a7b8cf3ee617bcdecc6cddb53647449/defconfig

Build ce25d8cdbf3ae0fc0fc1f5c20f8d9fa4375dcd85
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 06:32:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/ce25d8cdbf3ae0fc0fc1f5c20f8d9fa4375dcd85/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ce25d8cdbf3ae0fc0fc1f5c20f8d9fa4375dcd85/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ce25d8cdbf3ae0fc0fc1f5c20f8d9fa4375dcd85/config
Defconfig      : http://autobuild.buildroot.net/results/ce25d8cdbf3ae0fc0fc1f5c20f8d9fa4375dcd85/defconfig

Build bb38915b02d532ad6136b5716c3006c610bc4523
==============================================

Status         : NOK
Failure reason : luajit-2.0.0-beta11
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 06:41:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/bb38915b02d532ad6136b5716c3006c610bc4523/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bb38915b02d532ad6136b5716c3006c610bc4523/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bb38915b02d532ad6136b5716c3006c610bc4523/config
Defconfig      : http://autobuild.buildroot.net/results/bb38915b02d532ad6136b5716c3006c610bc4523/defconfig

Build 099781318bea0b787b403b212a985690e118152f
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 06:43:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/099781318bea0b787b403b212a985690e118152f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/099781318bea0b787b403b212a985690e118152f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/099781318bea0b787b403b212a985690e118152f/config
Defconfig      : http://autobuild.buildroot.net/results/099781318bea0b787b403b212a985690e118152f/defconfig

Build 6feaf68ae3385dd319d2238e44beb8c5901e26b6
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 06:49:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/6feaf68ae3385dd319d2238e44beb8c5901e26b6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6feaf68ae3385dd319d2238e44beb8c5901e26b6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6feaf68ae3385dd319d2238e44beb8c5901e26b6/config
Defconfig      : http://autobuild.buildroot.net/results/6feaf68ae3385dd319d2238e44beb8c5901e26b6/defconfig

Build fac20effe6bc99b6769816087c48614368eaecbc
==============================================

Status         : NOK
Failure reason : gettext-0.16.1
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 06:51:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/fac20effe6bc99b6769816087c48614368eaecbc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fac20effe6bc99b6769816087c48614368eaecbc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fac20effe6bc99b6769816087c48614368eaecbc/config
Defconfig      : http://autobuild.buildroot.net/results/fac20effe6bc99b6769816087c48614368eaecbc/defconfig

Build 38419c3652dd4d4f3fb70bf5baa4c5e238e546b0
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 08:20:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/38419c3652dd4d4f3fb70bf5baa4c5e238e546b0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/38419c3652dd4d4f3fb70bf5baa4c5e238e546b0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/38419c3652dd4d4f3fb70bf5baa4c5e238e546b0/config
Defconfig      : http://autobuild.buildroot.net/results/38419c3652dd4d4f3fb70bf5baa4c5e238e546b0/defconfig

Build 8241d09369e1b707e31808699d43d1eac16e81a0
==============================================

Status         : NOK
Failure reason : sane-backends-1.0.22
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 09:16:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/8241d09369e1b707e31808699d43d1eac16e81a0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8241d09369e1b707e31808699d43d1eac16e81a0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8241d09369e1b707e31808699d43d1eac16e81a0/config
Defconfig      : http://autobuild.buildroot.net/results/8241d09369e1b707e31808699d43d1eac16e81a0/defconfig

Build 158542609059742b624bd43849e33c7c397fa886
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 10:01:15
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/158542609059742b624bd43849e33c7c397fa886/build-end.log
Complete log   : http://autobuild.buildroot.net/results/158542609059742b624bd43849e33c7c397fa886/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/158542609059742b624bd43849e33c7c397fa886/config
Defconfig      : http://autobuild.buildroot.net/results/158542609059742b624bd43849e33c7c397fa886/defconfig

Build 0c78a76e9ce0c37a2603f110d02a9521a57c3606
==============================================

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

Build 3ea4d7bfb2a20866853e8a442bfde65cb16fa302
==============================================

Status         : NOK
Failure reason : cairo-1.10.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 11:57:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/3ea4d7bfb2a20866853e8a442bfde65cb16fa302/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3ea4d7bfb2a20866853e8a442bfde65cb16fa302/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3ea4d7bfb2a20866853e8a442bfde65cb16fa302/config
Defconfig      : http://autobuild.buildroot.net/results/3ea4d7bfb2a20866853e8a442bfde65cb16fa302/defconfig

Build b0dceb48e523f0e3fd9a63ae93791ccac037560e
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 11:58:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/b0dceb48e523f0e3fd9a63ae93791ccac037560e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b0dceb48e523f0e3fd9a63ae93791ccac037560e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b0dceb48e523f0e3fd9a63ae93791ccac037560e/config
Defconfig      : http://autobuild.buildroot.net/results/b0dceb48e523f0e3fd9a63ae93791ccac037560e/defconfig

Build 9e8be82c77c71062639a470fba942736813c212a
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 12:52:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/9e8be82c77c71062639a470fba942736813c212a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9e8be82c77c71062639a470fba942736813c212a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9e8be82c77c71062639a470fba942736813c212a/config
Defconfig      : http://autobuild.buildroot.net/results/9e8be82c77c71062639a470fba942736813c212a/defconfig

Build 01c39d338f529eef28a2fcb7fe820f9124ad6516
==============================================

Status         : NOK
Failure reason : ffmpeg-0.8.12
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 13:18:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/01c39d338f529eef28a2fcb7fe820f9124ad6516/build-end.log
Complete log   : http://autobuild.buildroot.net/results/01c39d338f529eef28a2fcb7fe820f9124ad6516/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/01c39d338f529eef28a2fcb7fe820f9124ad6516/config
Defconfig      : http://autobuild.buildroot.net/results/01c39d338f529eef28a2fcb7fe820f9124ad6516/defconfig

Build 06e79f4f6755e28f59158cc9bd5764fd23866890
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 13:44:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/06e79f4f6755e28f59158cc9bd5764fd23866890/build-end.log
Complete log   : http://autobuild.buildroot.net/results/06e79f4f6755e28f59158cc9bd5764fd23866890/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/06e79f4f6755e28f59158cc9bd5764fd23866890/config
Defconfig      : http://autobuild.buildroot.net/results/06e79f4f6755e28f59158cc9bd5764fd23866890/defconfig

Build ff3e5e47bdae4f24edb509af3539bcb6ca5b4644
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 13:48:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/ff3e5e47bdae4f24edb509af3539bcb6ca5b4644/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ff3e5e47bdae4f24edb509af3539bcb6ca5b4644/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ff3e5e47bdae4f24edb509af3539bcb6ca5b4644/config
Defconfig      : http://autobuild.buildroot.net/results/ff3e5e47bdae4f24edb509af3539bcb6ca5b4644/defconfig

Build 15ea2f71065f61394eb5e7f15550c33e9430b474
==============================================

Status         : NOK
Failure reason : gpsd-3.7
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 14:15:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/15ea2f71065f61394eb5e7f15550c33e9430b474/build-end.log
Complete log   : http://autobuild.buildroot.net/results/15ea2f71065f61394eb5e7f15550c33e9430b474/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/15ea2f71065f61394eb5e7f15550c33e9430b474/config
Defconfig      : http://autobuild.buildroot.net/results/15ea2f71065f61394eb5e7f15550c33e9430b474/defconfig

Build 53c278ffd5dad31e3e8b33d567becbc7767e69b7
==============================================

Status         : NOK
Failure reason : matchbox-lib-1.9
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 15:07:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/53c278ffd5dad31e3e8b33d567becbc7767e69b7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/53c278ffd5dad31e3e8b33d567becbc7767e69b7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/53c278ffd5dad31e3e8b33d567becbc7767e69b7/config
Defconfig      : http://autobuild.buildroot.net/results/53c278ffd5dad31e3e8b33d567becbc7767e69b7/defconfig

Build 998f5b8d24afd22febbb424890e029ff83fad599
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 15:28:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/998f5b8d24afd22febbb424890e029ff83fad599/build-end.log
Complete log   : http://autobuild.buildroot.net/results/998f5b8d24afd22febbb424890e029ff83fad599/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/998f5b8d24afd22febbb424890e029ff83fad599/config
Defconfig      : http://autobuild.buildroot.net/results/998f5b8d24afd22febbb424890e029ff83fad599/defconfig

Build 5d596d984e187c8cbe20e1cf0ab238ccbd3221a5
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 16:06:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/5d596d984e187c8cbe20e1cf0ab238ccbd3221a5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5d596d984e187c8cbe20e1cf0ab238ccbd3221a5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5d596d984e187c8cbe20e1cf0ab238ccbd3221a5/config
Defconfig      : http://autobuild.buildroot.net/results/5d596d984e187c8cbe20e1cf0ab238ccbd3221a5/defconfig

Build 1821a3f1d077b404d4788df19f292b2027d9acc0
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-24 17:06:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/1821a3f1d077b404d4788df19f292b2027d9acc0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1821a3f1d077b404d4788df19f292b2027d9acc0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1821a3f1d077b404d4788df19f292b2027d9acc0/config
Defconfig      : http://autobuild.buildroot.net/results/1821a3f1d077b404d4788df19f292b2027d9acc0/defconfig

Build e639f198a13806b34bf9708a6b7900aeb789fac4
==============================================

Status         : NOK
Failure reason : matchbox-lib-1.9
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 17:07:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/e639f198a13806b34bf9708a6b7900aeb789fac4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e639f198a13806b34bf9708a6b7900aeb789fac4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e639f198a13806b34bf9708a6b7900aeb789fac4/config
Defconfig      : http://autobuild.buildroot.net/results/e639f198a13806b34bf9708a6b7900aeb789fac4/defconfig

Build 7d4922030874ccc7b3740c2bc0201085777a4fac
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 17:56:15
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/7d4922030874ccc7b3740c2bc0201085777a4fac/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7d4922030874ccc7b3740c2bc0201085777a4fac/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7d4922030874ccc7b3740c2bc0201085777a4fac/config
Defconfig      : http://autobuild.buildroot.net/results/7d4922030874ccc7b3740c2bc0201085777a4fac/defconfig

Build 0ac53542148f6c46605b6c427ea98479f3c6b0e3
==============================================

Status         : NOK
Failure reason : diffutils-3.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 18:19:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/0ac53542148f6c46605b6c427ea98479f3c6b0e3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0ac53542148f6c46605b6c427ea98479f3c6b0e3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0ac53542148f6c46605b6c427ea98479f3c6b0e3/config
Defconfig      : http://autobuild.buildroot.net/results/0ac53542148f6c46605b6c427ea98479f3c6b0e3/defconfig

Build 16e33030fbdeb842e5f192f404bbcd921fac293f
==============================================

Status         : NOK
Failure reason : netatalk-3.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 19:58:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/16e33030fbdeb842e5f192f404bbcd921fac293f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/16e33030fbdeb842e5f192f404bbcd921fac293f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/16e33030fbdeb842e5f192f404bbcd921fac293f/config
Defconfig      : http://autobuild.buildroot.net/results/16e33030fbdeb842e5f192f404bbcd921fac293f/defconfig

Build afdb0f70fc3945c07637c1eda38a844852fdb433
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 20:49:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/afdb0f70fc3945c07637c1eda38a844852fdb433/build-end.log
Complete log   : http://autobuild.buildroot.net/results/afdb0f70fc3945c07637c1eda38a844852fdb433/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/afdb0f70fc3945c07637c1eda38a844852fdb433/config
Defconfig      : http://autobuild.buildroot.net/results/afdb0f70fc3945c07637c1eda38a844852fdb433/defconfig

Build b69f916f12265f66f22ba3b08213fde8c8a006cd
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 21:26:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/b69f916f12265f66f22ba3b08213fde8c8a006cd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b69f916f12265f66f22ba3b08213fde8c8a006cd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b69f916f12265f66f22ba3b08213fde8c8a006cd/config
Defconfig      : http://autobuild.buildroot.net/results/b69f916f12265f66f22ba3b08213fde8c8a006cd/defconfig

Build 788531060424d4ea555cce7b7a583470de15573b
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 22:13:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/788531060424d4ea555cce7b7a583470de15573b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/788531060424d4ea555cce7b7a583470de15573b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/788531060424d4ea555cce7b7a583470de15573b/config
Defconfig      : http://autobuild.buildroot.net/results/788531060424d4ea555cce7b7a583470de15573b/defconfig

Build 54feb4575e44bcf629f42d6cc48fba6d2b3e3691
==============================================

Status         : NOK
Failure reason : ortp-0.20.0
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-24 22:29:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/54feb4575e44bcf629f42d6cc48fba6d2b3e3691/build-end.log
Complete log   : http://autobuild.buildroot.net/results/54feb4575e44bcf629f42d6cc48fba6d2b3e3691/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/54feb4575e44bcf629f42d6cc48fba6d2b3e3691/config
Defconfig      : http://autobuild.buildroot.net/results/54feb4575e44bcf629f42d6cc48fba6d2b3e3691/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [PATCH v2] gstreamer: Added option to disable plugin
From: Arnout Vandecappelle @ 2012-11-24 23:51 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <98E3058E5505294895CA69F176CAD66272CE97@LEMAIL01.le.imgtec.org>

  Hi Tim,

  The whitespace in your patch is messed up by your e-mail client.  Please use
git send-email to avoid this.


On 22/11/12 14:53, Tim Sheridan wrote:
> The plugin registry can take a while to be generated when GStreamer is initialized. Turning it off speeds up GStreamer application launch times. Default behaviour is unchanged.

  Please wrap the commit message at +- 72 characters

>
> Signed-off-by: Tim Sheridan<tim.sheridan@imgtec.com>
> ---
>   package/multimedia/gstreamer/Config.in    |    9 +++++++++
>   package/multimedia/gstreamer/gstreamer.mk |    3 ++-
>   2 files changed, 11 insertions(+), 1 deletions(-)
>
> diff --git a/package/multimedia/gstreamer/Config.in b/package/multimedia/gstreamer/Config.in
> index 4d279b8..e946b18 100644
> --- a/package/multimedia/gstreamer/Config.in
> +++ b/package/multimedia/gstreamer/Config.in
> @@ -16,5 +16,14 @@ config BR2_PACKAGE_GSTREAMER_GST_DEBUG
>            in gstreamer. This has limited CPU overhead, but does
>            increase the rootfs size somewhat.
>
> +config BR2_PACKAGE_GSTREAMER_PLUGIN_REGISTRY
> +       bool "enable plugin registry"
> +       default y
> +       depends on BR2_PACKAGE_GSTREAMER
> +       help
> +         Enable support for the GStreamer plugin registry.
> +         This may increase the launch-time for a GStreamer
> +         application.

  The Config.in things should be indented with 1 tab, help text with
1 tab and 2 spaces.  Wrapping should be at 80 characters, with the tab
counting as 8 characters.

> +
>   comment "gstreamer requires a toolchain with WCHAR support"
>          depends on !BR2_USE_WCHAR
> diff --git a/package/multimedia/gstreamer/gstreamer.mk b/package/multimedia/gstreamer/gstreamer.mk
> index a9841b1..b87f029 100644
> --- a/package/multimedia/gstreamer/gstreamer.mk
> +++ b/package/multimedia/gstreamer/gstreamer.mk
> @@ -21,7 +21,8 @@ GSTREAMER_CONF_OPT = \
>                  --disable-tests \
>                  --disable-failing-tests \
>                  --disable-loadsave \
> -               $(if $(BR2_PACKAGE_GSTREAMER_GST_DEBUG),,--disable-gst-debug)
> +               $(if $(BR2_PACKAGE_GSTREAMER_GST_DEBUG),,--disable-gst-debug) \
> +               $(if
> + $(BR2_PACKAGE_GSTREAMER_PLUGIN_REGISTRY),,--disable-registry)

  No need to split this line, even if it goes over 80 characters. It's less readable
when split.


  All my comments are just whitespace-related, so:

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


  Regards,
  Arnout

>
>   GSTREAMER_DEPENDENCIES = libglib2 host-pkgconf
>
> --
> 1.7.1

-- 
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] Passing arguments to the linker when external toolchain is used.
From: Arnout Vandecappelle @ 2012-11-24 23:33 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAMJ=MEc1T6Uz2tLS3ybdp5hwv7zX15ufGYMVuAY7jOSA+U=sYg@mail.gmail.com>

On 23/11/12 14:04, Ronny Meeus wrote:
> Hello
>
> I'm using buildroot to build an environment for MIPS (Cavium).
> For this I use a 64 bit toolchain provided by Cavium as an external toolchain.
>
> My buildroot configuration is as follows:
> * Buildroot 2012.05
> * Target Architecture: MIPS (big endian)
> * Target Architecture Variant: mips 64
> * Target ABI: n32
> * glibc
>
> In my application we need to create partially linked objects that will
> be linked together in a final link step.
> I see that the correct options (ABI etc) are passed to the compiler
> via the ext-toolchain-wrapper construction, but for the linker this
> technique is not used. It is directly invoked without modifying the
> command line. If I want to create this partially linked file, I need
> to pass an extra option the linker to indicate that is needs to use
> the N32 abi (-melf32btsmipn32).

  First of all, I don't understand why ld needs any option that we normally
pass to the compiler.  Do the -march, -mtune and -mfpu options even work
in ld?

  That said, if you do need the CFLAGS, then perhaps you should use
'$(CC) -nostdlib' rather than $(LD) (and of course pass ld-specific
options using -Wl,...).

>
> To make this work, I needed to make 2 changes:
> - make the linker a link to the ext-toolchain-wrapper
> - change the ext-toolchain-wrapper so that it passes to options to the
> linker (currently the option is hardcoded but this needs to be changed
> so that the BR2_TARGET_LDFLAGS are used.

  Since not all gcc flags are supported by ld, I think it should be a
separate toolchain wrapper, specific for ld.  It can be generated from
the same source code, though (using ifdefs).


  Regards,
  Arnout

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

^ permalink raw reply

* [Buildroot] [PATCH 33/33] sylpheed: add license info
From: Arnout Vandecappelle @ 2012-11-24 23:15 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-34-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/sylpheed/sylpheed.mk | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/package/sylpheed/sylpheed.mk b/package/sylpheed/sylpheed.mk
> index 3ac2e1e..149c2a3 100644
> --- a/package/sylpheed/sylpheed.mk
> +++ b/package/sylpheed/sylpheed.mk
> @@ -8,6 +8,8 @@ SYLPHEED_VERSION_MINOR = 0
>   SYLPHEED_VERSION = $(SYLPHEED_VERSION_MAJOR).$(SYLPHEED_VERSION_MINOR)
>   SYLPHEED_SOURCE = sylpheed-$(SYLPHEED_VERSION).tar.bz2
>   SYLPHEED_SITE = http://sylpheed.sraoss.jp/sylpheed/v$(SYLPHEED_VERSION_MAJOR)
> +SYLPHEED_LICENSE = GPLv2, except the libraries which are released under LGPLv2.1

  Both of them are +, so: GPLv2+ (executables), LGPLv2.1+ (library, attachment plugin)


  Regards,
  Arnout

> +SYLPHEED_LICENSE_FILES = COPIYNG COPYING.LIB
>
>   SYLPHEED_CONF_OPT = --disable-gtkspell --disable-gpgme
>

-- 
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 22/33] libmad: add license info
From: Arnout Vandecappelle @ 2012-11-24 23:08 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-23-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/libmad/libmad.mk | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/package/libmad/libmad.mk b/package/libmad/libmad.mk
> index 6999b66..1ce52ec 100644
> --- a/package/libmad/libmad.mk
> +++ b/package/libmad/libmad.mk
> @@ -8,6 +8,8 @@ LIBMAD_VERSION = 0.15.1b
>   LIBMAD_SITE = http://downloads.sourceforge.net/project/mad/libmad/$(LIBMAD_VERSION)
>   LIBMAD_INSTALL_STAGING = YES
>   LIBMAD_LIBTOOL_PATCH = NO
> +LIBMAD_LICENSE = GPLv2

  It's GPLv2+


  Regards,
  Arnout

> +LIBMAD_LICENSE_FILES = COPYING
>
>   define LIBMAD_PREVENT_AUTOMAKE
>   	# Prevent automake from running.

-- 
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 23/33] scons: add license info
From: Arnout Vandecappelle @ 2012-11-24 23:06 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-24-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>

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


  Regards,
  Arnout

> ---
>   package/scons/scons.mk | 3 +++
>   1 file changed, 3 insertions(+)
>
> diff --git a/package/scons/scons.mk b/package/scons/scons.mk
> index 45f2e1e..92cfe93 100644
> --- a/package/scons/scons.mk
> +++ b/package/scons/scons.mk
> @@ -1,6 +1,9 @@
>   SCONS_VERSION = 2.0.1
>   SCONS_SOURCE = scons-$(SCONS_VERSION).tar.gz
>   SCONS_SITE = http://downloads.sourceforge.net/project/scons/scons/$(SCONS_VERSION)
> +SCONS_LICENSE = MIT
> +SCONS_LICENSE_FILES = LICENSE.txt
> +
>   HOST_SCONS_DEPENDENCIES = $(NEED_PYTHON2)
>
>   define HOST_SCONS_BUILD_CMDS

-- 
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 24/33] efl packages: add license info
From: Arnout Vandecappelle @ 2012-11-24 23:04 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-25-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
[snip]
> diff --git a/package/efl/libedje/libedje.mk b/package/efl/libedje/libedje.mk
> index 8b4814e..f768dba 100644
> --- a/package/efl/libedje/libedje.mk
> +++ b/package/efl/libedje/libedje.mk
> @@ -7,6 +7,9 @@
>   LIBEDJE_VERSION = 1.1.0
>   LIBEDJE_SOURCE = edje-$(LIBEDJE_VERSION).tar.bz2
>   LIBEDJE_SITE =  http://download.enlightenment.org/releases/
> +LIBEDJE_LICENSE = epp binary is licensed under GPLv2, everything else is licensed under BSD-2c

  Although I'm OK with verbose license text, I think this is a bit too much.
How about: "GPLv2+ (epp binary), BSD-2c (everything else)"

  Note that it's GPLv2+

> +LIBEDJE_LICENSE_FILES = COPYING
> +
>   LIBEDJE_INSTALL_STAGING = YES
>
>   LIBEDJE_DEPENDENCIES = host-pkgconf lua libeina libeet libecore libevas \
[snip]
> diff --git a/package/efl/libembryo/libembryo.mk b/package/efl/libembryo/libembryo.mk
> index 5484ccf..6f66b10 100644
> --- a/package/efl/libembryo/libembryo.mk
> +++ b/package/efl/libembryo/libembryo.mk
> @@ -7,6 +7,9 @@
>   LIBEMBRYO_VERSION = 1.1.0
>   LIBEMBRYO_SOURCE = embryo-$(LIBEMBRYO_VERSION).tar.bz2
>   LIBEMBRYO_SITE = http://download.enlightenment.org/releases/
> +LIBEMBRYO_LICENSE = source containing the ITB CompuPhase copyright are released as-is  and the others are licensed under BSD-2c

  Again a bit too verbose.  I think the following should be sufficient:
"BSD-2c, Embryo license"

> +LIBEMBRYO_LICENSE_FILES = COPYING
> +
>   LIBEMBRYO_INSTALL_STAGING = YES
>
>   LIBEMBRYO_DEPENDENCIES = host-pkgconf libeina
> diff --git a/package/efl/libethumb/libethumb.mk b/package/efl/libethumb/libethumb.mk
> index 92e4c83..785fb28 100644
> --- a/package/efl/libethumb/libethumb.mk
> +++ b/package/efl/libethumb/libethumb.mk
> @@ -7,6 +7,9 @@
>   LIBETHUMB_VERSION = 0.1.1.65643
>   LIBETHUMB_SOURCE = ethumb-$(LIBETHUMB_VERSION).tar.bz2
>   LIBETHUMB_SITE = http://download.enlightenment.org/snapshots/2011-11-28
> +LIBETHUMB_LICENSE = LGPLv2.1

  LGPLv2.1+


  Regards,
  Arnout

> +LIBETHUMB_LICENSE_FILES = COPYING
> +
>   LIBETHUMB_INSTALL_STAGING = YES
>
>   LIBETHUMB_DEPENDENCIES = libeina libevas libecore libedje host-libedje
> diff --git a/package/efl/libevas/libevas.mk b/package/efl/libevas/libevas.mk
> index 594db60..402aa48 100644
> --- a/package/efl/libevas/libevas.mk
> +++ b/package/efl/libevas/libevas.mk
> @@ -7,6 +7,9 @@
>   LIBEVAS_VERSION = 1.1.0
>   LIBEVAS_SOURCE = evas-$(LIBEVAS_VERSION).tar.bz2
>   LIBEVAS_SITE = http://download.enlightenment.org/releases/
> +LIBEVAS_LICENSE = BSD-2c
> +LIBEVAS_LICENSE_FILES = COPYING
> +
>   LIBEVAS_INSTALL_STAGING = YES
>
>   LIBEVAS_DEPENDENCIES = host-pkgconf zlib libeina freetype

-- 
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 25/33] fluxbox: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:48 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-26-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/fluxbox/fluxbox.mk | 3 +++
>   1 file changed, 3 insertions(+)
>
> diff --git a/package/fluxbox/fluxbox.mk b/package/fluxbox/fluxbox.mk
> index bb34379..d8f2723 100644
> --- a/package/fluxbox/fluxbox.mk
> +++ b/package/fluxbox/fluxbox.mk
> @@ -7,6 +7,9 @@
>   FLUXBOX_VERSION = 1.3.2
>   FLUXBOX_SOURCE = fluxbox-$(FLUXBOX_VERSION).tar.bz2
>   FLUXBOX_SITE = http://downloads.sourceforge.net/project/fluxbox/fluxbox/$(FLUXBOX_VERSION)
> +FLUXBOX_LICENSE = as-is
> +FLUXBOX_LICENSE_FILES = COPYING
> +

  It's a MIT license.


  Regards,
  Arnout

>   FLUXBOX_AUTORECONF = YES
>   FLUXBOX_CONF_OPT = --x-includes=$(STAGING_DIR)/usr/include/X11 \
>   		   --x-libraries=$(STAGING_DIR)/usr/lib \

-- 
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 26/33] igh-ethercat: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:46 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-27-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/igh-ethercat/igh-ethercat.mk | 4 ++++
>   1 file changed, 4 insertions(+)
>
> diff --git a/package/igh-ethercat/igh-ethercat.mk b/package/igh-ethercat/igh-ethercat.mk
> index 9182f76..d37b6d3 100644
> --- a/package/igh-ethercat/igh-ethercat.mk
> +++ b/package/igh-ethercat/igh-ethercat.mk
> @@ -1,6 +1,10 @@
>   IGH_ETHERCAT_VERSION = 1.5.1
>   IGH_ETHERCAT_SITE    = http://etherlab.org/download/ethercat/
>   IGH_ETHERCAT_SOURCE  = ethercat-$(IGH_ETHERCAT_VERSION).tar.bz2
> +# According to the README file IgH EtherCAT master is licensed under GPLv2,
> +# while the source-tree contains a copy of the GPLv2 and one of the LGPLv3
> +IGH_ETHERCAT_LICENSE = GPLv2
> +IGH_ETHERCAT_LICENSE_FILES = COPYING COPYING.LESSER

  The library is under LGPLv2.1. I guess they included the LGPLv3 by
accident.


  Regards,
  Arnout

>
>   IGH_ETHERCAT_DEPENDENCIES    = linux
>   IGH_ETHERCAT_INSTALL_STAGING = YES

-- 
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 27/33] imagemagick: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:42 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-28-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>

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

  Regards,
  Arnout

> ---
>   package/imagemagick/imagemagick.mk | 3 +++
>   1 file changed, 3 insertions(+)
>
> diff --git a/package/imagemagick/imagemagick.mk b/package/imagemagick/imagemagick.mk
> index 365a073..725e529 100644
> --- a/package/imagemagick/imagemagick.mk
> +++ b/package/imagemagick/imagemagick.mk
> @@ -11,6 +11,9 @@ IMAGEMAGICK_SOURCE = ImageMagick-$(IMAGEMAGICK_VERSION).tar.bz2
>   # available, which is annoying. Use an alternate site that keeps all
>   # older versions.
>   IMAGEMAGICK_SITE = ftp://ftp.nluug.nl/pub/ImageMagick/
> +IMAGEMAGICK_LICENSE = Apache-v2
> +IMAGEMAGICK_LICENSE_FILES = LICENSE
> +
>   IMAGEMAGICK_INSTALL_STAGING = YES
>   IMAGEMAGICK_AUTORECONF = YES
>

-- 
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 29/33] ltp-testsuite: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:41 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-30-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/ltp-testsuite/ltp-testsuite.mk | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/package/ltp-testsuite/ltp-testsuite.mk b/package/ltp-testsuite/ltp-testsuite.mk
> index c6b34f0..72d3a08 100644
> --- a/package/ltp-testsuite/ltp-testsuite.mk
> +++ b/package/ltp-testsuite/ltp-testsuite.mk
> @@ -6,5 +6,7 @@
>   LTP_TESTSUITE_VERSION = 20101031
>   LTP_TESTSUITE_SOURCE  = ltp-full-$(LTP_TESTSUITE_VERSION).bz2
>   LTP_TESTSUITE_SITE    = http://downloads.sourceforge.net/project/ltp/LTP%20Source/ltp-$(LTP_TESTSUITE_VERSION)
> +LTP_TESTSUITE_LICENSE = GPLv2
> +LTP_TESTSUITE_LICENSE_FILES = COPYING

  Parts are GPLv2 and parts are GPLv2+, so I'd put both.

  Regards,
  Arnout

>
>   $(eval $(autotools-package))

-- 
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 30/33] matchbox packages: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:37 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-31-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/matchbox/matchbox-common/matchbox-common.mk                   | 3 +++
>   package/matchbox/matchbox-desktop/matchbox-desktop.mk                 | 3 +++
>   package/matchbox/matchbox-fakekey/matchbox-fakekey.mk                 | 3 +++
>   package/matchbox/matchbox-keyboard/matchbox-keyboard.mk               | 3 +++
>   package/matchbox/matchbox-lib/matchbox-lib.mk                         | 3 +++
>   package/matchbox/matchbox-panel/matchbox-panel.mk                     | 3 +++
>   package/matchbox/matchbox-startup-monitor/matchbox-startup-monitor.mk | 3 +++
>   package/matchbox/matchbox-wm/matchbox-wm.mk                           | 3 +++
>   8 files changed, 24 insertions(+)
>
> diff --git a/package/matchbox/matchbox-common/matchbox-common.mk b/package/matchbox/matchbox-common/matchbox-common.mk
> index 993590c..2909f27 100644
> --- a/package/matchbox/matchbox-common/matchbox-common.mk
> +++ b/package/matchbox/matchbox-common/matchbox-common.mk
> @@ -7,6 +7,9 @@ MATCHBOX_COMMON_VERSION_MAJOR = 0.9
>   MATCHBOX_COMMON_VERSION = $(MATCHBOX_COMMON_VERSION_MAJOR).1
>   MATCHBOX_COMMON_SOURCE = matchbox-common-$(MATCHBOX_COMMON_VERSION).tar.bz2
>   MATCHBOX_COMMON_SITE = http://projects.o-hand.com/matchbox/sources/matchbox-common/$(MATCHBOX_COMMON_VERSION_MAJOR)
> +MATCHBOX_COMMON_LICENSE = GPLv2

  As far as I can see, all files say 'or later', so it should
be GPLv2+.  And this is for all matchbox-xxx packages.

  Regards,
  Arnout

[snip]
-- 
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 28/33] imlib2: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:29 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-29-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/imlib2/imlib2.mk | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/package/imlib2/imlib2.mk b/package/imlib2/imlib2.mk
> index 3c6c473..52d80df 100644
> --- a/package/imlib2/imlib2.mk
> +++ b/package/imlib2/imlib2.mk
> @@ -6,6 +6,9 @@
>   IMLIB2_VERSION = 1.4.5
>   IMLIB2_SOURCE = imlib2-$(IMLIB2_VERSION).tar.bz2
>   IMLIB2_SITE = http://downloads.sourceforge.net/project/enlightenment/imlib2-src/$(IMLIB2_VERSION)/
> +IMLIB2_LICENSE = as-is
> +IMLIB2_LICENSE_FILES = COPYING

  I think we'll have to call this 'imlib2 license'.  'as-is' is too meaningless
if you ask me.  The license resembles MIT a bit, but the requirement of public
acknowledgement diverges too much to still call it MIT-like.

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

^ permalink raw reply

* [Buildroot] [PATCH 31/33] owl-linux: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:20 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-32-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/owl-linux/owl-linux.mk | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/package/owl-linux/owl-linux.mk b/package/owl-linux/owl-linux.mk
> index 0a111c8..e5846a4 100644
> --- a/package/owl-linux/owl-linux.mk
> +++ b/package/owl-linux/owl-linux.mk
> @@ -5,6 +5,8 @@
>   #############################################################
>   OWL_LINUX_VERSION = 1.0.7
>   OWL_LINUX_SITE = http://linux.hd-wireless.se/pub/Linux/DownloadDrivers
> +OWL_LINUX_LICENSE = as-is
> +OWL_LINUX_LICENSE_FILES = LICENSE

  The way I read this license, it's PROPRIETARY.  The 'as-is' is just a
warranty disclaimer.  The only reference to copyright is "All rights
reserved" - i.e., you're not allowed to copy it (or even compile it).

  This means you should also set OWL_LINUX_REDISTRIBUTE = NO.

  Regards,
  Arnout

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

^ permalink raw reply

* [Buildroot] [PATCH 32/33] rrdtool: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAHXCMM+pc8K8BUG7TcVBr5Q+-LYy2KLFNSgs7vkPTsOhLsVptA@mail.gmail.com>

On 22/11/12 11:07, Samuel Martin wrote:
> Hi Baruch, all,
>
> 2012/11/22 Baruch Siach<baruch@tkos.co.il>:
> > Hi Samuel,
> >
> > On Thu, Nov 22, 2012 at 01:18:22AM +0100, Samuel Martin wrote:
> >>
> >> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> >> ---
> >>   package/rrdtool/rrdtool.mk | 3 +++
> >>   1 file changed, 3 insertions(+)
> >>
> >> diff --git a/package/rrdtool/rrdtool.mk b/package/rrdtool/rrdtool.mk
> >> index 8799a85..4392b50 100644
> >> --- a/package/rrdtool/rrdtool.mk
> >> +++ b/package/rrdtool/rrdtool.mk
> >> @@ -6,6 +6,9 @@
> >>
> >>   RRDTOOL_VERSION = 1.2.30
> >>   RRDTOOL_SITE = http://oss.oetiker.ch/rrdtool/pub
> >> +RRDTOOL_LICENSE = GPLv2+ with FLOSS license exceptions as explained in COPYRIGHT
> >> +RRDTOOL_LICENSE_FILES = COPYING
> >
> > Shouldn't COPYRIGHT also be listed with the license files?
> The Copyright file just tells us "wrt the license, you can do that and
> that, but not that with this software",
> with some real use case.
>
> Shall we consider as part of the license files?

  Since you refer to it in the RRDTOOL_LICENSE, yes the COPYRIGHT file
should be included.

  Note that "GPLv2+ with exceptions" is probably enough, since the
user should anyway look at COPYRIGHT to find out the details.

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

^ permalink raw reply

* [Buildroot] Qt mouse, keyboard, touchscreen
From: Stephan Hoffmann @ 2012-11-24  9:51 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353748764.40553.YahooMailNeo@web164602.mail.gq1.yahoo.com>

Am 24.11.2012 10:19, schrieb Zoran Djordjevic:
> Thanks to helpful information you provided, I managed to built
> simple Qt application on my ARM board and it works - meaning
> I got some window and some simple effect inside. I am using
> framebuffer so started program with -qws option.
> However mouse, keyboard and touchscreen are dead. In fact they
> are probably visible by kernel (ts_calibrate and ts_test for example,
> works OK and cat /dev/input/event0 shows "usuall" garbage on
> terminal) however I don't know how to start them to work with Qt.
> I successfully started them earlier while using TinyX and GTK, by
> simply quoting them with xinit command parameters.
> But don't know how to do the same with Qt.
Hi,

there are two things to consider:

1. Check if there are drivers enabled in buildroot config. The default
configuration does not include any drivers. I stepped in this trap when
I started to use QT.

BTW: Shouldn't we change this to some useful default?

2. QT needs environment variables to configure input devices.

http://doc.qt.digia.com/4.7/qt-embedded-envvars.html

Hope this helps

Stephan

>  
> Regards
>
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot


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


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

^ permalink raw reply

* [Buildroot] Qt mouse, keyboard, touchscreen
From: Zoran Djordjevic @ 2012-11-24  9:19 UTC (permalink / raw)
  To: buildroot

Thanks to helpful information you provided, I managed to built
simple Qt application on my ARM board and it works - meaning
I got some window and some simple effect inside. I am using 
framebuffer so started program with?-qws option.
However mouse, keyboard and touchscreen are dead. In fact they 
are probably visible by kernel (ts_calibrate and ts_test for example,
works OK and cat /dev/input/event0 shows "usuall" garbage on 
terminal) however I don't know how to start them to work with Qt.
I successfully started them earlier?while using TinyX and GTK, by
simply quoting them?with xinit command parameters.
But don't know how to do the same with Qt.
?
Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121124/9db2df41/attachment.html>

^ permalink raw reply

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


Hello,

On 2012-11-23, 138 random build tests have been done and
submitted on autobuild.buildroot.net.
 97 builds have been successful
 41 builds have failed

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

Build bbc1a580fc4ecd7a40a86dfd98716614b64b76fa
==============================================

Status         : NOK
Failure reason : host-python-2.7.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 01:12:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/bbc1a580fc4ecd7a40a86dfd98716614b64b76fa/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bbc1a580fc4ecd7a40a86dfd98716614b64b76fa/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bbc1a580fc4ecd7a40a86dfd98716614b64b76fa/config
Defconfig      : http://autobuild.buildroot.net/results/bbc1a580fc4ecd7a40a86dfd98716614b64b76fa/defconfig

Build d6de5fe4fcb8b06e1d60905d48b0fcb4702826c2
==============================================

Status         : NOK
Failure reason : squid-3.2.3
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 01:54:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/d6de5fe4fcb8b06e1d60905d48b0fcb4702826c2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d6de5fe4fcb8b06e1d60905d48b0fcb4702826c2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d6de5fe4fcb8b06e1d60905d48b0fcb4702826c2/config
Defconfig      : http://autobuild.buildroot.net/results/d6de5fe4fcb8b06e1d60905d48b0fcb4702826c2/defconfig

Build b63bb84ef1e0803740850666096e4ceced90f395
==============================================

Status         : NOK
Failure reason : pcsc-lite-1.8.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 04:13:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/b63bb84ef1e0803740850666096e4ceced90f395/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b63bb84ef1e0803740850666096e4ceced90f395/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b63bb84ef1e0803740850666096e4ceced90f395/config
Defconfig      : http://autobuild.buildroot.net/results/b63bb84ef1e0803740850666096e4ceced90f395/defconfig

Build 5a1e74f44ba16d40a1a069aba1fe98ca461f07f0
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 04:33:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/5a1e74f44ba16d40a1a069aba1fe98ca461f07f0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5a1e74f44ba16d40a1a069aba1fe98ca461f07f0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5a1e74f44ba16d40a1a069aba1fe98ca461f07f0/config
Defconfig      : http://autobuild.buildroot.net/results/5a1e74f44ba16d40a1a069aba1fe98ca461f07f0/defconfig

Build 4ea10c970327f7f9f1bf13bbe8559c736574d955
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-23 04:50:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/4ea10c970327f7f9f1bf13bbe8559c736574d955/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4ea10c970327f7f9f1bf13bbe8559c736574d955/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4ea10c970327f7f9f1bf13bbe8559c736574d955/config
Defconfig      : http://autobuild.buildroot.net/results/4ea10c970327f7f9f1bf13bbe8559c736574d955/defconfig

Build 80277dbf5123bd31ede5f0983475af42eafe6f29
==============================================

Status         : NOK
Failure reason : netatalk-3.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 04:54:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/80277dbf5123bd31ede5f0983475af42eafe6f29/build-end.log
Complete log   : http://autobuild.buildroot.net/results/80277dbf5123bd31ede5f0983475af42eafe6f29/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/80277dbf5123bd31ede5f0983475af42eafe6f29/config
Defconfig      : http://autobuild.buildroot.net/results/80277dbf5123bd31ede5f0983475af42eafe6f29/defconfig

Build ea43c7b7734ec903f012796ab24685bb0c8a0d99
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 04:55:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/ea43c7b7734ec903f012796ab24685bb0c8a0d99/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ea43c7b7734ec903f012796ab24685bb0c8a0d99/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ea43c7b7734ec903f012796ab24685bb0c8a0d99/config
Defconfig      : http://autobuild.buildroot.net/results/ea43c7b7734ec903f012796ab24685bb0c8a0d99/defconfig

Build c6250e533a2b1a5ca522026c8932617e8b2db8e7
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-23 05:25:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/c6250e533a2b1a5ca522026c8932617e8b2db8e7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c6250e533a2b1a5ca522026c8932617e8b2db8e7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c6250e533a2b1a5ca522026c8932617e8b2db8e7/config
Defconfig      : http://autobuild.buildroot.net/results/c6250e533a2b1a5ca522026c8932617e8b2db8e7/defconfig

Build 819410fc4dbe0581487c8deace014d28ee93ad59
==============================================

Status         : NOK
Failure reason : kexec-2.0.3
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 06:34:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/819410fc4dbe0581487c8deace014d28ee93ad59/build-end.log
Complete log   : http://autobuild.buildroot.net/results/819410fc4dbe0581487c8deace014d28ee93ad59/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/819410fc4dbe0581487c8deace014d28ee93ad59/config
Defconfig      : http://autobuild.buildroot.net/results/819410fc4dbe0581487c8deace014d28ee93ad59/defconfig

Build 4bfd1b565f50ff96a77e7aec02db1380b495241a
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 06:40:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/4bfd1b565f50ff96a77e7aec02db1380b495241a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4bfd1b565f50ff96a77e7aec02db1380b495241a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4bfd1b565f50ff96a77e7aec02db1380b495241a/config
Defconfig      : http://autobuild.buildroot.net/results/4bfd1b565f50ff96a77e7aec02db1380b495241a/defconfig

Build de8bff4d6c04de575112a7d47f4ac72002266054
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-23 07:25:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/de8bff4d6c04de575112a7d47f4ac72002266054/build-end.log
Complete log   : http://autobuild.buildroot.net/results/de8bff4d6c04de575112a7d47f4ac72002266054/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/de8bff4d6c04de575112a7d47f4ac72002266054/config
Defconfig      : http://autobuild.buildroot.net/results/de8bff4d6c04de575112a7d47f4ac72002266054/defconfig

Build 09b9b7c9307c4d6732600f929191f874ce59c2d2
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 07:54:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/09b9b7c9307c4d6732600f929191f874ce59c2d2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/09b9b7c9307c4d6732600f929191f874ce59c2d2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/09b9b7c9307c4d6732600f929191f874ce59c2d2/config
Defconfig      : http://autobuild.buildroot.net/results/09b9b7c9307c4d6732600f929191f874ce59c2d2/defconfig

Build 996b11580f2bac33ffb427c82940552977f5489e
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 08:14:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/996b11580f2bac33ffb427c82940552977f5489e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/996b11580f2bac33ffb427c82940552977f5489e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/996b11580f2bac33ffb427c82940552977f5489e/config
Defconfig      : http://autobuild.buildroot.net/results/996b11580f2bac33ffb427c82940552977f5489e/defconfig

Build 5cbee89d3a7080a35044cad41efc9a24bdaec310
==============================================

Status         : NOK
Failure reason : ffmpeg-0.8.12
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 09:45:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/5cbee89d3a7080a35044cad41efc9a24bdaec310/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5cbee89d3a7080a35044cad41efc9a24bdaec310/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5cbee89d3a7080a35044cad41efc9a24bdaec310/config
Defconfig      : http://autobuild.buildroot.net/results/5cbee89d3a7080a35044cad41efc9a24bdaec310/defconfig

Build 00761a5c88f2219197a13a1313bbfb4e243ab1e4
==============================================

Status         : NOK
Failure reason : squid-3.2.3
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 14:21:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/00761a5c88f2219197a13a1313bbfb4e243ab1e4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/00761a5c88f2219197a13a1313bbfb4e243ab1e4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/00761a5c88f2219197a13a1313bbfb4e243ab1e4/config
Defconfig      : http://autobuild.buildroot.net/results/00761a5c88f2219197a13a1313bbfb4e243ab1e4/defconfig

Build f0de066beb77a77666335b57344c3f2f9552ed1e
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 14:22:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/f0de066beb77a77666335b57344c3f2f9552ed1e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f0de066beb77a77666335b57344c3f2f9552ed1e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f0de066beb77a77666335b57344c3f2f9552ed1e/config
Defconfig      : http://autobuild.buildroot.net/results/f0de066beb77a77666335b57344c3f2f9552ed1e/defconfig

Build b452189223b15af9349a0e53fade2677aa58331a
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-23 14:52:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/b452189223b15af9349a0e53fade2677aa58331a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b452189223b15af9349a0e53fade2677aa58331a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b452189223b15af9349a0e53fade2677aa58331a/config
Defconfig      : http://autobuild.buildroot.net/results/b452189223b15af9349a0e53fade2677aa58331a/defconfig

Build 73b33edefef619a38eb9d719ef6146a5a5fef7d7
==============================================

Status         : NOK
Failure reason : xstroke-0.6
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 14:58:17
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/73b33edefef619a38eb9d719ef6146a5a5fef7d7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/73b33edefef619a38eb9d719ef6146a5a5fef7d7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/73b33edefef619a38eb9d719ef6146a5a5fef7d7/config
Defconfig      : http://autobuild.buildroot.net/results/73b33edefef619a38eb9d719ef6146a5a5fef7d7/defconfig

Build f642cff9e6fffc92d3d72c58bc6dab9f6217bb8b
==============================================

Status         : NOK
Failure reason : bzip2-1.0.6
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 15:00:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/f642cff9e6fffc92d3d72c58bc6dab9f6217bb8b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f642cff9e6fffc92d3d72c58bc6dab9f6217bb8b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f642cff9e6fffc92d3d72c58bc6dab9f6217bb8b/config
Defconfig      : http://autobuild.buildroot.net/results/f642cff9e6fffc92d3d72c58bc6dab9f6217bb8b/defconfig

Build d56e647605aa526270f2d862ca3fbd1cc3babce6
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 16:11:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/d56e647605aa526270f2d862ca3fbd1cc3babce6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d56e647605aa526270f2d862ca3fbd1cc3babce6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d56e647605aa526270f2d862ca3fbd1cc3babce6/config
Defconfig      : http://autobuild.buildroot.net/results/d56e647605aa526270f2d862ca3fbd1cc3babce6/defconfig

Build 0e5f44ec06044920ddad448beadfc560b9b59dac
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-23 16:21:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/0e5f44ec06044920ddad448beadfc560b9b59dac/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0e5f44ec06044920ddad448beadfc560b9b59dac/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0e5f44ec06044920ddad448beadfc560b9b59dac/config
Defconfig      : http://autobuild.buildroot.net/results/0e5f44ec06044920ddad448beadfc560b9b59dac/defconfig

Build fed63017d0a4f6b19373592b5daaa9f5a4aa5e51
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 16:24:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/fed63017d0a4f6b19373592b5daaa9f5a4aa5e51/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fed63017d0a4f6b19373592b5daaa9f5a4aa5e51/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fed63017d0a4f6b19373592b5daaa9f5a4aa5e51/config
Defconfig      : http://autobuild.buildroot.net/results/fed63017d0a4f6b19373592b5daaa9f5a4aa5e51/defconfig

Build 62104328ff1b40a4f609aefb1d4f34226231daef
==============================================

Status         : NOK
Failure reason : host-python-2.7.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 16:31:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/62104328ff1b40a4f609aefb1d4f34226231daef/build-end.log
Complete log   : http://autobuild.buildroot.net/results/62104328ff1b40a4f609aefb1d4f34226231daef/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/62104328ff1b40a4f609aefb1d4f34226231daef/config
Defconfig      : http://autobuild.buildroot.net/results/62104328ff1b40a4f609aefb1d4f34226231daef/defconfig

Build 11ce0bd6e4c76eaa201d9ea215e328eeb09c5737
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 16:38:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/11ce0bd6e4c76eaa201d9ea215e328eeb09c5737/build-end.log
Complete log   : http://autobuild.buildroot.net/results/11ce0bd6e4c76eaa201d9ea215e328eeb09c5737/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/11ce0bd6e4c76eaa201d9ea215e328eeb09c5737/config
Defconfig      : http://autobuild.buildroot.net/results/11ce0bd6e4c76eaa201d9ea215e328eeb09c5737/defconfig

Build 2ca8e73f83e7f9aba6412d4992c2311e7d394413
==============================================

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

Build c32712d491a67fa955bd6f84a29a998cee0a7f7a
==============================================

Status         : NOK
Failure reason : lcdproc-0.5.6
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 17:57:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/c32712d491a67fa955bd6f84a29a998cee0a7f7a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c32712d491a67fa955bd6f84a29a998cee0a7f7a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c32712d491a67fa955bd6f84a29a998cee0a7f7a/config
Defconfig      : http://autobuild.buildroot.net/results/c32712d491a67fa955bd6f84a29a998cee0a7f7a/defconfig

Build 02c2f4df771aacb374bed5184ae126346b384301
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 18:18:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/02c2f4df771aacb374bed5184ae126346b384301/build-end.log
Complete log   : http://autobuild.buildroot.net/results/02c2f4df771aacb374bed5184ae126346b384301/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/02c2f4df771aacb374bed5184ae126346b384301/config
Defconfig      : http://autobuild.buildroot.net/results/02c2f4df771aacb374bed5184ae126346b384301/defconfig

Build 595e3e1bb6eda5aba4bce9e10f99a61a98ba4090
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 18:41:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/595e3e1bb6eda5aba4bce9e10f99a61a98ba4090/build-end.log
Complete log   : http://autobuild.buildroot.net/results/595e3e1bb6eda5aba4bce9e10f99a61a98ba4090/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/595e3e1bb6eda5aba4bce9e10f99a61a98ba4090/config
Defconfig      : http://autobuild.buildroot.net/results/595e3e1bb6eda5aba4bce9e10f99a61a98ba4090/defconfig

Build d1a1b58d495f817c1cacb49bf5f362ae9133aaed
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 18:47:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/d1a1b58d495f817c1cacb49bf5f362ae9133aaed/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d1a1b58d495f817c1cacb49bf5f362ae9133aaed/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d1a1b58d495f817c1cacb49bf5f362ae9133aaed/config
Defconfig      : http://autobuild.buildroot.net/results/d1a1b58d495f817c1cacb49bf5f362ae9133aaed/defconfig

Build 91f65ccb77859f54ee08ef62907488022c2a5ef3
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 20:38:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/91f65ccb77859f54ee08ef62907488022c2a5ef3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/91f65ccb77859f54ee08ef62907488022c2a5ef3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/91f65ccb77859f54ee08ef62907488022c2a5ef3/config
Defconfig      : http://autobuild.buildroot.net/results/91f65ccb77859f54ee08ef62907488022c2a5ef3/defconfig

Build f94af34e58e1932aa6169e80bcb6f35adcb127ea
==============================================

Status         : NOK
Failure reason : boost-1.49.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 20:48:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/f94af34e58e1932aa6169e80bcb6f35adcb127ea/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f94af34e58e1932aa6169e80bcb6f35adcb127ea/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f94af34e58e1932aa6169e80bcb6f35adcb127ea/config
Defconfig      : http://autobuild.buildroot.net/results/f94af34e58e1932aa6169e80bcb6f35adcb127ea/defconfig

Build e961a05e56450aba0d527b90e1b24e2df233e4c3
==============================================

Status         : NOK
Failure reason : squid-3.2.3
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 20:58:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/e961a05e56450aba0d527b90e1b24e2df233e4c3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e961a05e56450aba0d527b90e1b24e2df233e4c3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e961a05e56450aba0d527b90e1b24e2df233e4c3/config
Defconfig      : http://autobuild.buildroot.net/results/e961a05e56450aba0d527b90e1b24e2df233e4c3/defconfig

Build 38d9409724a87d84b3bd7735d9c56213b72d2ebb
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 21:15:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/38d9409724a87d84b3bd7735d9c56213b72d2ebb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/38d9409724a87d84b3bd7735d9c56213b72d2ebb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/38d9409724a87d84b3bd7735d9c56213b72d2ebb/config
Defconfig      : http://autobuild.buildroot.net/results/38d9409724a87d84b3bd7735d9c56213b72d2ebb/defconfig

Build d0c296d5c09638f324e460676043fcf1092d5868
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 21:17:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/d0c296d5c09638f324e460676043fcf1092d5868/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d0c296d5c09638f324e460676043fcf1092d5868/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d0c296d5c09638f324e460676043fcf1092d5868/config
Defconfig      : http://autobuild.buildroot.net/results/d0c296d5c09638f324e460676043fcf1092d5868/defconfig

Build 237aaf7b036a98867de1df47d39d01ec4137efd3
==============================================

Status         : NOK
Failure reason : directfb-1.4.17
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 21:22:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3/config
Defconfig      : http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3/defconfig

Build b8f0ce705d9cb8088398c1b31fa5fad64938a48f
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 22:21:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/b8f0ce705d9cb8088398c1b31fa5fad64938a48f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b8f0ce705d9cb8088398c1b31fa5fad64938a48f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b8f0ce705d9cb8088398c1b31fa5fad64938a48f/config
Defconfig      : http://autobuild.buildroot.net/results/b8f0ce705d9cb8088398c1b31fa5fad64938a48f/defconfig

Build e09b9e765b9a520866a40c2f5d17a68daa0c5ccd
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 22:27:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/e09b9e765b9a520866a40c2f5d17a68daa0c5ccd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e09b9e765b9a520866a40c2f5d17a68daa0c5ccd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e09b9e765b9a520866a40c2f5d17a68daa0c5ccd/config
Defconfig      : http://autobuild.buildroot.net/results/e09b9e765b9a520866a40c2f5d17a68daa0c5ccd/defconfig

Build 1cd123e51f2a88228306b7cd42c18471d267e0a8
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-23 22:28:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/1cd123e51f2a88228306b7cd42c18471d267e0a8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1cd123e51f2a88228306b7cd42c18471d267e0a8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1cd123e51f2a88228306b7cd42c18471d267e0a8/config
Defconfig      : http://autobuild.buildroot.net/results/1cd123e51f2a88228306b7cd42c18471d267e0a8/defconfig

Build 57cf8932d9c9ca2745e22c6d439720c82071d232
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 22:47:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/57cf8932d9c9ca2745e22c6d439720c82071d232/build-end.log
Complete log   : http://autobuild.buildroot.net/results/57cf8932d9c9ca2745e22c6d439720c82071d232/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/57cf8932d9c9ca2745e22c6d439720c82071d232/config
Defconfig      : http://autobuild.buildroot.net/results/57cf8932d9c9ca2745e22c6d439720c82071d232/defconfig

Build f7487a8fb7ebfeeafa9bec99700bfcf2f1db33b2
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 23:57:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/f7487a8fb7ebfeeafa9bec99700bfcf2f1db33b2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f7487a8fb7ebfeeafa9bec99700bfcf2f1db33b2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f7487a8fb7ebfeeafa9bec99700bfcf2f1db33b2/config
Defconfig      : http://autobuild.buildroot.net/results/f7487a8fb7ebfeeafa9bec99700bfcf2f1db33b2/defconfig

Build 8f3608d0c98883fffd6483aee8b57eadc2dbcc6c
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 23:58:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/8f3608d0c98883fffd6483aee8b57eadc2dbcc6c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8f3608d0c98883fffd6483aee8b57eadc2dbcc6c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8f3608d0c98883fffd6483aee8b57eadc2dbcc6c/config
Defconfig      : http://autobuild.buildroot.net/results/8f3608d0c98883fffd6483aee8b57eadc2dbcc6c/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