Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] busybox: fix link with tirpc
From: Peter Korsgaard @ 2012-11-21 10:07 UTC (permalink / raw)
  To: buildroot

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

Busybox does partial linking of its modules before linking everything
together into the binary.  Those partial links are done without the
standard libraries, but that also means -ltirpc can't be found.  In
addition, this probably fails horribly with static linking (untested).

The problem is that the LDFLAGS are also used in the partial links.
So instead, use CFLAGS_busybox, which is only used for the busybox
link step.  Also make sure that this is passed through the environment,
not on the command line, so the busybox Makefile can still append to
it.

Fixes e.g.
http://autobuild.buildroot.net/results/e8351e3ba86fdcdb2999548658271a6fde0526a9

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/busybox/busybox.mk |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk
index 549e150..9154c08 100644
--- a/package/busybox/busybox.mk
+++ b/package/busybox/busybox.mk
@@ -27,12 +27,17 @@ BUSYBOX_LDFLAGS = \
 ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
 BUSYBOX_DEPENDENCIES += libtirpc
 BUSYBOX_CFLAGS += -I$(STAGING_DIR)/usr/include/tirpc/
-BUSYBOX_LDFLAGS += -ltirpc
+# Don't use LDFLAGS for -ltirpc, because LDFLAGS is used for
+# the non-final link of modules as well.
+BUSYBOX_CFLAGS_busybox += -ltirpc
 endif
 
 BUSYBOX_BUILD_CONFIG = $(BUSYBOX_DIR)/.config
 # Allows the build system to tweak CFLAGS
-BUSYBOX_MAKE_ENV = $(TARGET_MAKE_ENV) CFLAGS="$(BUSYBOX_CFLAGS)"
+BUSYBOX_MAKE_ENV = \
+	$(TARGET_MAKE_ENV) \
+	CFLAGS="$(BUSYBOX_CFLAGS)" \
+	CFLAGS_busybox="$(BUSYBOX_CFLAGS_busybox)"
 BUSYBOX_MAKE_OPTS = \
 	CC="$(TARGET_CC)" \
 	ARCH=$(KERNEL_ARCH) \

^ permalink raw reply related

* [Buildroot] [PATCH] cjson: fix copy/paste error in target installation
From: Peter Korsgaard @ 2012-11-21 10:06 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353468091-2152-1-git-send-email-danomimanchego123@gmail.com>

>>>>> "Danomi" == Danomi Manchego <danomimanchego123@gmail.com> writes:

 Danomi> Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] cjson: fix copy/paste error in target installation
From: Peter Korsgaard @ 2012-11-21 10:05 UTC (permalink / raw)
  To: buildroot

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

Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/cjson/cjson.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/cjson/cjson.mk b/package/cjson/cjson.mk
index dd64010..ccc6010 100644
--- a/package/cjson/cjson.mk
+++ b/package/cjson/cjson.mk
@@ -23,7 +23,7 @@ define CJSON_INSTALL_STAGING_CMDS
 endef
 
 define CJSON_INSTALL_TARGET_CMDS
-	$(INSTALL) -D $(@D)/cJSON/cJSON.h $(STAGING_DIR)/usr/include/cJSON.h
+	$(INSTALL) -D $(@D)/cJSON/cJSON.h $(TARGET_DIR)/usr/include/cJSON.h
 	$(INSTALL) -D $(@D)/cJSON/libcJSON.so $(TARGET_DIR)/usr/lib/libcJSON.so
 endef
 

^ permalink raw reply related

* [Buildroot] [PATCH] barebox: Add BR2_TARGET_BAREBOX_2012_11
From: Peter Korsgaard @ 2012-11-21 10:04 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353410086-10233-1-git-send-email-gregory.hermant@calao-systems.com>

>>>>> "Gregory" == Gregory Hermant <gregory.hermant@calao-systems.com> writes:

 Gregory> Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] barebox: Add BR2_TARGET_BAREBOX_2012_11
From: Peter Korsgaard @ 2012-11-21 10:04 UTC (permalink / raw)
  To: buildroot

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

Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 boot/barebox/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/boot/barebox/Config.in b/boot/barebox/Config.in
index c9e7088..997f45b 100644
--- a/boot/barebox/Config.in
+++ b/boot/barebox/Config.in
@@ -45,6 +45,7 @@ config BR2_TARGET_BAREBOX_VERSION
 	default "2012.08.0"	if BR2_TARGET_BAREBOX_2012_08
 	default "2012.09.0"	if BR2_TARGET_BAREBOX_2012_09
 	default "2012.10.0"	if BR2_TARGET_BAREBOX_2012_10
+	default "2012.11.0"	if BR2_TARGET_BAREBOX_2012_11
 	default "custom"	if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
 	default $BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT
 

^ permalink raw reply related

* [Buildroot] [PATCH 3/3] xtensa: disable libffi for Xtensa
From: Thomas Petazzoni @ 2012-11-21 10:04 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50ACA0A6.9020507@zankel.net>

Dear Chris Zankel,

On Wed, 21 Nov 2012 01:36:38 -0800, Chris Zankel wrote:

> > You need to recursively propagate this 'depends' to all packages selecting 
> > BR2_PACKAGE_LIBFFI. This is due to a limitation of kconfig that doesn't check 
> > whether a package is actually selectable.
> 
> Ah, good to know. Thanks. Will create another patch.

No, don't do it. You will become crazy before you get to the end of it.
libffi is a dependency for glib and python, and glib in turn has a
crazy number of reverse dependencies, themselves having other
reverse dependencies. You would have to add a depends on !BR2_xtensa on
dozens and dozens of packages.

This is a known limitation of kconfig, which we have discussed in
length during the last Buildroot Developer Days, see point 6) in
http://elinux.org/Buildroot:DeveloperDaysELCE2012#Details_of_the_discussion.

For now, I think it's better to just leave libffi as it is, until we
find a good way of solving the entire problem. We know that we should
ignore those autobuilders failures.

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] QtWebKit problem
From: Thomas Petazzoni @ 2012-11-21  9:53 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353490900.77327.YahooMailNeo@web164601.mail.gq1.yahoo.com>

Dear Zoran Djordjevic,

