Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 2/2] linux: bump to 3.7.x version
From: Gustavo Zacarias @ 2012-12-11 17:58 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355248713-4607-1-git-send-email-gustavo@zacarias.com.ar>

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

diff --git a/linux/Config.in b/linux/Config.in
index ef3b2a1..51810e2 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -20,8 +20,8 @@ if BR2_LINUX_KERNEL
 choice
 	prompt "Kernel version"
 
-config BR2_LINUX_KERNEL_3_6
-	bool "3.6.9"
+config BR2_LINUX_KERNEL_3_7
+	bool "3.7"
 
 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
 	bool "Same as toolchain kernel headers"
@@ -76,7 +76,7 @@ config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
 
 config BR2_LINUX_KERNEL_VERSION
 	string
-	default "3.6.9" if BR2_LINUX_KERNEL_3_6
+	default "3.7" if BR2_LINUX_KERNEL_3_7
 	default BR2_DEFAULT_KERNEL_HEADERS if BR2_LINUX_KERNEL_SAME_AS_HEADERS
 	default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE if BR2_LINUX_KERNEL_CUSTOM_VERSION
 	default "custom" if BR2_LINUX_KERNEL_CUSTOM_TARBALL
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] [PATCH 1/2] kernel-headers: bump versions, remove deprecated, new deprecated
From: Gustavo Zacarias @ 2012-12-11 17:58 UTC (permalink / raw)
  To: buildroot

Bump 3.{0, 4, 6}.x stable versions
Add new version 3.7
Remove deprecated 2.6.{37, 38, 39} versions.
Mark 3.{1, 3, 5} as deprecated to follow upstream EOLs.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 toolchain/kernel-headers/Config.in                 |   32 +++++++------------
 ...all-fix-__packed-in-exported-kernel-head.patch} |    0
 2 files changed, 12 insertions(+), 20 deletions(-)
 rename toolchain/kernel-headers/{linux-3.0.55-headers_install-fix-__packed-in-exported-kernel-head.patch => linux-3.0.56-headers_install-fix-__packed-in-exported-kernel-head.patch} (100%)

diff --git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in
index 0f3ed4f..daffef7 100644
--- a/toolchain/kernel-headers/Config.in
+++ b/toolchain/kernel-headers/Config.in
@@ -6,7 +6,7 @@ comment "Kernel Header Options"
 
 choice
 	prompt "Kernel Headers"
-	default BR2_KERNEL_HEADERS_3_6
+	default BR2_KERNEL_HEADERS_3_7
 	help
 	  Select the version of kernel header files you wish to use.
 	  You must select the correct set of header files to match
@@ -15,39 +15,33 @@ choice
 	  For the snapshot, you have to provide the
 	  linux-2.6.tar.bz2 tarball in your download dir.
 
-	config BR2_KERNEL_HEADERS_2_6_37
-		bool "Linux 2.6.37.x kernel headers"
-		depends on BR2_DEPRECATED
-
-	config BR2_KERNEL_HEADERS_2_6_38
-		bool "Linux 2.6.38.x kernel headers"
-		depends on BR2_DEPRECATED
-
-	config BR2_KERNEL_HEADERS_2_6_39
-		bool "Linux 2.6.39.x kernel headers"
-		depends on BR2_DEPRECATED
-
 	config BR2_KERNEL_HEADERS_3_0
 		bool "Linux 3.0.x kernel headers"
 
 	config BR2_KERNEL_HEADERS_3_1
 		bool "Linux 3.1.x kernel headers"
+		depends on BR2_DEPRECATED
 
 	config BR2_KERNEL_HEADERS_3_2
 		bool "Linux 3.2.x kernel headers"
 
 	config BR2_KERNEL_HEADERS_3_3
 		bool "Linux 3.3.x kernel headers"
+		depends on BR2_DEPRECATED
 
 	config BR2_KERNEL_HEADERS_3_4
 		bool "Linux 3.4.x kernel headers"
 
 	config BR2_KERNEL_HEADERS_3_5
 		bool "Linux 3.5.x kernel headers"
+		depends on BR2_DEPRECATED
 
 	config BR2_KERNEL_HEADERS_3_6
 		bool "Linux 3.6.x kernel headers"
 
+	config BR2_KERNEL_HEADERS_3_7
+		bool "Linux 3.7.x kernel headers"
+
 	config BR2_KERNEL_HEADERS_VERSION
 		bool "Linux 2.6 (manually specified version)"
 
@@ -60,19 +54,17 @@ config BR2_DEFAULT_KERNEL_VERSION
 	depends on BR2_KERNEL_HEADERS_VERSION
 	help
 	  Specify the version you want to use.
-	  E.G.: 2.6.38
+	  E.G.: 3.6.10
 
 config BR2_DEFAULT_KERNEL_HEADERS
 	string
-	default "2.6.37.6"	if BR2_KERNEL_HEADERS_2_6_37
-	default "2.6.38.8"	if BR2_KERNEL_HEADERS_2_6_38
-	default "2.6.39.4"	if BR2_KERNEL_HEADERS_2_6_39
-	default "3.0.55"	if BR2_KERNEL_HEADERS_3_0
+	default "3.0.56"	if BR2_KERNEL_HEADERS_3_0
 	default "3.1.10"	if BR2_KERNEL_HEADERS_3_1
 	default "3.2.35"	if BR2_KERNEL_HEADERS_3_2
 	default "3.3.8"		if BR2_KERNEL_HEADERS_3_3
-	default "3.4.22"	if BR2_KERNEL_HEADERS_3_4
+	default "3.4.23"	if BR2_KERNEL_HEADERS_3_4
 	default "3.5.7"		if BR2_KERNEL_HEADERS_3_5
-	default "3.6.9"		if BR2_KERNEL_HEADERS_3_6
+	default "3.6.10"	if BR2_KERNEL_HEADERS_3_6
+	default "3.7"		if BR2_KERNEL_HEADERS_3_7
 	default "2.6"		if BR2_KERNEL_HEADERS_SNAP
 	default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
diff --git a/toolchain/kernel-headers/linux-3.0.55-headers_install-fix-__packed-in-exported-kernel-head.patch b/toolchain/kernel-headers/linux-3.0.56-headers_install-fix-__packed-in-exported-kernel-head.patch
similarity index 100%
rename from toolchain/kernel-headers/linux-3.0.55-headers_install-fix-__packed-in-exported-kernel-head.patch
rename to toolchain/kernel-headers/linux-3.0.56-headers_install-fix-__packed-in-exported-kernel-head.patch
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] Large File Support
From: Samuel Martin @ 2012-12-11 17:24 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <000901cdd7a9$98377ab0$c8a67010$@co.uk>

Hi Ted,

2012/12/11 Ted Wood <ted@fgh.co.uk>:
> I hope this isn?t an inappropriate place for this...
Yes, you're in the right place ;)

> I?m  completely new to Embedded Linux, and am hoping to use Buildroot as the
> basis for a new project.
> I?m using the November 2012 release.
> I?m trying to build for an i586 using the internal toolchain. The make fails
> with the error ?It appears you have defined _FILE_OFFSET_BITS=64.
> Unfortunately uLibc was built without large file support?
Did you change some setting in the "Toolchain" Buildroot menu after
building the toolchain?
In that case a full rebuild is highly recommended (for further
information, see
http://buildroot.org/downloads/manual/manual.html#full-rebuild)

> I?m pretty sure I didn?t request that when I was doing menuconfig. Web
> search suggests that this problem has occurred elsewhere. There is an option
> to select Large File Support under toolchain, but toggling it makes no
> difference.

When does this happen? (i mean what is the package build that fails).
Could you pastebin the build log and your .config


BTW, don't hesitate to browse the doc, you may avoid some pitfalls:
http://buildroot.org/downloads/manual/manual.html


Regards,

-- 
Sam

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Thomas Petazzoni @ 2012-12-11 16:10 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAKvQZ_3sog-JnwOYiJWE6a8eCk-LcjSZ-txr0Z_AHTiC8NnRgw@mail.gmail.com>

Dear Willy Lambert,

On Tue, 11 Dec 2012 16:09:46 +0100, Willy Lambert wrote:

> I did this again from another machine
> (silvie at silvie-VirtualBox:~/buildroot-2012.11$ uname -a
> Linux silvie-VirtualBox 3.2.0-34-generic-pae #53-Ubuntu SMP Thu Nov 15
> 11:11:12 UTC 2012 i686 i686 i386 GNU/Linux)
> 
> In short :
> wget buildroot, tar -xf, make, a menuconfig pops, I exit and save
> config, make, wait a bit ... and it fails with the above error about
> large file system.
> 
> So I'm sure now that the default config has a problem with largefiles.
> I'm sorry I'm too new to investigate further. Should I open a bug
> ticket ?
> 
> I did not try other versions of gcc as proposed by Berns. But my gcc
> version is :
> ard at ard-host(10.0):/opt/buildroot/output/host/usr$
> ./x86_64-buildroot-linux-uclibc/bin/gcc --version
> gcc (Buildroot 2012.11-svn2-dirty) 4.6.3
> I wonder about the "svn2-dirty" tag.

Can you do:

	make clean
	rm .config
	make menuconfig / exit / save
	env > buildroot-fails.env
	make 2>&1 | tee buildroot-fails.log
	cp output/toolchain/uClibc-0.9.33.2/.config buildroot-fails.uClibc.config

And then put somewhere online (do *NOT* send them by e-mail on the
list, it will be too large) the buildroot-fails.env,
buildroot-fails.log and buildroot-fails.uClibc.config files.

I have just built the default Buildroot configuration on two Ubuntu
12.04 machines, with zero problem.

Thanks,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Willy Lambert @ 2012-12-11 15:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAKvQZ_2MzciYPnYw0rCv_pzhHTzOS+vn=sry7nubtHd+sha3cw@mail.gmail.com>

2012/12/10 Willy Lambert <lambert.willy@gmail.com>:
> 2012/12/10 Peter Korsgaard <jacmet@uclibc.org>:
>>>>>>> "Willy" == Willy Lambert <lambert.willy@gmail.com> writes:
>>
>> Hi,
>>
>>  >> I don't think so. I just did a:
>>  >>
>>  >> make at91sam9263ek_defconfig && make
>>  >>
>>  >> Without any problems. What exactly did you do?
>>
>>  Willy> make.
>>
>> With what configuration? 'make' with a clean tree will just run
>> menuconfig for you.
>>
>
> Yes, so I just quit it so it leaves the default config (which seems to
> have a problem with large file)
>
>>  Willy> just make after having DL latest stable version few days ago from a
>>  Willy> tgz. Doing a make menuconfig don't change anything, and as far as I
>>  Willy> can remember, menuconfig was telling us about this problem (something
>>  Willy> depending on largefile).
>>
>> Did you perhaps forget to run 'make clean' after changing something in
>> your toolchain configuration?
>
> I'm quite sure I did it (make clean + make distclean + rm ccache). But
> to be sure I'll retry from zero tomorrow.

I did this again from another machine
(silvie at silvie-VirtualBox:~/buildroot-2012.11$ uname -a
Linux silvie-VirtualBox 3.2.0-34-generic-pae #53-Ubuntu SMP Thu Nov 15
11:11:12 UTC 2012 i686 i686 i386 GNU/Linux)

In short :
wget buildroot, tar -xf, make, a menuconfig pops, I exit and save
config, make, wait a bit ... and it fails with the above error about
large file system.

So I'm sure now that the default config has a problem with largefiles.
I'm sorry I'm too new to investigate further. Should I open a bug
ticket ?

I did not try other versions of gcc as proposed by Berns. But my gcc
version is :
ard at ard-host(10.0):/opt/buildroot/output/host/usr$
./x86_64-buildroot-linux-uclibc/bin/gcc --version
gcc (Buildroot 2012.11-svn2-dirty) 4.6.3
I wonder about the "svn2-dirty" tag.


>
> I'm not blocked I already have my root image (with large file
> enabled), I'm currently setting up qemu to test it, our remark is just
> that default config seems dummy.
>
>>
>>  Willy> (and BTW, hi all, I'm new with buildroot).
>>
>> Welcome!
>>
>
> Thanks !
>
>> --
>> Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] (no subject)
From: Ted Wood @ 2012-12-11 14:28 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <NDBBKLDECLOIHFJKBINAAEGDFPAA.Berns@BEKA-Elektronik.de>