On Wed, 21 Nov 2012 01:41:40 -0800 (PST), Zoran Djordjevic wrote:
> I've built linux with Qt support, and later decided to add
> QtWebKit. I checked it, and rebuild (previously deleting
> stamp.build and stamp.install in ../output/build/qt-4.7.4)
> After building I didn't get QtWebKit in .../sysroot/usr/include.
> Where I go wrong ?

Don't do magic with stamp files, do:

	make qt-reconfigure

Or preferably, a 'make clean all' cycle.

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] QtWebKit problem
From: Zoltan Gyarmati @ 2012-11-21  9:42 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353490900.77327.YahooMailNeo@web164601.mail.gq1.yahoo.com>

On 11/21/2012 10:41 AM, Zoran Djordjevic wrote:
> I've built linux with Qt support, and later decided to add
> QtWebKit. I checked it, and rebuild (previously deleting
> stamp.build and stamp.install in ../output/build/qt-4.7.4)
> After building I didn't get QtWebKit in .../sysroot/usr/include.
> Where I go wrong ?
> Regards
>
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
Probably you also have to delete the configure stamp as well

-- 
br,
Zoltan Gyarmati
mail: mr.zoltan.gyarmati at gmail.com
freenode nick: zgyarmati

^ permalink raw reply

* [Buildroot] QtWebKit problem
From: Zoran Djordjevic @ 2012-11-21  9:41 UTC (permalink / raw)
  To: buildroot

I've built linux with Qt support, and later decided to add
QtWebKit. I checked it, and rebuild (previously deleting
stamp.build and stamp.install in ../output/build/qt-4.7.4)
After building I didn't get QtWebKit in .../sysroot/usr/include.
Where I go wrong ?
?
Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121121/a54d8ded/attachment.html>

^ permalink raw reply

* [Buildroot] How to regenerate zImage?
From: Thomas Petazzoni @ 2012-11-21  9:38 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <slrnkamq24.2u9.narkewoody@zuhnb712.local.com>

Dear Woody Wu,

On Tue, 20 Nov 2012 11:24:36 +0000 (UTC), Woody Wu wrote:

> > However, note that making changing to the source code anywhere in
> > output/build/... is a really stupid idea, as all those changes will be
> > lost next time you do 'make clean'.
> >
> Yes, I agree this is stupid. So I also really like to know whta's the
> best practice to do this kind of work. Would you be so kind to have a
> introduction or point me to a docment? Thanks

Two solutions:

 *) Do the build of the component you're actively working on outside of
    Buildroot. Typically, when I do kernel hacking, I do it outside of
    Buildroot, and I use Buildroot only as a final integration
    mechanism, to make sure that the system build process is
    reproducible. But not during development.

 *) Use the OVERRIDE_SRCDIR mechanism, as documented in
    http://www.elinux.org/images/2/2a/Using-buildroot-real-project.pdf,
    slide 41.

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] [PATCH 3/3] xtensa: disable libffi for Xtensa
From: Chris Zankel @ 2012-11-21  9:36 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121121083521.GB28785@sapphire.tkos.co.il>

Hi Baruch,

On 11/21/2012 12:35 AM, Baruch Siach wrote:
> Hi Chris,
>
> On Tue, Nov 20, 2012 at 11:01:49AM -0800, Chris Zankel wrote:
>> Xtensa currently doesn't support libffi.
>>
>> Signed-off-by: Chris Zankel <chris@zankel.net>
>> ---
>>  package/libffi/Config.in |    1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/package/libffi/Config.in b/package/libffi/Config.in
>> index 7211f8f..4afb669 100644
>> --- a/package/libffi/Config.in
>> +++ b/package/libffi/Config.in
>> @@ -1,5 +1,6 @@
>>  config BR2_PACKAGE_LIBFFI
>>  	bool "libffi"
>> +	depends on !BR2_xtensa
>>  	help
>>  	  The libffi library provides a portable, high level
>>  	  programming interface to various calling conventions. This
> You need to recursively propagate this 'depends' to all packages selecting 
> BR2_PACKAGE_LIBFFI. This is due to a limitation of kconfig that doesn't check 
> whether a package is actually selectable.

Ah, good to know. Thanks. Will create another patch.

Cheers!
-Chris

^ permalink raw reply

* [Buildroot] [git commit] lcdproc: fix autobuilder failures
From: Thomas Petazzoni @ 2012-11-21  9:33 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAG2jQ8gC5zotmF=Z2W4uu89VDxaHPpdJnf=L5Fes9xU6O2gXCQ@mail.gmail.com>

Dear Markos Chandras,

On Wed, 21 Nov 2012 09:23:11 +0000, Markos Chandras wrote:

> I don't think is fixed. I am still getting this problem in master
> branch and the autobuilder reports similar problems too.
> 
> http://autobuild.buildroot.net/results/d7f51f07096a68ed5d513466ab3c1719a696cb19/build-end.log

Indeed there is still a problem.

Simon, do you have the time to look into this?

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] [git commit] lcdproc: fix autobuilder failures
From: Markos Chandras @ 2012-11-21  9:23 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121116113343.15dd3eb3@skate>

On Fri, Nov 16, 2012 at 10:33 AM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
>
> On Fri, 16 Nov 2012 09:07:55 +0000, Simon Dawson wrote:
>
>> If lcdproc finds freetype in the staging area, then the host header
>> and library search paths do not get added to the build commands. So I
>> think this patch does more than simply work around the problem.
>
> Ok, thanks!
>
> Best regards,
>
> Thomas
> --
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

Hi,

I don't think is fixed. I am still getting this problem in master
branch and the autobuilder reports similar problems too.

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

-- 
Regards,
Markos

^ permalink raw reply

* [Buildroot] [PATCH 3/3] xtensa: disable libffi for Xtensa
From: Baruch Siach @ 2012-11-21  8:35 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50ac8f69.6548420a.6f5c.2a1b@mx.google.com>

Hi Chris,

On Tue, Nov 20, 2012 at 11:01:49AM -0800, Chris Zankel wrote:
> Xtensa currently doesn't support libffi.
> 
> Signed-off-by: Chris Zankel <chris@zankel.net>
> ---
>  package/libffi/Config.in |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/libffi/Config.in b/package/libffi/Config.in
> index 7211f8f..4afb669 100644
> --- a/package/libffi/Config.in
> +++ b/package/libffi/Config.in
> @@ -1,5 +1,6 @@
>  config BR2_PACKAGE_LIBFFI
>  	bool "libffi"
> +	depends on !BR2_xtensa
>  	help
>  	  The libffi library provides a portable, high level
>  	  programming interface to various calling conventions. This

You need to recursively propagate this 'depends' to all packages selecting 
BR2_PACKAGE_LIBFFI. This is due to a limitation of kconfig that doesn't check 
whether a package is actually selectable.

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] [PATCH] busybox: fix link with tirpc
From: Arnout Vandecappelle @ 2012-11-21  8:15 UTC (permalink / raw)
  To: buildroot

Busybox does partial linking of its modules before linking everything
together into the binary.  Those partial links are done without the
standard libraries, but that also means -ltirpc can't be found.  In
addition, this probably fails horribly with static linking (untested).

The problem is that the LDFLAGS are also used in the partial links.
So instead, use CFLAGS_busybox, which is only used for the busybox
link step.  Also make sure that this is passed through the environment,
not on the command line, so the busybox Makefile can still append to
it.

Fixes e.g.
http://autobuild.buildroot.net/results/e8351e3ba86fdcdb2999548658271a6fde0526a9

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

---
 package/busybox/busybox.mk |    9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk
index 549e150..9154c08 100644
--- a/package/busybox/busybox.mk
+++ b/package/busybox/busybox.mk
@@ -27,12 +27,17 @@ BUSYBOX_LDFLAGS = \
 ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
 BUSYBOX_DEPENDENCIES += libtirpc
 BUSYBOX_CFLAGS += -I$(STAGING_DIR)/usr/include/tirpc/
-BUSYBOX_LDFLAGS += -ltirpc
+# Don't use LDFLAGS for -ltirpc, because LDFLAGS is used for
+# the non-final link of modules as well.
+BUSYBOX_CFLAGS_busybox += -ltirpc
 endif
 
 BUSYBOX_BUILD_CONFIG = $(BUSYBOX_DIR)/.config
 # Allows the build system to tweak CFLAGS
-BUSYBOX_MAKE_ENV = $(TARGET_MAKE_ENV) CFLAGS="$(BUSYBOX_CFLAGS)"
+BUSYBOX_MAKE_ENV = \
+	$(TARGET_MAKE_ENV) \
+	CFLAGS="$(BUSYBOX_CFLAGS)" \
+	CFLAGS_busybox="$(BUSYBOX_CFLAGS_busybox)"
 BUSYBOX_MAKE_OPTS = \
 	CC="$(TARGET_CC)" \
 	ARCH=$(KERNEL_ARCH) \
-- 
tg: (47ee305..) t/busybox-tirpc (depends on: master)

^ permalink raw reply related

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


Hello,

On 2012-11-20, 154 random build tests have been done and
submitted on autobuild.buildroot.net.
 96 builds have been successful
 58 builds have failed

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

Build 7f31301d4332b9109af65610d2afdfb14c3b03c2
==============================================

Status         : NOK
Failure reason : gdb-7.4.1-target
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 00:34:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/7f31301d4332b9109af65610d2afdfb14c3b03c2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7f31301d4332b9109af65610d2afdfb14c3b03c2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7f31301d4332b9109af65610d2afdfb14c3b03c2/config
Defconfig      : http://autobuild.buildroot.net/results/7f31301d4332b9109af65610d2afdfb14c3b03c2/defconfig

Build 0c2f683924d0ba278d7be18deb8100200e7db6ea
==============================================

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

Build 85a5419b101624108b1e2d9d0b44b9915fc906b3
==============================================

Status         : NOK
Failure reason : kexec-2.0.3
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 00:42:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/85a5419b101624108b1e2d9d0b44b9915fc906b3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/85a5419b101624108b1e2d9d0b44b9915fc906b3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/85a5419b101624108b1e2d9d0b44b9915fc906b3/config
Defconfig      : http://autobuild.buildroot.net/results/85a5419b101624108b1e2d9d0b44b9915fc906b3/defconfig

Build 2a7261d2ac5cad956bfd99933dc6068a159008fb
==============================================

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

Build 7b043663d5e508d43d9e4c7f3c3631e3e4adf59e
==============================================

Status         : NOK
Failure reason : rt-tests-0.83
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 01:11:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/7b043663d5e508d43d9e4c7f3c3631e3e4adf59e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7b043663d5e508d43d9e4c7f3c3631e3e4adf59e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7b043663d5e508d43d9e4c7f3c3631e3e4adf59e/config
Defconfig      : http://autobuild.buildroot.net/results/7b043663d5e508d43d9e4c7f3c3631e3e4adf59e/defconfig

Build 9980b48f73193f2629cd7576d97213636838419c
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 01:56:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/9980b48f73193f2629cd7576d97213636838419c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9980b48f73193f2629cd7576d97213636838419c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9980b48f73193f2629cd7576d97213636838419c/config
Defconfig      : http://autobuild.buildroot.net/results/9980b48f73193f2629cd7576d97213636838419c/defconfig

Build 0954040c417ab2e289a583d615e8f0622ed612c5
==============================================

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

Build 464473d9f6433e90d1123cc0a22843b44df7ec71
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 02:31:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/464473d9f6433e90d1123cc0a22843b44df7ec71/build-end.log
Complete log   : http://autobuild.buildroot.net/results/464473d9f6433e90d1123cc0a22843b44df7ec71/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/464473d9f6433e90d1123cc0a22843b44df7ec71/config
Defconfig      : http://autobuild.buildroot.net/results/464473d9f6433e90d1123cc0a22843b44df7ec71/defconfig

Build d7f51f07096a68ed5d513466ab3c1719a696cb19
==============================================

Status         : NOK
Failure reason : lcdproc-0.5.6
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 03:33:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/d7f51f07096a68ed5d513466ab3c1719a696cb19/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d7f51f07096a68ed5d513466ab3c1719a696cb19/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d7f51f07096a68ed5d513466ab3c1719a696cb19/config
Defconfig      : http://autobuild.buildroot.net/results/d7f51f07096a68ed5d513466ab3c1719a696cb19/defconfig