>Hi Ted,
>
>I had a simular problem with Ubuntu 12.04.
>When I chance the settings to gcc 4.5.x it works for me.
>
>Regards
>
>Rainer
>>-----Original Message-----
>>From: buildroot-bounces at busybox.net
[mailto:buildroot-bounces at busybox.net]On
>>Behalf Of Ted Wood
>>Sent: Tuesday, December 11, 2012 3:06 PM
>>To: buildroot at uclibc.org
>>Subject: [Buildroot] (no subject)
>>
>>
>>We're completely new to Embedded Linux, and were hoping to use Buildroot
as the basis for a new project.
>>
>>I'm using the November 2012 release.
>>
>>I'm trying to build for an i586 using the internal toolchain. The make
fails with the error "It appears you have defined _FILE_OFFSET_BITS=64.
>>Unfortunately uLibc was built without large file support"
>>
>>I'm pretty sure I didn't request that when I was doing menuconfig. Web
search suggests that this problem has occurred elsewhere.
>>
>>
>>Anything you can suggest?


Thanks Rainer, that seems to have fixed it - I'm using Ubuntu 12.04 too.

Apologies for double posting and accidental work related stuff in one of
them.

T

^ permalink raw reply

* [Buildroot] (no subject)
From: Berns @ 2012-12-11 14:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <000301cdd7a8$adeab490$09c01db0$@co.uk>

Hi Ted,

I had a simular problem with Ubuntu 12.04.
When I chance the settings to gcc 4.5.x it works for me.

Regards

Rainer
-----Original Message-----
From: buildroot-bounces@busybox.net [mailto:buildroot-bounces at busybox.net]On
Behalf Of Ted Wood
Sent: Tuesday, December 11, 2012 3:06 PM
To: buildroot at uclibc.org
Subject: [Buildroot] (no subject)


We're completely new to Embedded Linux, and were hoping to use Buildroot as
the basis for a new project.

I'm using the November 2012 release.

I'm trying to build for an i586 using the internal toolchain. The make fails
with the error "It appears you have defined _FILE_OFFSET_BITS=64.
Unfortunately uLibc was built without large file support"

I'm pretty sure I didn't request that when I was doing menuconfig. Web
search suggests that this problem has occurred elsewhere.


Anything you can suggest?

Cheers
Ted



Ted Wood MSc CEng
Chief Engineer



FGH Controls Limited
Blackhorse Road
Letchworth Garden City, Herts
SG6 1HN
UK

Telephone: +44 (0)1462 686677 Ext. 7112
Fax:       +44 (0)1462 671860
web site:  www.fgh.co.uk

Registered Office:
Blackhorse Road, Letchworth Garden City, SG6 1HN, UK

Registered in England No. 1298491.  VAT Reg No. GB 563 4971 15

^ permalink raw reply

* [Buildroot] Large File Support
From: Ted Wood @ 2012-12-11 14:12 UTC (permalink / raw)
  To: buildroot

I hope this isn't an inappropriate place for this...

 

I'm  completely new to Embedded Linux, and am hoping to use Buildroot as the
basis for a new project.

 

I'm using the November 2012 release.

 

I'm trying to build for an i586 using the internal toolchain. The make fails
with the error "It appears you have defined _FILE_OFFSET_BITS=64.
Unfortunately uLibc was built without large file support"

 

I'm pretty sure I didn't request that when I was doing menuconfig. Web
search suggests that this problem has occurred elsewhere. There is an option
to select Large File Support under toolchain, but toggling it makes no
difference.

 

Anybody got any suggestions? 

 

T.

 

 

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

^ permalink raw reply

* [Buildroot] (no subject)
From: Ted Wood @ 2012-12-11 14:06 UTC (permalink / raw)
  To: buildroot

We're completely new to Embedded Linux, and were hoping to use Buildroot as
the basis for a new project.

 

I'm using the November 2012 release.

 

I'm trying to build for an i586 using the internal toolchain. The make fails
with the error "It appears you have defined _FILE_OFFSET_BITS=64.
Unfortunately uLibc was built without large file support"

 

I'm pretty sure I didn't request that when I was doing menuconfig. Web
search suggests that this problem has occurred elsewhere.

 

 

Anything you can suggest?

 

Cheers

Ted

 

 

 

Ted Wood MSc CEng

Chief Engineer

 

cid:bc29d615-e5df-4082-baad-917a15f44dde

 

FGH Controls Limited

Blackhorse Road

Letchworth Garden City, Herts

SG6 1HN

UK

 

Telephone: +44 (0)1462 686677 Ext. 7112

Fax:       +44 (0)1462 671860

web site:   <http://www.fgh.co.uk/> www.fgh.co.uk

 

Registered Office:

Blackhorse Road, Letchworth Garden City, SG6 1HN, UK

 

Registered in England No. 1298491.  VAT Reg No. GB 563 4971 15

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121211/d0f1cfe1/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image001.jpg
Type: image/jpeg
Size: 4500 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121211/d0f1cfe1/attachment-0001.jpg>

^ permalink raw reply

* [Buildroot] [PATCH] util-linux: fix typo in configuration option label
From: Thomas Petazzoni @ 2012-12-11 14:04 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/util-linux/Config.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in
index 43a8444..5eab956 100644
--- a/package/util-linux/Config.in
+++ b/package/util-linux/Config.in
@@ -62,7 +62,7 @@ config BR2_PACKAGE_UTIL_LINUX_RENAME
 	bool "build \"rename\""
 
 config BR2_PACKAGE_UTIL_LINUX_SCHEDUTILS
-	bool "build \"chrt, ionice, teskset\""
+	bool "build \"chrt, ionice, taskset\""
 
 config BR2_PACKAGE_UTIL_LINUX_WALL
 	bool "build \"wall\""
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH] libnss: fix build failures
From: Gustavo Zacarias @ 2012-12-11 13:31 UTC (permalink / raw)
  To: buildroot

Such as
http://autobuild.buildroot.net/results/2ca1d135269a67201e6b4d995ce8fbe94db1ed3f

The mozilla build system passes all of the different ways of CFLAGS
(OPTIMIZER, XCFLAGS, OS_CFLAGS) even when building host tools
(nsintall).
The best way around this without patching libnss is just building the
host tools first without any CFLAGS and then going on with the rest.

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

diff --git a/package/libnss/libnss.mk b/package/libnss/libnss.mk
index 84fc149..96faf37 100644
--- a/package/libnss/libnss.mk
+++ b/package/libnss/libnss.mk
@@ -17,7 +17,6 @@ LIBNSS_BUILD_VARS = MOZILLA_CLIENT=1 \
 		NSPR_LIB_DIR=$(STAGING_DIR)/usr/lib \
 		BUILD_OPT=1 \
 		NS_USE_GCC=1 \
-		OPTIMIZER="$(TARGET_CFLAGS)" \
 		NSS_USE_SYSTEM_SQLITE=1 \
 		NSS_ENABLE_ECC=1 \
 		NATIVE_CC="$(HOSTCC)" \
@@ -34,11 +33,16 @@ endif
 
 
 define LIBNSS_BUILD_CMDS
-	$(MAKE1) -C $(@D)/$(LIBNSS_SUBDIR)/nss build_coreconf build_dbm all \
+	$(MAKE1) -C $(@D)/$(LIBNSS_SUBDIR)/nss build_coreconf \
 			SOURCE_MD_DIR=$(@D)/$(LIBNSS_DISTDIR) \
 			DIST=$(@D)/$(LIBNSS_DISTDIR) \
 			CHECKLOC= \
 			$(LIBNSS_BUILD_VARS)
+	$(MAKE1) -C $(@D)/$(LIBNSS_SUBDIR)/nss build_dbm all \
+			SOURCE_MD_DIR=$(@D)/$(LIBNSS_DISTDIR) \
+			DIST=$(@D)/$(LIBNSS_DISTDIR) \
+			CHECKLOC= \
+			$(LIBNSS_BUILD_VARS) OPTIMIZER="$(TARGET_CFLAGS)"
 endef
 
 define LIBNSS_INSTALL_STAGING_CMDS
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] [PATCH 50/52] package/dtc: new package
From: Yann E. MORIN @ 2012-12-11 13:07 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAAXf6LW9EHjFzE9fkhHtdizS36p7cthfmbeVr6F3_EjSWCO1Tg@mail.gmail.com>

Thomas, All,

On Tuesday 11 December 2012 13:38:03 Thomas De Schampheleire wrote:
> On Tue, Dec 11, 2012 at 12:45 AM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> > dtc is the Device Tree Compiler, and manipulates device trees.
> >
> > Cc: Arnout Vandecappelle <arnout@mind.be>
> > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

> Are you aware of the following code in linux/linux.mk ?
> 
> define LINUX_INSTALL_HOST_TOOLS
> # Installing dtc (device tree compiler) as host tool, if selected
> if grep -q "CONFIG_DTC=y" $(@D)/.config; then \
> $(INSTALL) -D -m 0755 $(@D)/scripts/dtc/dtc $(HOST_DIR)/usr/bin/dtc ; \
> fi
> endef