Build 0ba4f6c8fa07d0b577c56579bffe8d819f06b92d
==============================================

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

Build 7f99bafe47660946febb90ecfe33c3ef0d474137
==============================================

Status         : NOK
Failure reason : ffmpeg-0.8.12
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 04:09:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/7f99bafe47660946febb90ecfe33c3ef0d474137/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7f99bafe47660946febb90ecfe33c3ef0d474137/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7f99bafe47660946febb90ecfe33c3ef0d474137/config
Defconfig      : http://autobuild.buildroot.net/results/7f99bafe47660946febb90ecfe33c3ef0d474137/defconfig

Build abf074f2c87343a9c7f070e50b22deada5c29135
==============================================

Status         : NOK
Failure reason : libhid-0.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 04:42:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/abf074f2c87343a9c7f070e50b22deada5c29135/build-end.log
Complete log   : http://autobuild.buildroot.net/results/abf074f2c87343a9c7f070e50b22deada5c29135/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/abf074f2c87343a9c7f070e50b22deada5c29135/config
Defconfig      : http://autobuild.buildroot.net/results/abf074f2c87343a9c7f070e50b22deada5c29135/defconfig

Build 3d15dc97a79b276295ea5cb1cdab7f4d82f57594
==============================================

Status         : NOK
Failure reason : inotify-tools-3.14
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 04:43:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/3d15dc97a79b276295ea5cb1cdab7f4d82f57594/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3d15dc97a79b276295ea5cb1cdab7f4d82f57594/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3d15dc97a79b276295ea5cb1cdab7f4d82f57594/config
Defconfig      : http://autobuild.buildroot.net/results/3d15dc97a79b276295ea5cb1cdab7f4d82f57594/defconfig

Build e82d94fbfdbca7609d7fa84540cade4c4c33e181
==============================================

Status         : NOK
Failure reason : gnupg-1.4.12
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 04:57:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/e82d94fbfdbca7609d7fa84540cade4c4c33e181/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e82d94fbfdbca7609d7fa84540cade4c4c33e181/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e82d94fbfdbca7609d7fa84540cade4c4c33e181/config
Defconfig      : http://autobuild.buildroot.net/results/e82d94fbfdbca7609d7fa84540cade4c4c33e181/defconfig

Build 031a947e321df4cb0938f36d66d575543eb25831
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 05:09:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/031a947e321df4cb0938f36d66d575543eb25831/build-end.log
Complete log   : http://autobuild.buildroot.net/results/031a947e321df4cb0938f36d66d575543eb25831/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/031a947e321df4cb0938f36d66d575543eb25831/config
Defconfig      : http://autobuild.buildroot.net/results/031a947e321df4cb0938f36d66d575543eb25831/defconfig

Build cabd781f3d657cd248ec3176de0fd3722f9a2ee1
==============================================

Status         : NOK
Failure reason : dialog-1.1-20111020
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 05:12:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/cabd781f3d657cd248ec3176de0fd3722f9a2ee1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cabd781f3d657cd248ec3176de0fd3722f9a2ee1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cabd781f3d657cd248ec3176de0fd3722f9a2ee1/config
Defconfig      : http://autobuild.buildroot.net/results/cabd781f3d657cd248ec3176de0fd3722f9a2ee1/defconfig

Build 449ccc80b48ac9c3f12dcbc7a5e0822216582c1b
==============================================

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

Build 5b92a96dac5ef9009025fc0b15a60ecd7a810f5c
==============================================

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

Build 84aea2da961df8b5f44841e94a14220cf7b814c2
==============================================

Status         : NOK
Failure reason : xserver_xorg-server-1.9.4
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 06:33:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/84aea2da961df8b5f44841e94a14220cf7b814c2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/84aea2da961df8b5f44841e94a14220cf7b814c2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/84aea2da961df8b5f44841e94a14220cf7b814c2/config
Defconfig      : http://autobuild.buildroot.net/results/84aea2da961df8b5f44841e94a14220cf7b814c2/defconfig

Build b76d286f269c56464b38bbf2ed7c4128082f2159
==============================================

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

Build 49ebbf5fe1fefc499bf95bc2a8104f75f2b126d8
==============================================

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

Build 35a142f05fcc6dd61cc05f90d3f262e68e9257a5
==============================================

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

Build f232eeb6d17d1ba90c8facca0498ba4919034b4f
==============================================

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

Build f8a518243248cbf46c29369818ef09209490392f
==============================================

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

Build 7c0f571282c11b419738cb5bea46a8c82961bf53
==============================================

Status         : NOK
Failure reason : imagemagick-6.7.8-8
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 08:07:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/7c0f571282c11b419738cb5bea46a8c82961bf53/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7c0f571282c11b419738cb5bea46a8c82961bf53/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7c0f571282c11b419738cb5bea46a8c82961bf53/config
Defconfig      : http://autobuild.buildroot.net/results/7c0f571282c11b419738cb5bea46a8c82961bf53/defconfig

Build ab8635b57d1fc7d7485d31538abc5dc821667f3a
==============================================

Status         : NOK
Failure reason : util-linux-2.20.1
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 08:19:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/ab8635b57d1fc7d7485d31538abc5dc821667f3a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ab8635b57d1fc7d7485d31538abc5dc821667f3a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ab8635b57d1fc7d7485d31538abc5dc821667f3a/config
Defconfig      : http://autobuild.buildroot.net/results/ab8635b57d1fc7d7485d31538abc5dc821667f3a/defconfig

Build 103752d5f1e9044b20c405d6de6c6c7889a19ef6
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-20 08:53:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/103752d5f1e9044b20c405d6de6c6c7889a19ef6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/103752d5f1e9044b20c405d6de6c6c7889a19ef6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/103752d5f1e9044b20c405d6de6c6c7889a19ef6/config
Defconfig      : http://autobuild.buildroot.net/results/103752d5f1e9044b20c405d6de6c6c7889a19ef6/defconfig

Build e186652124a70b706469c55b5735e79a26649d7d
==============================================

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

Build 98309af6cd5d8ecaa9a7812cc7acc767b6abf92b
==============================================

Status         : NOK
Failure reason : gnupg-1.4.12
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 09:50:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/98309af6cd5d8ecaa9a7812cc7acc767b6abf92b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/98309af6cd5d8ecaa9a7812cc7acc767b6abf92b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/98309af6cd5d8ecaa9a7812cc7acc767b6abf92b/config
Defconfig      : http://autobuild.buildroot.net/results/98309af6cd5d8ecaa9a7812cc7acc767b6abf92b/defconfig

Build 9809ca19c1f8118c3529d362e355455ff2ed3b68
==============================================

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

Build 0a85b932b93def51361fc55aa855f40c71bb8111
==============================================

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

Build 94864df21272d205903625da1384c8638a411105
==============================================

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

Build 5fc18b480d1a51d08c26c59bbcbbc011c57baa0c
==============================================

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

Build 85b5d5612cfaa8239a996fbf96c7d3e08450f82a
==============================================

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

Build 02e2b63960edecae857f7cde391ffcf8af6d19b8
==============================================

Status         : NOK
Failure reason : qt-4.8.3
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 12:25:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/02e2b63960edecae857f7cde391ffcf8af6d19b8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/02e2b63960edecae857f7cde391ffcf8af6d19b8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/02e2b63960edecae857f7cde391ffcf8af6d19b8/config
Defconfig      : http://autobuild.buildroot.net/results/02e2b63960edecae857f7cde391ffcf8af6d19b8/defconfig

Build d9eb0dbeb2fe1d2efbff7989453fa8afb1f8d4b8
==============================================

Status         : NOK
Failure reason : boa-0.94.14rc21
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 12:26:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/d9eb0dbeb2fe1d2efbff7989453fa8afb1f8d4b8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d9eb0dbeb2fe1d2efbff7989453fa8afb1f8d4b8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d9eb0dbeb2fe1d2efbff7989453fa8afb1f8d4b8/config
Defconfig      : http://autobuild.buildroot.net/results/d9eb0dbeb2fe1d2efbff7989453fa8afb1f8d4b8/defconfig

Build 39792b60c1425bd824242f766ad32e0b2b649b8a
==============================================

Status         : NOK
Failure reason : gettext-0.16.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 12:46:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/39792b60c1425bd824242f766ad32e0b2b649b8a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/39792b60c1425bd824242f766ad32e0b2b649b8a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/39792b60c1425bd824242f766ad32e0b2b649b8a/config
Defconfig      : http://autobuild.buildroot.net/results/39792b60c1425bd824242f766ad32e0b2b649b8a/defconfig

Build 8b15988390cbe74890bc0ae889dfcf7000ad6c58
==============================================

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

Build 94432d7a7320ec6081dca07067c558ec7ca9c51c
==============================================

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

Build 468512231d7f4c458367b4da35021a6f0b887820
==============================================

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

Build a8fad5d3813f809236e83eac1ad0026548fa3d7c
==============================================

Status         : NOK
Failure reason : bmon-2.1.0
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 14:10:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/a8fad5d3813f809236e83eac1ad0026548fa3d7c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a8fad5d3813f809236e83eac1ad0026548fa3d7c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a8fad5d3813f809236e83eac1ad0026548fa3d7c/config
Defconfig      : http://autobuild.buildroot.net/results/a8fad5d3813f809236e83eac1ad0026548fa3d7c/defconfig

Build bccfef07988c9154f8ca125483d278f409829f16
==============================================

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

Build cfbcfc01e4c67bcece04f25263ad390d3339e40a
==============================================

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

Build 27ff4e2f6bdd4fa010e6a8257d309b68e8d97bc5
==============================================

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

Build 139a04576f011580d521d5fadf85f5e18c843832
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 17:10:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/139a04576f011580d521d5fadf85f5e18c843832/build-end.log
Complete log   : http://autobuild.buildroot.net/results/139a04576f011580d521d5fadf85f5e18c843832/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/139a04576f011580d521d5fadf85f5e18c843832/config
Defconfig      : http://autobuild.buildroot.net/results/139a04576f011580d521d5fadf85f5e18c843832/defconfig

Build 5e2551c192cc9aa9a7766fb8b775569fa0911b70
==============================================

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

Build 06bc82f0b6348808d0b6ffc2159c2206f938ed5e
==============================================

Status         : NOK
Failure reason : gdbserver-7.4.1
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 18:02:15
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/06bc82f0b6348808d0b6ffc2159c2206f938ed5e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/06bc82f0b6348808d0b6ffc2159c2206f938ed5e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/06bc82f0b6348808d0b6ffc2159c2206f938ed5e/config
Defconfig      : http://autobuild.buildroot.net/results/06bc82f0b6348808d0b6ffc2159c2206f938ed5e/defconfig

Build aab74e4b5bbc9b571ee60da797d3b672f022a024
==============================================

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

Build d5ac8c62ec6d152ba4f8f7470ba856eeb39edefe
==============================================

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

Build f382c1d083d09561aef27303b6ea9d5043259264
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 18:20:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/f382c1d083d09561aef27303b6ea9d5043259264/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f382c1d083d09561aef27303b6ea9d5043259264/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f382c1d083d09561aef27303b6ea9d5043259264/config
Defconfig      : http://autobuild.buildroot.net/results/f382c1d083d09561aef27303b6ea9d5043259264/defconfig

Build c22295eb6bd03b0de110fe211bba9cfa1984c481
==============================================

Status         : NOK
Failure reason : libhid-0.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 19:14:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/c22295eb6bd03b0de110fe211bba9cfa1984c481/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c22295eb6bd03b0de110fe211bba9cfa1984c481/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c22295eb6bd03b0de110fe211bba9cfa1984c481/config
Defconfig      : http://autobuild.buildroot.net/results/c22295eb6bd03b0de110fe211bba9cfa1984c481/defconfig

Build d0df1288f9c6358a35e8bb038e86eb2ea1028b6a
==============================================

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

Build aba4ba5d8816825607f682cc283d727b571cd1f5
==============================================