I was vaguely aware of it, yes, although I did not look at it, for a
few reasons:

  - the DTC in the kernel is not at par with the DTC in the package
    (they diverge a bit, and the DTC in the kernel was recently
    resynce, cset #cd29672).

  - for QEMU, I really needed the libfdt library, not the tools; but
    the dtc in the Linux kernel does not build the libfdt library.

  - as Arnout suggested adding the tools on the target too, I deemed
    preferable to use the tools coming with the library rather than
    risk ABI incompatibility between the ones from dtc and the .ones
    from the kernel

  - the one from the kernel is a host tool, used to build the kernel
    itself, while the ones from dtc are target tools, that are supposed
    to be used to build DTCs for use by QEMU. Thus they serve two
    different purposes, and there is no strong requirement that they
    be compatible.

It's also a reason why I did not add $(eval $(host-generic-package))
in the dtc package.

And a fifth reason (the most important one, to me!):
  - I have had a patch accepted in dtc! ;-)

> In this case, the dtc shipped with the linux kernel is simply used.
> This was considered to be sufficient for most cases.

Probably, yes.

> If this is not true and there really is a need for the separate dtc
> package, I think we should link both together in some way, either by a
> comment, or by a mutually exclusive configuration, or ...

OK for a comment for now.

What could probbably be done, later, is to make the dtc package a host
package too, and have the Linux kernel depends on, and use it, instead
of its internal copy (that can be lagging behind).

Does that sound reasonable to you?

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +0/33 662376056 | Software  Designer | \ / CAMPAIGN     |   ^                |
| --==< O_o >==-- '------------.-------:  X  AGAINST      |  /e\  There is no  |
| http://ymorin.is-a-geek.org/ | (*_*) | / \ HTML MAIL    |  """  conspiracy.  |
'------------------------------'-------'------------------'--------------------'

^ permalink raw reply

* [Buildroot] [PATCH 50/52] package/dtc: new package
From: Thomas De Schampheleire @ 2012-12-11 12:38 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355183112-10735-51-git-send-email-yann.morin.1998@free.fr>

Hi Yann,

On Tue, Dec 11, 2012 at 12:45 AM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> dtc is the Device Tree Compiler, and manipulates device trees.
>
> Cc: Arnout Vandecappelle <arnout@mind.be>
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
>
> ---
> Although Arnout suggested to move it out of the libraries sub-menu,
> I kept it there, as by default, only the library is installed, like
> it is done for, eg., libcurl.
> ---
>  package/Config.in                          |    1 +
>  package/dtc/Config.in                      |    9 +++++++
>  package/dtc/dtc-extra_cflags.patch         |   27 ++++++++++++++++++++++
>  package/dtc/dtc-separate-lib-install.patch |   28 +++++++++++++++++++++++
>  package/dtc/dtc.mk                         |   34 ++++++++++++++++++++++++++++
>  5 files changed, 99 insertions(+), 0 deletions(-)
>  create mode 100644 package/dtc/Config.in
>  create mode 100644 package/dtc/dtc-extra_cflags.patch
>  create mode 100644 package/dtc/dtc-separate-lib-install.patch
>  create mode 100644 package/dtc/dtc.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index a93aed2..ef7f44d 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -417,6 +417,7 @@ endmenu
>
>  menu "Hardware handling"
>  source "package/ccid/Config.in"
> +source "package/dtc/Config.in"
>  source "package/lcdapi/Config.in"
>  source "package/libaio/Config.in"
>  source "package/libraw1394/Config.in"
> diff --git a/package/dtc/Config.in b/package/dtc/Config.in
> new file mode 100644
> index 0000000..96225e3
> --- /dev/null
> +++ b/package/dtc/Config.in
> @@ -0,0 +1,9 @@
> +config BR2_PACKAGE_DTC
> +       bool "dtc"
> +       help
> +         The Device Tree Compiler, dtc, takes as input a device-tree in
> +         a given format and outputs a device-tree in another format.
> +
> +         Note that only the library is installed for now.
> +
> +         http://git.jdl.com/gitweb/?p=dtc.git  (no home page)
> diff --git a/package/dtc/dtc-extra_cflags.patch b/package/dtc/dtc-extra_cflags.patch
> new file mode 100644
> index 0000000..9d1882b
> --- /dev/null
> +++ b/package/dtc/dtc-extra_cflags.patch
> @@ -0,0 +1,27 @@
> +Makefile: append the CFLAGS to existing ones
> +
> +Allow the user to pass custom CFLAGS (eg. optimisation flags).
> +
> +Do not use EXTRA_CFLAGS, append to existing CFLAGS with +=  (Arnout)
> +
> +Cc: Arnout Vandecappelle <arnout@mind.be>
> +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> +
> +---
> +Patch not sent upstream.
> +
> +Although not specific to buildroot, I am not sure this is the best
> +way to handle user-supplied CFLAGS.
> +
> +diff -durN dtc-e4b497f367a3b2ae99cc52089a14a221b13a76ef.orig/Makefile dtc-e4b497f367a3b2ae99cc52089a14a221b13a76ef/Makefile
> +--- dtc-e4b497f367a3b2ae99cc52089a14a221b13a76ef.orig/Makefile 2012-10-22 22:02:47.541240846 +0200
> ++++ dtc-e4b497f367a3b2ae99cc52089a14a221b13a76ef/Makefile      2012-10-22 22:03:21.151047833 +0200
> +@@ -18,7 +18,7 @@
> + CPPFLAGS = -I libfdt -I .
> + WARNINGS = -Werror -Wall -Wpointer-arith -Wcast-qual -Wnested-externs \
> +       -Wstrict-prototypes -Wmissing-prototypes -Wredundant-decls
> +-CFLAGS = -g -Os -fPIC -Werror $(WARNINGS)
> ++CFLAGS += -g -Os -fPIC -Werror $(WARNINGS)
> +
> + BISON = bison
> + LEX = flex
> diff --git a/package/dtc/dtc-separate-lib-install.patch b/package/dtc/dtc-separate-lib-install.patch
> new file mode 100644
> index 0000000..c86d587
> --- /dev/null
> +++ b/package/dtc/dtc-separate-lib-install.patch
> @@ -0,0 +1,28 @@
> +Makefile: add a rule to only install libfdt
> +
> +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> +
> +---
> +Patch not sent upstream.
> +
> +It's really specific to buildroot, and is probably not
> +good (aka generic) enough to be pushed upstream.
> +
> +diff --git a/Makefile b/Makefile
> +index 1169e6c..39e7190 100644
> +--- a/Makefile
> ++++ b/Makefile
> +@@ -160,10 +160,12 @@ endif
> + # intermediate target and building them again "for real"
> + .SECONDARY: $(DTC_GEN_SRCS) $(CONVERT_GEN_SRCS)
> +
> +-install: all $(SCRIPTS)
> ++install: all $(SCRIPTS) libfdt_install
> +       @$(VECHO) INSTALL
> +       $(INSTALL) -d $(DESTDIR)$(BINDIR)
> +       $(INSTALL) $(BIN) $(SCRIPTS) $(DESTDIR)$(BINDIR)
> ++
> ++libfdt_install: libfdt
> +       $(INSTALL) -d $(DESTDIR)$(LIBDIR)
> +       $(INSTALL) $(LIBFDT_lib) $(DESTDIR)$(LIBDIR)
> +       ln -sf $(notdir $(LIBFDT_lib)) $(DESTDIR)$(LIBDIR)/$(LIBFDT_soname)
> diff --git a/package/dtc/dtc.mk b/package/dtc/dtc.mk
> new file mode 100644
> index 0000000..a0e1e35
> --- /dev/null
> +++ b/package/dtc/dtc.mk
> @@ -0,0 +1,34 @@
> +#############################################################
> +#
> +# dtc
> +#
> +#############################################################
> +
> +DTC_VERSION         = e4b497f367a3b2ae99cc52089a14a221b13a76ef
> +DTC_SITE            = git://git.jdl.com/software/dtc.git
> +DTC_LICENSE         = GPLv2+/BSD-2c
> +DTC_LICENSE_FILES   = README.license GPL
> +# Note: the dual-license only applies to the library.
> +#       The DT compiler (dtc) is GPLv2+, but we do not install it.
> +DTC_INSTALL_STAGING = YES
> +
> +define DTC_BUILD_CMDS
> +       $(TARGET_CONFIGURE_OPTS)    \
> +       CFLAGS="$(TARGET_CFLAGS)"   \
> +       $(MAKE) -C $(@D) PREFIX=/usr libfdt
> +endef
> +
> +# libfdt_install is our own install rule added by our patch
> +define DTC_INSTALL_STAGING_CMDS
> +       $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) PREFIX=/usr libfdt_install
> +endef
> +
> +define DTC_INSTALL_TARGET_CMDS
> +       $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) PREFIX=/usr libfdt_install
> +endef
> +
> +define DTC_CLEAN_CMDS
> +       $(MAKE) -C $(@D) libfdt_clean
> +endef
> +
> +$(eval $(generic-package))
> --
> 1.7.2.5

Are you aware of the following code in linux/linux.mk ?

define LINUX_INSTALL_HOST_TOOLS
# Installing dtc (device tree compiler) as host tool, if selected
if grep -q "CONFIG_DTC=y" $(@D)/.config; then \
$(INSTALL) -D -m 0755 $(@D)/scripts/dtc/dtc $(HOST_DIR)/usr/bin/dtc ; \
fi
endef

In this case, the dtc shipped with the linux kernel is simply used.
This was considered to be sufficient for most cases.

If this is not true and there really is a need for the separate dtc
package, I think we should link both together in some way, either by a
comment, or by a mutually exclusive configuration, or ...

Best regards,
Thomas

^ permalink raw reply

* [Buildroot] [PATCH v2] host-libxml2: enable debug for mesa3d
From: Arnout Vandecappelle @ 2012-12-11 11:10 UTC (permalink / raw)
  To: buildroot

The API generation script in mesa3d requires libxml2 to be built with
debug, because it uses the lsCountNode function which is only available
in debug mode.

Note that this is the second "temporary" hack to make mesa3d work.
See http://lists.busybox.net/pipermail/buildroot/2012-November/061936.html
for possible more fundamental solutions.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
I'm very surprised there are not autobuilder failures for mesa3d, since
this fails consistently for me on all configs that have python enabled.

v2: Added reference to mesa3d discussion in commit message.


 package/libxml2/libxml2.mk |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/package/libxml2/libxml2.mk b/package/libxml2/libxml2.mk
index fde3735..0c84652 100644
--- a/package/libxml2/libxml2.mk
+++ b/package/libxml2/libxml2.mk
@@ -26,7 +26,12 @@ LIBXML2_POST_INSTALL_STAGING_HOOKS += LIBXML2_STAGING_LIBXML2_CONFIG_FIXUP
 
 HOST_LIBXML2_DEPENDENCIES = host-pkgconf
 
+# mesa3d uses functions that are only available with debug
+ifeq ($(BR2_PACKAGE_MESA3D),y)
+HOST_LIBXML2_CONF_OPT = --with-debug
+else
 HOST_LIBXML2_CONF_OPT = --without-debug