Status         : NOK
Failure reason : binutils-2.21
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-20 20:27:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=b40ec0b651c36610a74c57bf5237c892c1647ea1
End of log     : http://autobuild.buildroot.net/results/aba4ba5d8816825607f682cc283d727b571cd1f5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aba4ba5d8816825607f682cc283d727b571cd1f5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aba4ba5d8816825607f682cc283d727b571cd1f5/config
Defconfig      : http://autobuild.buildroot.net/results/aba4ba5d8816825607f682cc283d727b571cd1f5/defconfig

Build 1e9bd3b563b8390fc4e5e2aa61b23ac6edc2d1cb
==============================================

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

Build 2828eb08b9b2c1790216d13fb56bfdabcaaf2a0c
==============================================

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

Build c5b3416b5cd31d28065b67649966f4c7a2dc0fdb
==============================================

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

Build c24c155d1253cf86bd5138eabc185318b8c3382d
==============================================

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

Build da09b94a051ff0d11eb635819b0a7156e102ca2d
==============================================

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



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [PATCH v3 2/6] ux500-firmware: new package
From: Arnout Vandecappelle @ 2012-11-21  6:54 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352967920-3164-3-git-send-email-gregory.hermant@calao-systems.com>

On 15/11/12 09:25, Gregory Hermant wrote:
>
> Signed-off-by: Gregory Hermant<gregory.hermant@calao-systems.com>

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

  Minor detail below.

[snip]

> +define UX500_FIRMWARE_INSTALL_TARGET_CMDS
> +	$(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
> +# The CG2900 linux driver has to load firmware named CG29XX_* but the firmware
> +# filenames contained in this package are CG2900_* hence the code below

  Comments inside the _CMDS macros don't work well: they are interpreted by
the shell.  It's better to put them before the macro definition.


  Regards,
  Arnout

> +	for f in $(TARGET_DIR)/lib/firmware/CG2900* ; do \
> +		mv $$f $${f/CG2900/CG29XX}; \
> +	done
> +endef
> +
> +$(eval $(generic-package))

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

^ permalink raw reply

* [Buildroot] [PATCH v3 1/6] snowball-hdmiservice: new package
From: Arnout Vandecappelle @ 2012-11-21  6:51 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352967920-3164-2-git-send-email-gregory.hermant@calao-systems.com>

On 15/11/12 09:25, Gregory Hermant wrote:
>
> Signed-off-by: Gregory Hermant<gregory.hermant@calao-systems.com>
[snip]
> +
> +define SNOWBALL_HDMISERVICE_BUILD_CMDS
> +	$(MAKE) CC="$(TARGET_CC)" -C $(@D)
> +endef

  I may have asked this before, but is there a reason to not pass buildroot's
CFLAGS and LDFLAGS?  We usually pass $(TARGET_CONFIGURE_OPTS) to sub-makes.

[snip]


  Regards,
  Arnout

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

^ permalink raw reply

* [Buildroot] Who calls to the defined function/s
From: Arnout Vandecappelle @ 2012-11-21  6:39 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CACUGKYNs2gHvS_6eJS22gYgZOE7rhSciSaCAeCxbEm4q5Dm=Kw@mail.gmail.com>

On 20/11/12 19:26, John Tobias wrote:
> I was thinking to support the package
> management in the buildroot. Where, if I define XXX_CREATE_PACKAGE in
> my hello.mk
> the buildroot (for example) will create an opkg file (off-course I
> have supply the necessary information to create the package file).
>
> I know the buildroot community did not support it package management
> but I would like to add some flexibility on my buildroot environment.

  Even though it's very likely that we will not include support for packages in
buildroot, it's worthwhile to post your patches to the list. That way, anybody
else that needs it can pick it up.  In addition, you may get some review comments
which are useful for yourself.

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

^ permalink raw reply

* [Buildroot] How to regenerate zImage?
From: Woody Wu @ 2012-11-21  4:40 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <slrnkamq24.2u9.narkewoody@zuhnb712.local.com>

On 2012-11-20, Woody Wu
<narkewoody@gmail.com> wrote:
>> However, note that making changing to the source code anywhere in
>> output/build/... is a really stupid idea, as all those changes will
>> be lost next time you do 'make clean'.
>>
> Yes, I agree this is stupid. So I also really like to know whta's the
> best practice to do this kind of work. Would you be so kind to have a
> introduction or point me to a docment? Thanks
>

Hi, Thomas

Would you be so kind to draw a comment on this?


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

^ permalink raw reply

* [Buildroot] [PATCH] cjson: fix copy/paste error in target installation
From: Danomi Manchego @ 2012-11-21  3:21 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
---
 package/cjson/cjson.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/cjson/cjson.mk b/package/cjson/cjson.mk
index dd64010..ccc6010 100644
--- a/package/cjson/cjson.mk
+++ b/package/cjson/cjson.mk
@@ -23,7 +23,7 @@ define CJSON_INSTALL_STAGING_CMDS
 endef
 
 define CJSON_INSTALL_TARGET_CMDS
-	$(INSTALL) -D $(@D)/cJSON/cJSON.h $(STAGING_DIR)/usr/include/cJSON.h
+	$(INSTALL) -D $(@D)/cJSON/cJSON.h $(TARGET_DIR)/usr/include/cJSON.h
 	$(INSTALL) -D $(@D)/cJSON/libcJSON.so $(TARGET_DIR)/usr/lib/libcJSON.so
 endef
 
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] Who calls to the defined function/s
From: John Tobias @ 2012-11-21  0:52 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CACUGKYMPEgomG3VJnNitxBr7Dtxed4XuPzMdVRH0rJi_iKB7DQ@mail.gmail.com>

Hi Thomas,

I found where to add the function.

Regards,

john