+endif
 
 ifeq ($(BR2_PACKAGE_HOST_LIBXML2_PYTHON),y)
 HOST_LIBXML2_DEPENDENCIES += host-python
-- 
tg: (c93ba9d..) t/host-libxml2-for-mesa (depends on: p/boost)

^ permalink raw reply related

* [Buildroot] [PATCH] host-libxml2: enable debug for mesa3d
From: Arnout Vandecappelle @ 2012-12-11 11:04 UTC (permalink / raw)
  To: buildroot

The API generation script in mesa3d requires libxml2 to be built with
debug, because it uses the lsCountNode function which is only available
in debug mode.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
I'm very surprised there are not autobuilder failures for mesa3d, since
this fails consistently for me on all configs that have python enabled.

 package/libxml2/libxml2.mk |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/package/libxml2/libxml2.mk b/package/libxml2/libxml2.mk
index fde3735..0c84652 100644
--- a/package/libxml2/libxml2.mk
+++ b/package/libxml2/libxml2.mk
@@ -26,7 +26,12 @@ LIBXML2_POST_INSTALL_STAGING_HOOKS += LIBXML2_STAGING_LIBXML2_CONFIG_FIXUP
 
 HOST_LIBXML2_DEPENDENCIES = host-pkgconf
 
+# mesa3d uses functions that are only available with debug
+ifeq ($(BR2_PACKAGE_MESA3D),y)
+HOST_LIBXML2_CONF_OPT = --with-debug
+else
 HOST_LIBXML2_CONF_OPT = --without-debug
+endif
 
 ifeq ($(BR2_PACKAGE_HOST_LIBXML2_PYTHON),y)
 HOST_LIBXML2_DEPENDENCIES += host-python
-- 
tg: (c93ba9d..) t/host-libxml2-for-mesa (depends on: p/boost)

^ permalink raw reply related

* [Buildroot] [PATCH] ortp: requires threads
From: Gustavo Zacarias @ 2012-12-11 10:39 UTC (permalink / raw)
  To: buildroot

Fixes
http://autobuild.buildroot.net/results/4252c2f0f85c27af0d814d8c9a4a5b4d74f4dac1/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/linphone/Config.in      |    5 +++--
 package/mediastreamer/Config.in |    5 +++--
 package/ortp/Config.in          |    4 ++++
 3 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/package/linphone/Config.in b/package/linphone/Config.in
index 1a6cfdb..a2866a6 100644
--- a/package/linphone/Config.in
+++ b/package/linphone/Config.in
@@ -5,6 +5,7 @@ config BR2_PACKAGE_LINPHONE
 	select BR2_PACKAGE_ORTP
 	select BR2_PACKAGE_MEDIASTREAMER
 	depends on BR2_INSTALL_LIBSTDCPP # mediastreamer
+	depends on BR2_TOOLCHAIN_HAS_THREADS # ortp
 	help
 	  Linphone is an internet phone or Voice Over IP phone (VoIP).
 
@@ -23,5 +24,5 @@ config BR2_PACKAGE_LINPHONE
 
 	  http://www.linphone.org/
 
-comment "linphone requires a toolchain with C++ support enabled"
-	depends on !BR2_INSTALL_LIBSTDCPP
+comment "linphone requires a toolchain with threads and C++ support enabled"
+	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/mediastreamer/Config.in b/package/mediastreamer/Config.in
index 2e1af93..477d4fa 100644
--- a/package/mediastreamer/Config.in
+++ b/package/mediastreamer/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_MEDIASTREAMER
 	bool "mediastreamer"
 	select BR2_PACKAGE_ORTP
 	depends on BR2_INSTALL_LIBSTDCPP # until fixed
+	depends on BR2_TOOLCHAIN_HAS_THREADS # ortp
 	help
 	  Mediastreamer is a powerful and lightweighted streaming
 	  engine specialized for voice/video telephony applications.
@@ -12,5 +13,5 @@ config BR2_PACKAGE_MEDIASTREAMER
 
 	  http://www.linphone.org/eng/documentation/dev/mediastreamer2.html
 
-comment "mediastreamer requires a toolchain with C++ support enabled"
-	depends on !BR2_INSTALL_LIBSTDCPP
+comment "mediastreamer requires a toolchain with threads and C++ support"
+	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/ortp/Config.in b/package/ortp/Config.in
index 39d9c9a..ab9cab4 100644
--- a/package/ortp/Config.in
+++ b/package/ortp/Config.in
@@ -1,6 +1,10 @@
 config BR2_PACKAGE_ORTP
 	bool "oRTP"
+	depends on BR2_TOOLCHAIN_HAS_THREADS
 	help
 	  oRTP, a Real-time Transport Protocol (RTP,RFC3550) library
 
 	  http://www.linphone.org/eng/documentation/dev/ortp.html
+
+comment "ortp requires a toolchain with threads support"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] buildroot 2012.11 large file support
From: Berns @ 2012-12-11  9:30 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <NDBBKLDECLOIHFJKBINACEFAFPAA.Berns@BEKA-Elektronik.de>

I changed from gcc 4.6.X to gcc 4.5.X and now it works.
Maybe it's an isue with ubuntu 12.04 and gcc 4.6.X.


-----Original Message-----
From: buildroot-bounces@busybox.net
[mailto:buildroot-bounces at busybox.net]On Behalf Of Berns
Sent: Monday, December 10, 2012 1:36 PM
To: buildroot at busybox.net
Subject: [Buildroot] buildroot 2012.11 large file support


Hi

i have tried to build at91sam9263ek_defconfig (without any modification)
with the latest release 2012.11 on a 32bit Ubuntu12.04 machine.
The build of the toolchain fails with :
.../buildroot-2012.11/output/toolchain/uClibc_dev//usr/include/features.h:21
9:5: Fehler: #error It appears you have defined _FILE_OFFSET_BITS=64.
Unfortunately, uClibc was built without large file support enabled.

Large file support isn't select and i have also checked it with make
uclibc-menuconfig for uclibc.
The same problem happend with beaglebone_defconfig.

After "make clean" and selecting "large file support" the build process
works.

This problem doesn't happend with release 2012.08.

Has anybody a hint for me ?

Thanks

Rainer

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

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Thomas Petazzoni @ 2012-12-11  9:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAKvQZ_2ghfJ-k2XaNEH4cP7jsr--pUjV4TNGXCY-T3aZCm2Vig@mail.gmail.com>

Dear Willy Lambert,

On Tue, 11 Dec 2012 09:43:48 +0100, Willy Lambert wrote:

> But for time being I'm just trying to compile a "default" buildroot
> and run in into qemu.
> (btw I have difficulties to put my RFS, in tgz format (cause it's the
> default) into a .img file, is there any Buildroot hints for this, or
> should I switch to other "RFS  image output format")

Please read board/qemu/x86_64/readme.txt or board/qemu/x86/readme.txt
and use the corresponding qemu_x86_64_defconfig and qemu_x86_defconfig
default configuration as starting points.

Those configuration are known working for Qemu, and the readme.txt file
explain how to start them in Qemu.

Best regards,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Willy Lambert @ 2012-12-11  8:43 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <87lid5oyr5.fsf@dell.be.48ers.dk>

2012/12/11 Peter Korsgaard <jacmet@uclibc.org>:
>>>>>> "Willy" == Willy Lambert <lambert.willy@gmail.com> writes:
>
>  Willy> Yes, so I just quit it so it leaves the default config (which
>  Willy> seems to have a problem with large file)
>  >>
>  >> Ok, that also works here:
>  >>
>  >> yes '' | make oldconfig
>  >> make
>
> Does that work for you?
>
>  >> Notice that we have a bunch of preconfigured qemu defconfigs (look in
>  >> configs/)
>  >>
>
>  Willy> thanks for this tips I overlooked that. I'm on a x86 atom so
>  Willy> there is little config to preset.
>
> Is your build machine an atom? If so, beware that your build times are
> going to be quite long. Don't you have access to any faster machines?
>

Sorry, I was not clear. My *target* is an atom N450 on a PCM-3362
Advantech board :
http://www.advantech.com/products/PCM-3362/mod_2B69DA4C-D506-4AEA-8CC3-F6E58E3CBC87.aspx
If by chance anyone here has worked on this...

My build machine is a quad i5, a bit overclocked, the compilation time
is reasonable.

But for time being I'm just trying to compile a "default" buildroot
and run in into qemu.
(btw I have difficulties to put my RFS, in tgz format (cause it's the
default) into a .img file, is there any Buildroot hints for this, or
should I switch to other "RFS  image output format")

> --
> Bye, Peter Korsgaard

^ permalink raw reply

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


Hello,

On 2012-12-10, 195 random build tests have been done and
submitted on autobuild.buildroot.net.
 106 builds have been successful
 89 builds have failed

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

Build e2dc47cbeb303a36d0b64fde3eb9ef6f7811f5ae
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-10 00:16:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=941963d258cac48f06c1be49169d81645c5e505c
End of log     : http://autobuild.buildroot.net/results/e2dc47cbeb303a36d0b64fde3eb9ef6f7811f5ae/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e2dc47cbeb303a36d0b64fde3eb9ef6f7811f5ae/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e2dc47cbeb303a36d0b64fde3eb9ef6f7811f5ae/config
Defconfig      : http://autobuild.buildroot.net/results/e2dc47cbeb303a36d0b64fde3eb9ef6f7811f5ae/defconfig

Build af220853987e2e23c1f33bdadb50c389f649f4c6
==============================================

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

Build 28c60916b7acc9e6b39cbb5575a473e784155196
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 00:22:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/28c60916b7acc9e6b39cbb5575a473e784155196/build-end.log
Complete log   : http://autobuild.buildroot.net/results/28c60916b7acc9e6b39cbb5575a473e784155196/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/28c60916b7acc9e6b39cbb5575a473e784155196/config
Defconfig      : http://autobuild.buildroot.net/results/28c60916b7acc9e6b39cbb5575a473e784155196/defconfig

Build 60c9d2bdc6f1c6f0a14c3eac6d1546f8cb66d6fb
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 00:42:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/60c9d2bdc6f1c6f0a14c3eac6d1546f8cb66d6fb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/60c9d2bdc6f1c6f0a14c3eac6d1546f8cb66d6fb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/60c9d2bdc6f1c6f0a14c3eac6d1546f8cb66d6fb/config
Defconfig      : http://autobuild.buildroot.net/results/60c9d2bdc6f1c6f0a14c3eac6d1546f8cb66d6fb/defconfig