On Tue, Nov 20, 2012 at 3:00 PM, John Tobias <john.tobias.ph@gmail.com> wrote:
> Hi Thomas,
>
> I added some function in generic-package (snapshot of added function):
>
> $(BUILD_DIR)/%/.stamp_create_package:
> @$(call MESSAGE,"Creating package")
> $(Q)touch $@
>
>
> In buildroot directory, when I issue a command:
>
> make hello-create-package, it calls the said function. But, since the
> new function didn't know by the buildroot, I cannot do the make hello
> then the buildroot will call the create-package.
>
> The question is what environment variable should I modify in order the
> buildroot should call the create-package too?
>
> Regards,
>
> john
>
> On Tue, Nov 20, 2012 at 10:26 AM, John Tobias <john.tobias.ph@gmail.com> wrote:
>> Dear Thomas Petazzoni,
>>
>> Thank you for the response. I was thinking to support the package
>> management in the buildroot. Where, if I define XXX_CREATE_PACKAGE in
>> my hello.mk
>> the buildroot (for example) will create an opkg file (off-course I
>> have supply the necessary information to create the package file).
>>
>> I know the buildroot community did not support it package management
>> but I would like to add some flexibility on my buildroot environment.
>>
>> Regards,
>>
>> john
>>
>> On Tue, Nov 20, 2012 at 12:59 AM, Thomas Petazzoni
>> <thomas.petazzoni@free-electrons.com> wrote:
>>> Dear John Tobias,
>>>
>>> On Mon, 19 Nov 2012 18:21:03 -0800, John Tobias wrote:
>>>
>>>> I was trying to (fully) understand the dataflow of the buildroot's
>>>> Makefile. How/who parse/calls to the functions like:
>>>>
>>>> HELLO_INSTALL_TARGET_CMDS
>>>> HELLO_BUILD_CMDS
>>>>
>>>> $(eval $(generic-package))
>>>
>>> The generic-package macro will find in which directory your Makefile
>>> is, for example package/hello/. It will take this "hello" convert it to
>>> uppercase, and use it as the prefix for all variables. So basically, a
>>> package in package/hello/hello.mk will have to define HELLO_SITE,
>>> HELLO_SOURCE, HELLO_VERSION, and possibly HELLO_BUILD_CMDS,
>>> HELLO_INSTALL_TARGET_CMDS, etc.
>>>
>>>> So, How I can tell to the generic-package to call HELLO_TEST_CMDS too?
>>>>
>>>> example:
>>>> define HELLO_TEST_CMDS
>>>> ...
>>>> endef
>>>
>>> That would require a modification of the package infrastructure, which
>>> you probably don't want to do. What are you trying to achieve with a
>>> new command exactly?
>>>
>>> New commands are normally not needed:
>>>
>>>  *) For autotools-package and cmake-package, you have hooks so that you
>>>     can do something after extraction, after patching, after
>>>     configuration, after installation, etc.
>>>
>>>  *) For generic-package, you can do something like:
>>>
>>> ifeq ($(BR2_PACKAGE_HELLO_SOMETHING),y)
>>> define HELLO_DO_THIS_CMDS
>>>         $(MAKE) -C $(@D) do-this
>>> endef
>>> endif
>>>
>>> ifeq ($(BR2_PACKAGE_HELLO_SOMETHING_ELSE),y)
>>> define HELLO_DO_THAT_CMDS
>>>         $(MAKE) -C $(@D) do-that
>>> endef
>>> endif
>>>
>>> define HELLO_BUILD_CMDS
>>>         $(HELLO_DO_THIS_CMDS)
>>>         $(HELLO_DO_THAT_CMDS)
>>> endef
>>>
>>> Please make sure to read our documentation at
>>> http://buildroot.org/downloads/manual/manual.html#_adding_new_packages_to_buildroot
>>> which explains all of this with quite some details and examples.
>>>
>>> Do not hesitate to get back to the list if you need further details,
>>>
>>> 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] Xtensa in the autobuilders, first build failures
From: Chris Zankel @ 2012-11-21  0:35 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121119234601.6274d4a6@skate>

Hi Thomas,

On 11/19/2012 02:46 PM, Thomas Petazzoni wrote:
> On Mon, 19 Nov 2012 13:45:50 -0800, Chris Zankel wrote:
>
>> However, I noticed that it was not the most recent version where I
>> incorporated suggestions from Arnout, so will provide a small patch on
>> top of it.
> Ah, sorry, my bad. Don't hesitate to send a follow-up patch that fixes
> the remaining problems.
No worries, I think my email system wasn't working, so maybe you didn't
even get them.

I'm lining up a few patches, just running some more build tests (which
always take some time)

> Adding support for one architecture in libffi is not very simple, so if
> you don't need it for your own projects, I don't think you'll have the
> energy to work on this. 
You are right, it looks like some work, and it would be lower priority.
I'll just disable it for Xtensa for now.

>>> Besides those issues, I'm just reminding you that we are still very
>>> interested in having a Qemu Xtensa configuration to be able to run the
>>> Xtensa systems we generate with Buildroot.
>> I'm juggling between kernel, uClibc, and buildroot, so, please allow me
>> some more time.
> Sure, no problem!
How do you actually build qemu inside buildroot, or is this not
supported? I couldn't find any config option to enable it.
Also note that the current kernel version (3.6) doesn't have all
required patches, we are 'forward-focusing' at the moment, so things
will be easier in the future.

>> Regarding patches, should I send them to you and cc buildroot, or only
>> to the mailing list? What's the best path to get them looked at and
>> integrated into the tree?
> Just send them to the list. You can Cc: me as well if you want, but I'm
> basically reading everything that goes on the Buildroot list, so I
> should catch them even if you don't Cc: me.
Thanks. I'll keep them coming :-)

Cheers!
-Chris

^ permalink raw reply

* [Buildroot] Udev on a live CD system does not appear to populate /dev
From: Stefan Fröberg @ 2012-11-20 23:42 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A940FA.7020402@petroprogram.com>