Build ac9aad84feafdbd30cfda4160d38ca3112c9aeb7
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-10 00:54:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/ac9aad84feafdbd30cfda4160d38ca3112c9aeb7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ac9aad84feafdbd30cfda4160d38ca3112c9aeb7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ac9aad84feafdbd30cfda4160d38ca3112c9aeb7/config
Defconfig      : http://autobuild.buildroot.net/results/ac9aad84feafdbd30cfda4160d38ca3112c9aeb7/defconfig

Build 1750f8f68d55a78958386c4e127da732ac174ac8
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 00:57:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/1750f8f68d55a78958386c4e127da732ac174ac8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1750f8f68d55a78958386c4e127da732ac174ac8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1750f8f68d55a78958386c4e127da732ac174ac8/config
Defconfig      : http://autobuild.buildroot.net/results/1750f8f68d55a78958386c4e127da732ac174ac8/defconfig

Build 6d7e387200a784288adae194935e5fcd26898700
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 01:06:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/6d7e387200a784288adae194935e5fcd26898700/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6d7e387200a784288adae194935e5fcd26898700/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6d7e387200a784288adae194935e5fcd26898700/config
Defconfig      : http://autobuild.buildroot.net/results/6d7e387200a784288adae194935e5fcd26898700/defconfig

Build 4f17a1a4d25084e87d49d44a4bec9a34d0df9b42
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 01:08:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/4f17a1a4d25084e87d49d44a4bec9a34d0df9b42/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4f17a1a4d25084e87d49d44a4bec9a34d0df9b42/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4f17a1a4d25084e87d49d44a4bec9a34d0df9b42/config
Defconfig      : http://autobuild.buildroot.net/results/4f17a1a4d25084e87d49d44a4bec9a34d0df9b42/defconfig

Build 289c3177913105f63894fc5b4e7baeea344cfaaf
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-10 01:26:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/289c3177913105f63894fc5b4e7baeea344cfaaf/build-end.log
Complete log   : http://autobuild.buildroot.net/results/289c3177913105f63894fc5b4e7baeea344cfaaf/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/289c3177913105f63894fc5b4e7baeea344cfaaf/config
Defconfig      : http://autobuild.buildroot.net/results/289c3177913105f63894fc5b4e7baeea344cfaaf/defconfig

Build 56f0264dbe9a4404dd085b5f13736d00256e911d
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 01:33:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/56f0264dbe9a4404dd085b5f13736d00256e911d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/56f0264dbe9a4404dd085b5f13736d00256e911d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/56f0264dbe9a4404dd085b5f13736d00256e911d/config
Defconfig      : http://autobuild.buildroot.net/results/56f0264dbe9a4404dd085b5f13736d00256e911d/defconfig

Build 146a7b20fd58b4829db729394de8e0383164849a
==============================================

Status         : NOK
Failure reason : madplay-0.15.2b
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 01:47:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/146a7b20fd58b4829db729394de8e0383164849a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/146a7b20fd58b4829db729394de8e0383164849a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/146a7b20fd58b4829db729394de8e0383164849a/config
Defconfig      : http://autobuild.buildroot.net/results/146a7b20fd58b4829db729394de8e0383164849a/defconfig

Build 60f38c2a584c0973d6aa3dabd3c6a4d3c46159eb
==============================================

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

Build 44bc7e8b0a25ecfb096181d99ac4a68dd3894145
==============================================

Status         : NOK
Failure reason : qt-4.8.3
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 02:23:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/44bc7e8b0a25ecfb096181d99ac4a68dd3894145/build-end.log
Complete log   : http://autobuild.buildroot.net/results/44bc7e8b0a25ecfb096181d99ac4a68dd3894145/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/44bc7e8b0a25ecfb096181d99ac4a68dd3894145/config
Defconfig      : http://autobuild.buildroot.net/results/44bc7e8b0a25ecfb096181d99ac4a68dd3894145/defconfig

Build 6cef4a94568cdf4d89090102092451e7b184cdb4
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-10 02:35:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/6cef4a94568cdf4d89090102092451e7b184cdb4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6cef4a94568cdf4d89090102092451e7b184cdb4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6cef4a94568cdf4d89090102092451e7b184cdb4/config
Defconfig      : http://autobuild.buildroot.net/results/6cef4a94568cdf4d89090102092451e7b184cdb4/defconfig

Build 19a9c528e508a63884a3d80c1529ab599282b68e
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-10 03:11:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/19a9c528e508a63884a3d80c1529ab599282b68e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/19a9c528e508a63884a3d80c1529ab599282b68e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/19a9c528e508a63884a3d80c1529ab599282b68e/config
Defconfig      : http://autobuild.buildroot.net/results/19a9c528e508a63884a3d80c1529ab599282b68e/defconfig

Build 7e8c1cd5890c3f5e4a1f8305d8b39c41153b5337
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-10 03:12:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/7e8c1cd5890c3f5e4a1f8305d8b39c41153b5337/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7e8c1cd5890c3f5e4a1f8305d8b39c41153b5337/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7e8c1cd5890c3f5e4a1f8305d8b39c41153b5337/config
Defconfig      : http://autobuild.buildroot.net/results/7e8c1cd5890c3f5e4a1f8305d8b39c41153b5337/defconfig

Build a12145c0b4adc29d90bb1e02caddeae0a10cff06
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 03:20:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/a12145c0b4adc29d90bb1e02caddeae0a10cff06/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a12145c0b4adc29d90bb1e02caddeae0a10cff06/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a12145c0b4adc29d90bb1e02caddeae0a10cff06/config
Defconfig      : http://autobuild.buildroot.net/results/a12145c0b4adc29d90bb1e02caddeae0a10cff06/defconfig

Build d47473ac1159f88be5a609b4163e50df97474488
==============================================

Status         : NOK
Failure reason : matchbox-desktop-0.9.1
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 03:32:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/d47473ac1159f88be5a609b4163e50df97474488/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d47473ac1159f88be5a609b4163e50df97474488/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d47473ac1159f88be5a609b4163e50df97474488/config
Defconfig      : http://autobuild.buildroot.net/results/d47473ac1159f88be5a609b4163e50df97474488/defconfig

Build 369be6a1f3dd559266eea44932ea69a043d3b062
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-10 03:41:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/369be6a1f3dd559266eea44932ea69a043d3b062/build-end.log
Complete log   : http://autobuild.buildroot.net/results/369be6a1f3dd559266eea44932ea69a043d3b062/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/369be6a1f3dd559266eea44932ea69a043d3b062/config
Defconfig      : http://autobuild.buildroot.net/results/369be6a1f3dd559266eea44932ea69a043d3b062/defconfig

Build ab2fe55be8fbf26b0f5476b521e91fe5592ab53a
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 04:10:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/ab2fe55be8fbf26b0f5476b521e91fe5592ab53a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ab2fe55be8fbf26b0f5476b521e91fe5592ab53a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ab2fe55be8fbf26b0f5476b521e91fe5592ab53a/config
Defconfig      : http://autobuild.buildroot.net/results/ab2fe55be8fbf26b0f5476b521e91fe5592ab53a/defconfig

Build 8c2d9c4d98fad9b0e9b21b41bb0ab4b3d8ee3ecc
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-10 04:27:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/8c2d9c4d98fad9b0e9b21b41bb0ab4b3d8ee3ecc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8c2d9c4d98fad9b0e9b21b41bb0ab4b3d8ee3ecc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8c2d9c4d98fad9b0e9b21b41bb0ab4b3d8ee3ecc/config
Defconfig      : http://autobuild.buildroot.net/results/8c2d9c4d98fad9b0e9b21b41bb0ab4b3d8ee3ecc/defconfig

Build 73dbf68af7002b5fa0195bfcc1f15010fad231f9
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 04:38:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/73dbf68af7002b5fa0195bfcc1f15010fad231f9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/73dbf68af7002b5fa0195bfcc1f15010fad231f9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/73dbf68af7002b5fa0195bfcc1f15010fad231f9/config
Defconfig      : http://autobuild.buildroot.net/results/73dbf68af7002b5fa0195bfcc1f15010fad231f9/defconfig

Build 5785dd7e0949bf65a6472ae4f2ae37dbaab8bb75
==============================================

Status         : NOK
Failure reason : imagemagick-6.7.8-8
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 04:57:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/5785dd7e0949bf65a6472ae4f2ae37dbaab8bb75/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5785dd7e0949bf65a6472ae4f2ae37dbaab8bb75/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5785dd7e0949bf65a6472ae4f2ae37dbaab8bb75/config
Defconfig      : http://autobuild.buildroot.net/results/5785dd7e0949bf65a6472ae4f2ae37dbaab8bb75/defconfig

Build f3215dab3abbb6a77398fefff0be602ee03dfb3b
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 05:00:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/f3215dab3abbb6a77398fefff0be602ee03dfb3b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f3215dab3abbb6a77398fefff0be602ee03dfb3b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f3215dab3abbb6a77398fefff0be602ee03dfb3b/config
Defconfig      : http://autobuild.buildroot.net/results/f3215dab3abbb6a77398fefff0be602ee03dfb3b/defconfig

Build 3118bbe9cc573c4f544505d1a6e5aaf31d1ba994
==============================================

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

Build c14032685529a70f9cdcd89c31599c32ae8f7b2a
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 06:01:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/c14032685529a70f9cdcd89c31599c32ae8f7b2a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c14032685529a70f9cdcd89c31599c32ae8f7b2a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c14032685529a70f9cdcd89c31599c32ae8f7b2a/config
Defconfig      : http://autobuild.buildroot.net/results/c14032685529a70f9cdcd89c31599c32ae8f7b2a/defconfig

Build f4562e579df3cf188e732f8651eb29f545d680a6
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-10 06:10:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/f4562e579df3cf188e732f8651eb29f545d680a6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f4562e579df3cf188e732f8651eb29f545d680a6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f4562e579df3cf188e732f8651eb29f545d680a6/config
Defconfig      : http://autobuild.buildroot.net/results/f4562e579df3cf188e732f8651eb29f545d680a6/defconfig

Build a7e86e674b6c491780dfb572b7d21a35fdbc3c74
==============================================

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

Build fcdcc5479cda2c010ef32a76df2f98455594da5c
==============================================

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

Build 5a9040f9293fccc2db2bf36c6a02fd15588fb487
==============================================

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

Build 6b813d16a5741c975fa52f5f2ee20f552ddeeb9c
==============================================

Status         : NOK
Failure reason : pixman-0.25.2
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 06:27:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/6b813d16a5741c975fa52f5f2ee20f552ddeeb9c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6b813d16a5741c975fa52f5f2ee20f552ddeeb9c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6b813d16a5741c975fa52f5f2ee20f552ddeeb9c/config
Defconfig      : http://autobuild.buildroot.net/results/6b813d16a5741c975fa52f5f2ee20f552ddeeb9c/defconfig

Build f1221245131ff9517c3ef1e70f75fe3330d5f11b
==============================================

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

Build fc26c11c34d7e19a04e05940cf71871d3dfcc8d0
==============================================

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