18.11.2012 22:11, Stefan Fr?berg kirjoitti:
> 18.11.2012 22:02, Arnout Vandecappelle kirjoitti:
>> On 17/11/12 23:54, Stefan Fr?berg wrote:
>> [snip]
>>> But the real problem now is that grub refuses to load. It just shows
>>> Loading stage2 .... and hangs there.
>>>
>>> If I copy my old grub stuff  (namely, the stage2_eltorito file) from
>>> 2012.05 build to inside the boot/grub/ of the
>>> new buildroot generated livecd (of course, first mounted throught
>>> loopback and copied to some other dir for modifying)
>>> and then build the livecd from that manually, it will work and show
>>> grub menu normally.
>>>
>>> I did a quick *md5sum* and *ls* and there indeed is a difference with
>>> the git-version and 2012.05 version of
>>> stage2_eltorito file,  git-version of stage2_eltorito being very
>>> large (258 KB vs. working 103 KB)
>>>
>>  Is this on a x86_64 target? Then a difference is that we removed
>> -fPIC -DPIC from CFLAGS.  Can you try if that makes a difference?
>>
> No, just building i586 target inside 32-bit Fedora 16 host.
>
> Ok, Im now going to rebuild both 2012.05 and latest git again and
> see what happens.
>
> Regards
> Stefan
>
>>  Regards,
>>  Arnout
>

I have now investigated this matter three days and found out the following:

1 )
That size difference (258 KB vs. working 103 KB) was  because in
buildroot grub I had enabled every network NIC available.

But the following was shocking to me:
The working 103 KB stage2_eltorito was not from buildroot at all in the
first place but from Gentoo!
I vaguely remember copying it to buildroot system from my Gentoo setup
several months ago.
Because I found out that the livecd build process did not work.

But this also means that even 2012.05 buildroot grub did not work for me.

2 )

I built my own version of grub with my own uClibc-based distro and found
out that grub is very nit-pick about CFLAGS and LDFLAGS it is feed.
It doesn't like optimiziation very much.
So after unsetting both flags and applying four patches from Gentoo I
managed to run my very own made grub. Yay!! :-)

3 )

Naturally I then tried this CFLAGS and LDFLAGS unsetting in
boot/grub/grub.mk.
Also used only default buildroot configuration, with newest git.
The damn thing still didn't show grub menu! :-(

And now Im beginning to suspect that buildroot grub is very broken as it
is now and needs some serious patching.
The patches it uses (grub_0.97-35.diff.gz) are from old debian tree from
2008!!

I will now  grab the latest debian patches (grub_0.97-66.diff.gz), use
only -Os for CFLAGS and nothing for LDFLAGS and see how far it will take me
this time.

Regards
Stefan

^ permalink raw reply

* [Buildroot] Who calls to the defined function/s
From: John Tobias @ 2012-11-20 23:00 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CACUGKYNs2gHvS_6eJS22gYgZOE7rhSciSaCAeCxbEm4q5Dm=Kw@mail.gmail.com>

Hi Thomas,

I added some function in generic-package (snapshot of added function):

$(BUILD_DIR)/%/.stamp_create_package:
@$(call MESSAGE,"Creating package")
$(Q)touch $@


In buildroot directory, when I issue a command:

make hello-create-package, it calls the said function. But, since the
new function didn't know by the buildroot, I cannot do the make hello
then the buildroot will call the create-package.

The question is what environment variable should I modify in order the
buildroot should call the create-package too?

Regards,

john

On Tue, Nov 20, 2012 at 10:26 AM, John Tobias <john.tobias.ph@gmail.com> wrote:
> Dear Thomas Petazzoni,
>
> Thank you for the response. I was thinking to support the package
> management in the buildroot. Where, if I define XXX_CREATE_PACKAGE in
> my hello.mk
> the buildroot (for example) will create an opkg file (off-course I
> have supply the necessary information to create the package file).
>
> I know the buildroot community did not support it package management
> but I would like to add some flexibility on my buildroot environment.
>
> Regards,
>
> john
>
> On Tue, Nov 20, 2012 at 12:59 AM, Thomas Petazzoni
> <thomas.petazzoni@free-electrons.com> wrote:
>> Dear John Tobias,
>>
>> On Mon, 19 Nov 2012 18:21:03 -0800, John Tobias wrote:
>>
>>> I was trying to (fully) understand the dataflow of the buildroot's
>>> Makefile. How/who parse/calls to the functions like:
>>>
>>> HELLO_INSTALL_TARGET_CMDS
>>> HELLO_BUILD_CMDS
>>>
>>> $(eval $(generic-package))
>>
>> The generic-package macro will find in which directory your Makefile
>> is, for example package/hello/. It will take this "hello" convert it to
>> uppercase, and use it as the prefix for all variables. So basically, a
>> package in package/hello/hello.mk will have to define HELLO_SITE,
>> HELLO_SOURCE, HELLO_VERSION, and possibly HELLO_BUILD_CMDS,
>> HELLO_INSTALL_TARGET_CMDS, etc.
>>
>>> So, How I can tell to the generic-package to call HELLO_TEST_CMDS too?
>>>
>>> example:
>>> define HELLO_TEST_CMDS
>>> ...
>>> endef
>>
>> That would require a modification of the package infrastructure, which
>> you probably don't want to do. What are you trying to achieve with a
>> new command exactly?
>>
>> New commands are normally not needed:
>>
>>  *) For autotools-package and cmake-package, you have hooks so that you
>>     can do something after extraction, after patching, after
>>     configuration, after installation, etc.
>>
>>  *) For generic-package, you can do something like:
>>
>> ifeq ($(BR2_PACKAGE_HELLO_SOMETHING),y)
>> define HELLO_DO_THIS_CMDS
>>         $(MAKE) -C $(@D) do-this
>> endef
>> endif
>>
>> ifeq ($(BR2_PACKAGE_HELLO_SOMETHING_ELSE),y)
>> define HELLO_DO_THAT_CMDS
>>         $(MAKE) -C $(@D) do-that
>> endef
>> endif
>>
>> define HELLO_BUILD_CMDS
>>         $(HELLO_DO_THIS_CMDS)
>>         $(HELLO_DO_THAT_CMDS)
>> endef
>>
>> Please make sure to read our documentation at
>> http://buildroot.org/downloads/manual/manual.html#_adding_new_packages_to_buildroot
>> which explains all of this with quite some details and examples.
>>
>> Do not hesitate to get back to the list if you need further details,
>>
>> Thomas
>> --
>> Thomas Petazzoni, Free Electrons
>> Kernel, drivers, real-time and embedded Linux
>> development, consulting, training and support.
>> http://free-electrons.com

^ permalink raw reply


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