Build 8daa7d312fa23fd6de17826ee46cfe38d31869ea
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 06:48:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/8daa7d312fa23fd6de17826ee46cfe38d31869ea/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8daa7d312fa23fd6de17826ee46cfe38d31869ea/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8daa7d312fa23fd6de17826ee46cfe38d31869ea/config
Defconfig      : http://autobuild.buildroot.net/results/8daa7d312fa23fd6de17826ee46cfe38d31869ea/defconfig

Build 70557bad9d0bb2be62f6a6b0b41eb4e9352b2ffe
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 06:52:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/70557bad9d0bb2be62f6a6b0b41eb4e9352b2ffe/build-end.log
Complete log   : http://autobuild.buildroot.net/results/70557bad9d0bb2be62f6a6b0b41eb4e9352b2ffe/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/70557bad9d0bb2be62f6a6b0b41eb4e9352b2ffe/config
Defconfig      : http://autobuild.buildroot.net/results/70557bad9d0bb2be62f6a6b0b41eb4e9352b2ffe/defconfig

Build b99c757884d14bbe8893900824763f63dd13f5dc
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 06:55:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/b99c757884d14bbe8893900824763f63dd13f5dc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b99c757884d14bbe8893900824763f63dd13f5dc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b99c757884d14bbe8893900824763f63dd13f5dc/config
Defconfig      : http://autobuild.buildroot.net/results/b99c757884d14bbe8893900824763f63dd13f5dc/defconfig

Build 00c058a4f72acaab1400901df257662e8357e7aa
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 07:05:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/00c058a4f72acaab1400901df257662e8357e7aa/build-end.log
Complete log   : http://autobuild.buildroot.net/results/00c058a4f72acaab1400901df257662e8357e7aa/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/00c058a4f72acaab1400901df257662e8357e7aa/config
Defconfig      : http://autobuild.buildroot.net/results/00c058a4f72acaab1400901df257662e8357e7aa/defconfig

Build 3bb9b7a8e3eb9e0021e5ca9f169515870c9eae4e
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 07:16:50
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/3bb9b7a8e3eb9e0021e5ca9f169515870c9eae4e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3bb9b7a8e3eb9e0021e5ca9f169515870c9eae4e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3bb9b7a8e3eb9e0021e5ca9f169515870c9eae4e/config
Defconfig      : http://autobuild.buildroot.net/results/3bb9b7a8e3eb9e0021e5ca9f169515870c9eae4e/defconfig

Build 26a9e152f533e467f68b72a373d0fc84d561eb87
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 07:24:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/26a9e152f533e467f68b72a373d0fc84d561eb87/build-end.log
Complete log   : http://autobuild.buildroot.net/results/26a9e152f533e467f68b72a373d0fc84d561eb87/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/26a9e152f533e467f68b72a373d0fc84d561eb87/config
Defconfig      : http://autobuild.buildroot.net/results/26a9e152f533e467f68b72a373d0fc84d561eb87/defconfig

Build 9bbea0bf903acc7fded179f47871e9d057de0244
==============================================

Status         : NOK
Failure reason : bash-4.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-10 07:42:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/9bbea0bf903acc7fded179f47871e9d057de0244/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9bbea0bf903acc7fded179f47871e9d057de0244/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9bbea0bf903acc7fded179f47871e9d057de0244/config
Defconfig      : http://autobuild.buildroot.net/results/9bbea0bf903acc7fded179f47871e9d057de0244/defconfig

Build ba761dd632fd9be25a3dbf06e2d1cb6b521ccafb
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 07:58:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/ba761dd632fd9be25a3dbf06e2d1cb6b521ccafb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ba761dd632fd9be25a3dbf06e2d1cb6b521ccafb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ba761dd632fd9be25a3dbf06e2d1cb6b521ccafb/config
Defconfig      : http://autobuild.buildroot.net/results/ba761dd632fd9be25a3dbf06e2d1cb6b521ccafb/defconfig

Build 715ee9af529632c4792941b57e974d940d685566
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 08:03:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/715ee9af529632c4792941b57e974d940d685566/build-end.log
Complete log   : http://autobuild.buildroot.net/results/715ee9af529632c4792941b57e974d940d685566/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/715ee9af529632c4792941b57e974d940d685566/config
Defconfig      : http://autobuild.buildroot.net/results/715ee9af529632c4792941b57e974d940d685566/defconfig

Build 97e80616ffea597e32e299b7357afc1dc572e057
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-10 08:23:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/97e80616ffea597e32e299b7357afc1dc572e057/build-end.log
Complete log   : http://autobuild.buildroot.net/results/97e80616ffea597e32e299b7357afc1dc572e057/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/97e80616ffea597e32e299b7357afc1dc572e057/config
Defconfig      : http://autobuild.buildroot.net/results/97e80616ffea597e32e299b7357afc1dc572e057/defconfig

Build a0507cbd1d553138f8a7dff067f1ee8a7cbb4fc2
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 09:01:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/a0507cbd1d553138f8a7dff067f1ee8a7cbb4fc2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a0507cbd1d553138f8a7dff067f1ee8a7cbb4fc2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a0507cbd1d553138f8a7dff067f1ee8a7cbb4fc2/config
Defconfig      : http://autobuild.buildroot.net/results/a0507cbd1d553138f8a7dff067f1ee8a7cbb4fc2/defconfig

Build 3c3ab6be1b0128857c85ff42a89f5440764d39c6
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 09:09:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/3c3ab6be1b0128857c85ff42a89f5440764d39c6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3c3ab6be1b0128857c85ff42a89f5440764d39c6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3c3ab6be1b0128857c85ff42a89f5440764d39c6/config
Defconfig      : http://autobuild.buildroot.net/results/3c3ab6be1b0128857c85ff42a89f5440764d39c6/defconfig

Build 4741f57ad7567b62854cba06d79d412061450cf6
==============================================

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

Build 3d04803a8daf4669ff130ee15f4e96f70c1d3243
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 09:50:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/3d04803a8daf4669ff130ee15f4e96f70c1d3243/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3d04803a8daf4669ff130ee15f4e96f70c1d3243/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3d04803a8daf4669ff130ee15f4e96f70c1d3243/config
Defconfig      : http://autobuild.buildroot.net/results/3d04803a8daf4669ff130ee15f4e96f70c1d3243/defconfig

Build 661f887c3073375ece73d1b21d9428020310a85c
==============================================

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

Build 712e0a8f763a377c9be5cc21cfc520929422e703
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 09:59:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7345c095d3319568173362c16ba7f6f401976aab
End of log     : http://autobuild.buildroot.net/results/712e0a8f763a377c9be5cc21cfc520929422e703/build-end.log
Complete log   : http://autobuild.buildroot.net/results/712e0a8f763a377c9be5cc21cfc520929422e703/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/712e0a8f763a377c9be5cc21cfc520929422e703/config
Defconfig      : http://autobuild.buildroot.net/results/712e0a8f763a377c9be5cc21cfc520929422e703/defconfig

Build 4252c2f0f85c27af0d814d8c9a4a5b4d74f4dac1
==============================================

Status         : NOK
Failure reason : ortp-0.20.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 10:00:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7345c095d3319568173362c16ba7f6f401976aab
End of log     : http://autobuild.buildroot.net/results/4252c2f0f85c27af0d814d8c9a4a5b4d74f4dac1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4252c2f0f85c27af0d814d8c9a4a5b4d74f4dac1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4252c2f0f85c27af0d814d8c9a4a5b4d74f4dac1/config
Defconfig      : http://autobuild.buildroot.net/results/4252c2f0f85c27af0d814d8c9a4a5b4d74f4dac1/defconfig

Build 113527766104b055f484d48d95445f19e45a0d7c
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 10:03:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7345c095d3319568173362c16ba7f6f401976aab
End of log     : http://autobuild.buildroot.net/results/113527766104b055f484d48d95445f19e45a0d7c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/113527766104b055f484d48d95445f19e45a0d7c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/113527766104b055f484d48d95445f19e45a0d7c/config
Defconfig      : http://autobuild.buildroot.net/results/113527766104b055f484d48d95445f19e45a0d7c/defconfig

Build 369114c5c03a442a4dfad4a6333bf2f2d319262d
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 10:04:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7345c095d3319568173362c16ba7f6f401976aab
End of log     : http://autobuild.buildroot.net/results/369114c5c03a442a4dfad4a6333bf2f2d319262d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/369114c5c03a442a4dfad4a6333bf2f2d319262d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/369114c5c03a442a4dfad4a6333bf2f2d319262d/config
Defconfig      : http://autobuild.buildroot.net/results/369114c5c03a442a4dfad4a6333bf2f2d319262d/defconfig

Build e29196893b808002719d5e0358a74547d8b2a3f3
==============================================

Status         : NOK
Failure reason : squid-3.2.4
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 10:24:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7345c095d3319568173362c16ba7f6f401976aab
End of log     : http://autobuild.buildroot.net/results/e29196893b808002719d5e0358a74547d8b2a3f3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e29196893b808002719d5e0358a74547d8b2a3f3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e29196893b808002719d5e0358a74547d8b2a3f3/config
Defconfig      : http://autobuild.buildroot.net/results/e29196893b808002719d5e0358a74547d8b2a3f3/defconfig

Build 2f01694b023d61b6fcddb10849e1d1390db51283
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 10:28:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=695f52c17488e90cac1d4dc5a2a48ae94f2c5bb9
End of log     : http://autobuild.buildroot.net/results/2f01694b023d61b6fcddb10849e1d1390db51283/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2f01694b023d61b6fcddb10849e1d1390db51283/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2f01694b023d61b6fcddb10849e1d1390db51283/config
Defconfig      : http://autobuild.buildroot.net/results/2f01694b023d61b6fcddb10849e1d1390db51283/defconfig

Build 0e4139d4f21b91f92077a717061636f743acb29f
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-10 11:05:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=10d042ad34b0741447e6da28631715ea362df631
End of log     : http://autobuild.buildroot.net/results/0e4139d4f21b91f92077a717061636f743acb29f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0e4139d4f21b91f92077a717061636f743acb29f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0e4139d4f21b91f92077a717061636f743acb29f/config
Defconfig      : http://autobuild.buildroot.net/results/0e4139d4f21b91f92077a717061636f743acb29f/defconfig

Build 279b82e00e6136cb94ac5bdaecab11e7954e5ae2
==============================================

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

Build 8d5bf9989087a221024ac3ee128a469ec34babe8
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-10 11:25:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=16dcf2d668953a33c148baebd43afdb1df34cae5
End of log     : http://autobuild.buildroot.net/results/8d5bf9989087a221024ac3ee128a469ec34babe8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8d5bf9989087a221024ac3ee128a469ec34babe8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8d5bf9989087a221024ac3ee128a469ec34babe8/config
Defconfig      : http://autobuild.buildroot.net/results/8d5bf9989087a221024ac3ee128a469ec34babe8/defconfig

Build 8ab427f5ce9b174928a955129b587e26d21688e5
==============================================

Status         : NOK
Failure reason : boost-1.49.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 11:40:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=16dcf2d668953a33c148baebd43afdb1df34cae5
End of log     : http://autobuild.buildroot.net/results/8ab427f5ce9b174928a955129b587e26d21688e5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8ab427f5ce9b174928a955129b587e26d21688e5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8ab427f5ce9b174928a955129b587e26d21688e5/config
Defconfig      : http://autobuild.buildroot.net/results/8ab427f5ce9b174928a955129b587e26d21688e5/defconfig

Build 931a370c7e37a223f5f82bd8ace6fbc9d17907e6
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 11:52:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=16dcf2d668953a33c148baebd43afdb1df34cae5
End of log     : http://autobuild.buildroot.net/results/931a370c7e37a223f5f82bd8ace6fbc9d17907e6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/931a370c7e37a223f5f82bd8ace6fbc9d17907e6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/931a370c7e37a223f5f82bd8ace6fbc9d17907e6/config
Defconfig      : http://autobuild.buildroot.net/results/931a370c7e37a223f5f82bd8ace6fbc9d17907e6/defconfig

Build aabe844a388bf222a047738b925712425d814ef2
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 12:02:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=16dcf2d668953a33c148baebd43afdb1df34cae5
End of log     : http://autobuild.buildroot.net/results/aabe844a388bf222a047738b925712425d814ef2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aabe844a388bf222a047738b925712425d814ef2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aabe844a388bf222a047738b925712425d814ef2/config
Defconfig      : http://autobuild.buildroot.net/results/aabe844a388bf222a047738b925712425d814ef2/defconfig

Build 2729e1a273becb862ef5649653f064970d8c38cc
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 12:17:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=16dcf2d668953a33c148baebd43afdb1df34cae5
End of log     : http://autobuild.buildroot.net/results/2729e1a273becb862ef5649653f064970d8c38cc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2729e1a273becb862ef5649653f064970d8c38cc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2729e1a273becb862ef5649653f064970d8c38cc/config
Defconfig      : http://autobuild.buildroot.net/results/2729e1a273becb862ef5649653f064970d8c38cc/defconfig

Build bb5efdbd63e5e16b3ace219a91fd0549573bbf37
==============================================

Status         : NOK
Failure reason : host-python-2.7.3
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 12:22:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=16dcf2d668953a33c148baebd43afdb1df34cae5
End of log     : http://autobuild.buildroot.net/results/bb5efdbd63e5e16b3ace219a91fd0549573bbf37/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bb5efdbd63e5e16b3ace219a91fd0549573bbf37/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bb5efdbd63e5e16b3ace219a91fd0549573bbf37/config
Defconfig      : http://autobuild.buildroot.net/results/bb5efdbd63e5e16b3ace219a91fd0549573bbf37/defconfig

Build 7ba481d155f8ac4711948a1aba2f47a69b9443e8
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 12:37:50
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=24d9771337d88dae6298db12dd3fb284282c684b
End of log     : http://autobuild.buildroot.net/results/7ba481d155f8ac4711948a1aba2f47a69b9443e8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7ba481d155f8ac4711948a1aba2f47a69b9443e8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7ba481d155f8ac4711948a1aba2f47a69b9443e8/config
Defconfig      : http://autobuild.buildroot.net/results/7ba481d155f8ac4711948a1aba2f47a69b9443e8/defconfig

Build 307ddb8ef277d38d7c1ad10cb6af1d03a33e0223
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 12:51:17
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=24d9771337d88dae6298db12dd3fb284282c684b
End of log     : http://autobuild.buildroot.net/results/307ddb8ef277d38d7c1ad10cb6af1d03a33e0223/build-end.log
Complete log   : http://autobuild.buildroot.net/results/307ddb8ef277d38d7c1ad10cb6af1d03a33e0223/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/307ddb8ef277d38d7c1ad10cb6af1d03a33e0223/config
Defconfig      : http://autobuild.buildroot.net/results/307ddb8ef277d38d7c1ad10cb6af1d03a33e0223/defconfig

Build 5849a959bdca33f4210b870587ae8eaf40ffee37
==============================================

Status         : NOK
Failure reason : netatalk-3.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 13:16:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=24d9771337d88dae6298db12dd3fb284282c684b
End of log     : http://autobuild.buildroot.net/results/5849a959bdca33f4210b870587ae8eaf40ffee37/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5849a959bdca33f4210b870587ae8eaf40ffee37/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5849a959bdca33f4210b870587ae8eaf40ffee37/config
Defconfig      : http://autobuild.buildroot.net/results/5849a959bdca33f4210b870587ae8eaf40ffee37/defconfig

Build 962f5567f970e007d28751bf72a8467407c83003
==============================================

Status         : NOK
Failure reason : boost-1.49.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 13:19:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=24d9771337d88dae6298db12dd3fb284282c684b
End of log     : http://autobuild.buildroot.net/results/962f5567f970e007d28751bf72a8467407c83003/build-end.log
Complete log   : http://autobuild.buildroot.net/results/962f5567f970e007d28751bf72a8467407c83003/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/962f5567f970e007d28751bf72a8467407c83003/config
Defconfig      : http://autobuild.buildroot.net/results/962f5567f970e007d28751bf72a8467407c83003/defconfig

Build 521eded004b8573b8bb0145f0d1afcb3f3bc37ff
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 13:55:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=24d9771337d88dae6298db12dd3fb284282c684b
End of log     : http://autobuild.buildroot.net/results/521eded004b8573b8bb0145f0d1afcb3f3bc37ff/build-end.log
Complete log   : http://autobuild.buildroot.net/results/521eded004b8573b8bb0145f0d1afcb3f3bc37ff/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/521eded004b8573b8bb0145f0d1afcb3f3bc37ff/config
Defconfig      : http://autobuild.buildroot.net/results/521eded004b8573b8bb0145f0d1afcb3f3bc37ff/defconfig

Build 324b08a772d18b4bc0d9d47b51eea2302a67572b
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 14:55:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=24d9771337d88dae6298db12dd3fb284282c684b
End of log     : http://autobuild.buildroot.net/results/324b08a772d18b4bc0d9d47b51eea2302a67572b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/324b08a772d18b4bc0d9d47b51eea2302a67572b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/324b08a772d18b4bc0d9d47b51eea2302a67572b/config
Defconfig      : http://autobuild.buildroot.net/results/324b08a772d18b4bc0d9d47b51eea2302a67572b/defconfig

Build 93ee81050eeb98aeff6ba30714076d01f2476589
==============================================

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

Build 2ca1d135269a67201e6b4d995ce8fbe94db1ed3f
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 15:24:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=24d9771337d88dae6298db12dd3fb284282c684b
End of log     : http://autobuild.buildroot.net/results/2ca1d135269a67201e6b4d995ce8fbe94db1ed3f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2ca1d135269a67201e6b4d995ce8fbe94db1ed3f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2ca1d135269a67201e6b4d995ce8fbe94db1ed3f/config
Defconfig      : http://autobuild.buildroot.net/results/2ca1d135269a67201e6b4d995ce8fbe94db1ed3f/defconfig

Build faa5cb9e1b07298557653dcf91c1f9d09f7cda2c
==============================================

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

Build fce559029468d335cdb3ea5e51d6e0323aa07fff
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 15:35:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/fce559029468d335cdb3ea5e51d6e0323aa07fff/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fce559029468d335cdb3ea5e51d6e0323aa07fff/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fce559029468d335cdb3ea5e51d6e0323aa07fff/config
Defconfig      : http://autobuild.buildroot.net/results/fce559029468d335cdb3ea5e51d6e0323aa07fff/defconfig

Build f0e843c0ab138b0a254d5da1467cb690e73b6817
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 15:39:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/f0e843c0ab138b0a254d5da1467cb690e73b6817/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f0e843c0ab138b0a254d5da1467cb690e73b6817/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f0e843c0ab138b0a254d5da1467cb690e73b6817/config
Defconfig      : http://autobuild.buildroot.net/results/f0e843c0ab138b0a254d5da1467cb690e73b6817/defconfig

Build 8f474ad1f93a0130ebb220d436d1ba2f9e1580a8
==============================================

Status         : NOK
Failure reason : e2fsprogs-1.42.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 16:26:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/8f474ad1f93a0130ebb220d436d1ba2f9e1580a8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8f474ad1f93a0130ebb220d436d1ba2f9e1580a8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8f474ad1f93a0130ebb220d436d1ba2f9e1580a8/config
Defconfig      : http://autobuild.buildroot.net/results/8f474ad1f93a0130ebb220d436d1ba2f9e1580a8/defconfig

Build faeb743e3174771023f4672daf955f97fb1bd8fb
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 16:50:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/faeb743e3174771023f4672daf955f97fb1bd8fb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/faeb743e3174771023f4672daf955f97fb1bd8fb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/faeb743e3174771023f4672daf955f97fb1bd8fb/config
Defconfig      : http://autobuild.buildroot.net/results/faeb743e3174771023f4672daf955f97fb1bd8fb/defconfig

Build d4389b50dd4bac9d6b911343aee317eac2241050
==============================================

Status         : NOK
Failure reason : sdl-1.2.15
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-10 17:11:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/d4389b50dd4bac9d6b911343aee317eac2241050/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d4389b50dd4bac9d6b911343aee317eac2241050/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d4389b50dd4bac9d6b911343aee317eac2241050/config
Defconfig      : http://autobuild.buildroot.net/results/d4389b50dd4bac9d6b911343aee317eac2241050/defconfig

Build 2ed697655591563df167ff0a2bfa659fd75b8125
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 17:11:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/2ed697655591563df167ff0a2bfa659fd75b8125/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2ed697655591563df167ff0a2bfa659fd75b8125/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2ed697655591563df167ff0a2bfa659fd75b8125/config
Defconfig      : http://autobuild.buildroot.net/results/2ed697655591563df167ff0a2bfa659fd75b8125/defconfig

Build 48b6641a2dc233da2607a604c0c0814a07aa0e6c
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 17:15:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/48b6641a2dc233da2607a604c0c0814a07aa0e6c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/48b6641a2dc233da2607a604c0c0814a07aa0e6c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/48b6641a2dc233da2607a604c0c0814a07aa0e6c/config
Defconfig      : http://autobuild.buildroot.net/results/48b6641a2dc233da2607a604c0c0814a07aa0e6c/defconfig

Build a431bc0283e854e5ba9869b73351c37d7baf264d
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 18:47:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/a431bc0283e854e5ba9869b73351c37d7baf264d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a431bc0283e854e5ba9869b73351c37d7baf264d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a431bc0283e854e5ba9869b73351c37d7baf264d/config
Defconfig      : http://autobuild.buildroot.net/results/a431bc0283e854e5ba9869b73351c37d7baf264d/defconfig

Build 62d2e3f790c97331bf10f98b76c844ba757a899e
==============================================

Status         : NOK
Failure reason : gpsd-3.7
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 19:26:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/62d2e3f790c97331bf10f98b76c844ba757a899e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/62d2e3f790c97331bf10f98b76c844ba757a899e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/62d2e3f790c97331bf10f98b76c844ba757a899e/config
Defconfig      : http://autobuild.buildroot.net/results/62d2e3f790c97331bf10f98b76c844ba757a899e/defconfig

Build a677643d431b569e316d7ea3a22ddf3b97116350
==============================================

Status         : NOK
Failure reason : luajit-2.0.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 19:38:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/a677643d431b569e316d7ea3a22ddf3b97116350/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a677643d431b569e316d7ea3a22ddf3b97116350/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a677643d431b569e316d7ea3a22ddf3b97116350/config
Defconfig      : http://autobuild.buildroot.net/results/a677643d431b569e316d7ea3a22ddf3b97116350/defconfig

Build 3010fc1d203f4336dda9b1cf34b6e43ffc993d59
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 21:22:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/3010fc1d203f4336dda9b1cf34b6e43ffc993d59/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3010fc1d203f4336dda9b1cf34b6e43ffc993d59/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3010fc1d203f4336dda9b1cf34b6e43ffc993d59/config
Defconfig      : http://autobuild.buildroot.net/results/3010fc1d203f4336dda9b1cf34b6e43ffc993d59/defconfig

Build 6800615b660568291c6c9d64f92c997bc423e8e9
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 21:26:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/6800615b660568291c6c9d64f92c997bc423e8e9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6800615b660568291c6c9d64f92c997bc423e8e9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6800615b660568291c6c9d64f92c997bc423e8e9/config
Defconfig      : http://autobuild.buildroot.net/results/6800615b660568291c6c9d64f92c997bc423e8e9/defconfig

Build dab1547fc4f343ba143cb2ecfbdb7633cc7eb7c7
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 21:30:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/dab1547fc4f343ba143cb2ecfbdb7633cc7eb7c7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/dab1547fc4f343ba143cb2ecfbdb7633cc7eb7c7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/dab1547fc4f343ba143cb2ecfbdb7633cc7eb7c7/config
Defconfig      : http://autobuild.buildroot.net/results/dab1547fc4f343ba143cb2ecfbdb7633cc7eb7c7/defconfig

Build 13ada326e544f8e12c4d78ca97b5db06c08a0946
==============================================

Status         : NOK
Failure reason : dnsmasq-2.64
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-10 21:54:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/13ada326e544f8e12c4d78ca97b5db06c08a0946/build-end.log
Complete log   : http://autobuild.buildroot.net/results/13ada326e544f8e12c4d78ca97b5db06c08a0946/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/13ada326e544f8e12c4d78ca97b5db06c08a0946/config
Defconfig      : http://autobuild.buildroot.net/results/13ada326e544f8e12c4d78ca97b5db06c08a0946/defconfig

Build 5c064e367b43fdeee0b56acc89d100b561c086e5
==============================================

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

Build f744f8d1fb3f4a1419a59849ab0ea6c632e3e899
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 22:55:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/f744f8d1fb3f4a1419a59849ab0ea6c632e3e899/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f744f8d1fb3f4a1419a59849ab0ea6c632e3e899/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f744f8d1fb3f4a1419a59849ab0ea6c632e3e899/config
Defconfig      : http://autobuild.buildroot.net/results/f744f8d1fb3f4a1419a59849ab0ea6c632e3e899/defconfig

Build a63b064e370545b855b521e417057ed98333cf8a
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 22:58:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/a63b064e370545b855b521e417057ed98333cf8a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a63b064e370545b855b521e417057ed98333cf8a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a63b064e370545b855b521e417057ed98333cf8a/config
Defconfig      : http://autobuild.buildroot.net/results/a63b064e370545b855b521e417057ed98333cf8a/defconfig

Build 8d7f898dba84b61c0749e76afd3a1186fe0a5587
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-10 23:20:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/8d7f898dba84b61c0749e76afd3a1186fe0a5587/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8d7f898dba84b61c0749e76afd3a1186fe0a5587/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8d7f898dba84b61c0749e76afd3a1186fe0a5587/config
Defconfig      : http://autobuild.buildroot.net/results/8d7f898dba84b61c0749e76afd3a1186fe0a5587/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Peter Korsgaard @ 2012-12-11  7:04 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAKvQZ_3P_nfpGsC+V6Z_eRjsmNssV-Pq0EDp0v78hfkY4vwdqg@mail.gmail.com>

>>>>> "Willy" == Willy Lambert <lambert.willy@gmail.com> writes:

 Willy> Yes, so I just quit it so it leaves the default config (which
 Willy> seems to have a problem with large file)
 >> 
 >> Ok, that also works here:
 >> 
 >> yes '' | make oldconfig
 >> make

Does that work for you?

 >> Notice that we have a bunch of preconfigured qemu defconfigs (look in
 >> configs/)
 >> 

 Willy> thanks for this tips I overlooked that. I'm on a x86 atom so
 Willy> there is little config to preset.

Is your build machine an atom? If so, beware that your build times are
going to be quite long. Don't you have access to any faster machines?

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] Linux build error: mixed implicit and normal rules
From: Woody Wu @ 2012-12-11  6:20 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121211042828.GC3880@tarshish>

On 2012-12-11, Baruch Siach
<baruch@tkos.co.il> wrote:
> Hi Woody,
>
> On Tue, Dec 11, 2012 at 01:13:50AM +0000, Woody Wu wrote:
>> On 2012-12-10, Baruch Siach
>> <baruch@tkos.co.il> wrote:
>> > On Mon, Dec 10, 2012 at 09:14:12AM +0000, Woody Wu wrote:
>> >> I am trying to build an old Linux kernel 2.6.16. But got the error:
>> >> 
>> >> Makefile:441: mixed implicit and normal rules. stop.
>> >> 
>> >> The line 441 of Linux makefile is:
>> >> 
>> >> config %config: scripts_basic outputmakefile FORCE
>> >> 	$(Q)mkdir -p include/linux
>> >> 	$(Q)$(MAKE) $(build)=scripts/kconfig $@
>> >> 	$(Q)$(MAKE) -C $(srctree) KBUILD_SRC= .kernelrelease
>> >> 
>> >> How should I fix this?  My buildroot version is 2012.08.
>> >
>> > Not related to Buildroot, but anyway...
>> >
>> > If you used GNU make version 3.82 you need something like (kernel) commit 
>> > 3c955b407a084810f57260d61548cc92c14bc627 (fixes for using make 3.82).
>> 
>> Sorry, what this magic number is?
>
> It's a git commit ID. See the commit itself at 
> http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;
a=commitdiff;h=3c955b407a084810f57260d61548cc92c14bc627. 
> For more information on git see http://git-scm.com.
>

Many thanks and sorry for asking such a stupid question (I only used svn
in my project)


-- 
woody
I can't go back to yesterday - because I was a different person then.

^ permalink raw reply

* [Buildroot] Linux build error: mixed implicit and normal rules
From: Baruch Siach @ 2012-12-11  4:28 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <slrnkcd24f.28d.narkewoody@zuhnb712.local.com>

Hi Woody,

On Tue, Dec 11, 2012 at 01:13:50AM +0000, Woody Wu wrote:
> On 2012-12-10, Baruch Siach
> <baruch@tkos.co.il> wrote:
> > On Mon, Dec 10, 2012 at 09:14:12AM +0000, Woody Wu wrote:
> >> I am trying to build an old Linux kernel 2.6.16. But got the error:
> >> 
> >> Makefile:441: mixed implicit and normal rules. stop.
> >> 
> >> The line 441 of Linux makefile is:
> >> 
> >> config %config: scripts_basic outputmakefile FORCE
> >> 	$(Q)mkdir -p include/linux
> >> 	$(Q)$(MAKE) $(build)=scripts/kconfig $@
> >> 	$(Q)$(MAKE) -C $(srctree) KBUILD_SRC= .kernelrelease
> >> 
> >> How should I fix this?  My buildroot version is 2012.08.
> >
> > Not related to Buildroot, but anyway...
> >
> > If you used GNU make version 3.82 you need something like (kernel) commit 
> > 3c955b407a084810f57260d61548cc92c14bc627 (fixes for using make 3.82).
> 
> Sorry, what this magic number is?

It's a git commit ID. See the commit itself at 
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=3c955b407a084810f57260d61548cc92c14bc627. 
For more information on git see http://git-scm.com.

baruch

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Willy Lambert @ 2012-12-11  2:13 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <87pq2hpnpq.fsf@dell.be.48ers.dk>

2012/12/10 Peter Korsgaard <jacmet@uclibc.org>:
>>>>>> "Willy" == Willy Lambert <lambert.willy@gmail.com> writes:
>
> Hi,
>
>  Willy> Yes, so I just quit it so it leaves the default config (which
>  Willy> seems to have a problem with large file)
>
> Ok, that also works here:
>
> yes '' | make oldconfig
> make
>
>  Willy> I'm not blocked I already have my root image (with large file
>  Willy> enabled), I'm currently setting up qemu to test it, our remark is
> just
>  Willy> that default config seems dummy.
>
> Notice that we have a bunch of preconfigured qemu defconfigs (look in
> configs/)
>

thanks for this tips I overlooked that. I'm on a x86 atom so there is
little config to preset.

> --
> Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] Linux build error: mixed implicit and normal rules
From: Woody Wu @ 2012-12-11  1:13 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121210092000.GC5482@sapphire.tkos.co.il>

On 2012-12-10, Baruch Siach
<baruch@tkos.co.il> wrote:
> Hi Woody,
>
> On Mon, Dec 10, 2012 at 09:14:12AM +0000, Woody Wu wrote:
>> I am trying to build an old Linux kernel 2.6.16. But got the error:
>> 
>> Makefile:441: mixed implicit and normal rules. stop.
>> 
>> The line 441 of Linux makefile is:
>> 
>> config %config: scripts_basic outputmakefile FORCE
>> 	$(Q)mkdir -p include/linux
>> 	$(Q)$(MAKE) $(build)=scripts/kconfig $@
>> 	$(Q)$(MAKE) -C $(srctree) KBUILD_SRC= .kernelrelease
>> 
>> How should I fix this?  My buildroot version is 2012.08.
>
> Not related to Buildroot, but anyway...
>
> If you used GNU make version 3.82 you need something like (kernel) commit 
> 3c955b407a084810f57260d61548cc92c14bc627 (fixes for using make 3.82).
>

Sorry, what this magic number is?



-- 
woody
I can't go back to yesterday - because I was a different person then.

^ 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