Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] buildroot-2012.08: Handling drm module
From: Zvi Vered @ 2012-11-11 21:05 UTC (permalink / raw)
  To: buildroot

Hello,

I just tried buildroot-2012.08

According to .config buildroot does not handle 'drm'. at all.
Am I right ?

When I booted my PC104 module with 'knoppix 2 nodrm' the text screen flickers.
With 'knoppix 2' the screen is OK.

Now I want to boot the PC104 with "my" distribution based on vanilla
3.4.7, busybox.
Can you help ?

Thanks,
Zvika

^ permalink raw reply

* [Buildroot] [PATCH] libtool version update 2.4.2
From: Arnout Vandecappelle @ 2012-11-11 22:00 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121110105308.740a3bfa@skate>

On 11/10/12 10:53, Thomas Petazzoni wrote:
> Alexander,
>
> On Fri,  9 Nov 2012 16:38:52 +0400, Alexander Khryukin wrote:
>
>> -LIBTOOL_VERSION = 2.2.10
>> +LIBTOOL_VERSION = 2.4.2
>
> How much testing did you give to this version bump? A libtool version
> bump is a very sensitive operation, as host-libtool is used to
> autoreconfigure many packages in Buildroot. Therefore, this patch needs
> a good amount of testing before being committed (ideally testing that
> all packages having<foo>_AUTORECONF = YES still build).

  Can't we rely on the autobuilders to do that?

  That said, I wouldn't do this for 2012.11 anymore...

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

^ permalink raw reply

* [Buildroot] [PATCH] libtool version update 2.4.2
From: Thomas Petazzoni @ 2012-11-11 22:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A02018.1000804@mind.be>


On Sun, 11 Nov 2012 23:00:56 +0100, Arnout Vandecappelle wrote:
> On 11/10/12 10:53, Thomas Petazzoni wrote:
> > Alexander,
> >
> > On Fri,  9 Nov 2012 16:38:52 +0400, Alexander Khryukin wrote:
> >
> >> -LIBTOOL_VERSION = 2.2.10
> >> +LIBTOOL_VERSION = 2.4.2
> >
> > How much testing did you give to this version bump? A libtool
> > version bump is a very sensitive operation, as host-libtool is used
> > to autoreconfigure many packages in Buildroot. Therefore, this
> > patch needs a good amount of testing before being committed
> > (ideally testing that all packages having<foo>_AUTORECONF = YES
> > still build).
> 
>   Can't we rely on the autobuilders to do that?

Sure, we'll certainly rely on the autobuilders for a complete testing.
But I wanted to know if it had been tested again 2 packages or 20-40
packages, which makes quite a bit of difference :)

>   That said, I wouldn't do this for 2012.11 anymore...

For sure, it should not be part of 2012.11, we already have enough
issues to fix.

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 1/2] Deprecate the support for the toolchain on target
From: Thomas Petazzoni @ 2012-11-11 22:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CA+wH294SsYiTG9AP9_q==F2-3MKf_Oe75yCM21rSDSgyNTeGcA@mail.gmail.com>

Alex,

On Sat, 10 Nov 2012 23:26:19 +0000, Alex Bradbury wrote:

> If someone took lead on reintroducing this functionality would it be
> accepted? There are at least a couple of cases where installing
> development files are useful:
> * When using buildroot to build a rootfs that is used as a sysroot for
> an external build system

To build a sysroot containing a cross-compiler + header files and
libraries you don't need the support for the toolchain on target.

> * When using e.g. luajit packages which can make use of header files
> to generate bindings (not exploited all that much right now due to
> lack of preprocessor support in luajit)

What do you need the toolchain on target for this? Header files are
available in the toolchain sysroot, i.e in
output/host/usr/<arch-tuple>/sysroot/.

So unless I'm wrong, none of those use-cases require a toolchain on the
target. Or maybe you could provide more details about those use cases
to convince us that having a toolchain on the target is important?

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] group file: define groups expected by udev
From: Arnout Vandecappelle @ 2012-11-11 22:12 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352603315-1731-1-git-send-email-danomimanchego123@gmail.com>

On 11/11/12 04:08, Danomi Manchego wrote:
> udev-182 requires several groups to be resolvable at udev startup,
> including disk, cdrom, floppy, tape, audio, video, lp, tty, dialout,
> and kmem.  Only some of these are in the default skeleton's group
> file, So let's add the missing groups, and plugdev too.
>
> This avoids getting these logs in /var/logs/messages:
>
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'dialout' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'kmem' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'video' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'lp' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'floppy' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'cdrom' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'tape' unknown
>
> Signed-off-by: Danomi Manchego<danomimanchego123@gmail.com>

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

  Not tested or anything, but I agree with the principle and the patch looks
good.

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

^ permalink raw reply

* [Buildroot] [PATCH 2/2 v3] neardal: new package
From: Arnout Vandecappelle @ 2012-11-11 22:22 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352628468-14490-3-git-send-email-spdawson@gmail.com>

On 11/11/12 11:07, spdawson at gmail.com wrote:
> From: Simon Dawson<spdawson@gmail.com>
>
> Signed-off-by: Simon Dawson<spdawson@gmail.com>
> Acked-by: Arnout Vandecappelle (Essensium/Mind)<arnout@mind.be>
> Tested-by: Arnout Vandecappelle (Essensium/Mind)<arnout@mind.be>
>   (built-test on a minimal powerpc config)
> ---
>   v3: Remove spurious dependency on neard, add Arnout Vandecappelle's acks
>   v2: (No v2, bumped entire patch series to v3)
>
>   package/Config.in          |    1 +
>   package/neardal/Config.in  |    7 +++++++
>   package/neardal/neardal.mk |   16 ++++++++++++++++
>   3 files changed, 24 insertions(+)
>   create mode 100644 package/neardal/Config.in
>   create mode 100644 package/neardal/neardal.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 6115fb4..0e6970c 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -419,6 +419,7 @@ source "package/libusb/Config.in"
>   source "package/libusb-compat/Config.in"
>   source "package/libv4l/Config.in"
>   source "package/mtdev/Config.in"
> +source "package/neardal/Config.in"
>   source "package/pcsc-lite/Config.in"
>   endmenu
>
> diff --git a/package/neardal/Config.in b/package/neardal/Config.in
> new file mode 100644
> index 0000000..719bf95
> --- /dev/null
> +++ b/package/neardal/Config.in
> @@ -0,0 +1,7 @@
> +config BR2_PACKAGE_NEARDAL
> +	bool "neardal"
> +	select BR2_PACKAGE_DBUS_GLIB

  Boy, looks like I wasn't paying attention...  You need to copy the
dependencies from dbus-glib:
         depends on BR2_PACKAGE_DBUS # dbus-glib
         depends on BR2_USE_WCHAR # glib2

  And of course a comment to explain its absence.


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

^ permalink raw reply

* [Buildroot] [PATCH 1/2 v3] neard: new package
From: Arnout Vandecappelle @ 2012-11-11 22:25 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352628468-14490-2-git-send-email-spdawson@gmail.com>

On 11/11/12 11:07, spdawson at gmail.com wrote:
> From: Simon Dawson<spdawson@gmail.com>
>
> Signed-off-by: Simon Dawson<spdawson@gmail.com>
> Acked-by: Arnout Vandecappelle (Essensium/Mind)<arnout@mind.be>
> Tested-by: Arnout Vandecappelle (Essensium/Mind)<arnout@mind.be>
>   (built-test on a minimal powerpc config)

  Since you changed the version number, you shouldn't keep my Tested-by
(Ack is debatable).

  However, I retested it so you can add it again :-)

  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] buildroot-2012.08: Handling drm module
From: Arnout Vandecappelle @ 2012-11-11 22:42 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CABRndgxqqO3HC08rVngxm2eaSVjQ9Ks04U7Mss5-xu=B4WGMdg@mail.gmail.com>

On 11/11/12 22:05, Zvi Vered wrote:
> Hello,
>
> I just tried buildroot-2012.08
>
> According to .config buildroot does not handle 'drm'. at all.
> Am I right ?
>
> When I booted my PC104 module with 'knoppix 2 nodrm' the text screen flickers.
> With 'knoppix 2' the screen is OK.
>
> Now I want to boot the PC104 with "my" distribution based on vanilla
> 3.4.7, busybox.
> Can you help ?

  Can you explain what your problem is?  Is it that the build fails, or that the
resulting image doesn't boot, or that the screen still flickers with the
buildroot image?

  In any case, it is probably a kernel problem.  If you use exactly the same kernel
version and kernel configuration as in knoppix, you should get the same behaviour.
(You can usually get the configuration of a running kernel from /proc/config.gz).
Note that knoppix may have additional kernel patches as well.

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

^ permalink raw reply

* [Buildroot] [PATCH 2/2 v3] neardal: new package
From: Simon Dawson @ 2012-11-11 22:47 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A02527.4020801@mind.be>

On 11 Nov 2012 22:22, "Arnout Vandecappelle" <arnout@mind.be> wrote:
>  Boy, looks like I wasn't paying attention...  You need to copy the
> dependencies from dbus-glib:
>         depends on BR2_PACKAGE_DBUS # dbus-glib
>         depends on BR2_USE_WCHAR # glib2
>
>  And of course a comment to explain its absence.

Okay; thanks Arnout.

Simon.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121111/0354e4d3/attachment-0001.html>

^ permalink raw reply

* [Buildroot] Various problem using buildroot-2012.05
From: Arnout Vandecappelle @ 2012-11-11 22:47 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <509E69FD.2000804@petroprogram.com>

On 11/10/12 15:51, Stefan Fr?berg wrote:
>
> If you try to use buildroot-made target gcc to compile perl, that is, you use buildroot to cross-compile gcc to run
> natively inside
> uClibc (?) environment, then you might encounter problems.
>
> As Thomas has said in few times here for people telling about problems of native gcc-toolchain, buildroot is about
> cross-compiling stuff
> and buildroot produced native gcc-toolchain is really not supported and might be still broken
> (I don't know what the current status of it is now).

  The current status is: we're going to remove it.  Thomas has just posted some
patches to do that.

  The idea is: if you need a toolchain on the target, there is no reason not to
use a normal distro: debian, ubuntu, gentoo, ....


  As for perl, however, I think we really would like to be able to cross-compile
perl modules.  But that unfortunately still needs some work.  I messed about
with it for a bit, but I can't say I really understand how the perl build system
works.


  Regards,
  Arnout

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

^ permalink raw reply

* [Buildroot] [PATCH 1/2 v3] neard: new package
From: Simon Dawson @ 2012-11-11 22:52 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A025C1.4040809@mind.be>

On 11 Nov 2012 22:25, "Arnout Vandecappelle" <arnout@mind.be> wrote:
>  Since you changed the version number, you shouldn't keep my Tested-by
> (Ack is debatable).
>
>  However, I retested it so you can add it again :-)

Thanks Arnout; sorry about the faux pas.

Simon.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121111/252ddf4a/attachment.html>

^ permalink raw reply

* [Buildroot] [PATCH 1/2] Deprecate the support for the toolchain on target
From: Arnout Vandecappelle @ 2012-11-11 22:53 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <4afe9c298939f3701caa09c2cc5c4bc04f6d4408.1352586949.git.thomas.petazzoni@free-electrons.com>

On 11/10/12 23:36, Thomas Petazzoni wrote:
>   config BR2_HAVE_DOCUMENTATION
>   	bool "documentation on the target"
> +	# We no longer want to support a toolchain on the target
> +	depends on BR2_DEPRECATED
>   	help
>   	  Install the documentation, including manual pages and info
>   	  pages, on the target.

  Who, documentation has nothing to do with the toolchain on target!  I can
easily imagine use cases where you want to be able to do 'man tcpdump' on
the target.

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

^ permalink raw reply

* [Buildroot] [PATCH 2/2] Mark a number of development related packages as deprecated
From: Arnout Vandecappelle @ 2012-11-11 22:54 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <c42b5a3ae08ae07779a6ee389a8367318efe96bf.1352586949.git.thomas.petazzoni@free-electrons.com>

On 11/10/12 23:36, Thomas Petazzoni wrote:
> automake, autoconf, libtool and make on the target are basically
> useless if we don't support building a toolchain on the target. Of
> course, the host variant of automake, autoconf and libtool will remain
> available.
>
> Signed-off-by: Thomas Petazzoni<thomas.petazzoni@free-electrons.com>

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

  Still for 2012.11 please :-)

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

^ permalink raw reply

* [Buildroot] [PATCH 02/23] manual: make clean target consistent with others in buildroot
From: Arnout Vandecappelle @ 2012-11-11 22:57 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-3-git-send-email-s.martin49@gmail.com>

On 11/11/12 14:14, Samuel Martin wrote:
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
>
> diff --git a/docs/manual/manual.mk b/docs/manual/manual.mk
> index 1eaf73a..83d2fcb 100644
> --- a/docs/manual/manual.mk
> +++ b/docs/manual/manual.mk
> @@ -38,10 +38,10 @@ $(call GENDOC_INNER,$(1),chunked,split-html,chunked,Split HTML)
>   $(call GENDOC_INNER,$(1),pdf,pdf,pdf,PDF,--dblatex-opts "-P latex.output.revhistory=0")
>   $(call GENDOC_INNER,$(1),text,txt,text,Text)
>   $(call GENDOC_INNER,$(1),epub,epub,epub,EPUB)
> -clean: clean-$(1)
> -clean-$(1):
> +clean clean-$(1): $(1)-clean

  I think you can safely remove clean-$(1) - or should we consider this API?

  Regards,
  Arnout

> +$(1)-clean:
>   	$(Q)$(RM) -rf $(O)/docs/$(1)
> -.PHONY: $(1) clean-$(1)
> +.PHONY: $(1) $(1)-clean
>   endef
>
>   MANUAL_SOURCES = $(wildcard docs/manual/*.txt) $(wildcard docs/images/*)

-- 
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 1/2] Deprecate the support for the toolchain on target
From: Thomas Petazzoni @ 2012-11-11 22:59 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A02C6D.1040105@mind.be>


On Sun, 11 Nov 2012 23:53:33 +0100, Arnout Vandecappelle wrote:

>   Who, documentation has nothing to do with the toolchain on target!
> I can easily imagine use cases where you want to be able to do 'man
> tcpdump' on the target.

Well this is what we agreed during the meeting, and is even noted in
your Action Points at
http://elinux.org/Buildroot:DeveloperDaysELCE2012#Action_points :-)

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 21/23] manual: add pkg-list.txt (generated list of available packages)
From: Arnout Vandecappelle @ 2012-11-11 23:11 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-22-git-send-email-s.martin49@gmail.com>

On 11/11/12 14:14, Samuel Martin wrote:
> +Available packages
> +------------------
> +// docs/manaual/pkg-list.txt is generated using the following command:
> +// $ git grep -E '\((autotools|cmake|generic)-package\)' package/ |  \
> +//     cut -d':' -f1 | grep '\.mk$' | \
> +//     sed -e 's;.*\?/\(.*\?\).mk;* \1;' | \
> +//     sort>  docs/manual/pkg-list.txt
> +
> +include::pkg-list.txt[]

  Would it be possible to generate this list dynamically?  Saves us the trouble
of keeping it consistent manually.  It could be difficult to convince a2x to
look into the output directory for its include:: files, though.

  Regards,
  Arnout

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

^ permalink raw reply

* [Buildroot] [PATCH 00/23] Pull request for branch for-2012/doc
From: Arnout Vandecappelle @ 2012-11-11 23:13 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAHXCMMLJvvLUXss-Cvt77sUA8RrUHjSLQSAD5sLmMKjdXxvS9Q@mail.gmail.com>

On 11/11/12 14:23, Samuel Martin wrote:
> Ooops, forgot to mention that there still is some "TODO" here and
> there in this series,
> because I think I haven't all inputs to write them...
> So, feel free to fill the gaps!

  Once this has been committed, I'll read the whole manual and (try to) fix
open issues and spelling mistakes (if any :-) and fill in the gaps.

  Regards,
  Arnout

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

^ permalink raw reply

* [Buildroot] [PATCH 05/11] nfs-utils: reformat patch set as git patches
From: Arnout Vandecappelle @ 2012-11-11 23:24 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <d86142f877a476239ab6c3cf49f09cebb6f285f6.1352583641.git.thomas.petazzoni@free-electrons.com>

On 11/10/12 22:42, Thomas Petazzoni wrote:
> As we will need to add more patches to nfs-utils, we need a correct
> ordering when applying patches. Therefore, reformat the patches to use
> a git format and git naming.
>
> The nfs-utils-dont-mix-flags.patch is no longer needed as it was
> patching Makefile.in files that were being regenerated due to the
> package having _AUTORECONF = YES. The Makefile.in are properly
> regenerated thanks to the nfs-utils-0002-Patch-taken-from-Gentoo.patch
> patch.
>
> Signed-off-by: Thomas Petazzoni<thomas.petazzoni@free-electrons.com>
[snip]
> diff --git a/package/nfs-utils/nfs-utils-cross-build.patch b/package/nfs-utils/nfs-utils-0002-Patch-taken-from-Gentoo.patch
> similarity index 69%
> rename from package/nfs-utils/nfs-utils-cross-build.patch
> rename to package/nfs-utils/nfs-utils-0002-Patch-taken-from-Gentoo.patch
> index 43928bf..e310c49 100644
> --- a/package/nfs-utils/nfs-utils-cross-build.patch
> +++ b/package/nfs-utils/nfs-utils-0002-Patch-taken-from-Gentoo.patch
> @@ -1,7 +1,17 @@
> -Patch taken from Gentoo.
> +From 971389625c9602085d399d8ae7fc42b75efcfb7c Mon Sep 17 00:00:00 2001
> +From: Gustavo Zacarias<gustavo@zacarias.com.ar>
> +Date: Sat, 10 Nov 2012 18:56:12 +0100
> +Subject: [PATCH] Patch taken from Gentoo

  Could you take the opportunity to improve the patch description a bit?

[snip]
> diff --git a/package/nfs-utils/nfs-utils-susv3-legacy.patch b/package/nfs-utils/nfs-utils-0003-Switch-legacy-index-in-favour-of-strchr.patch
> similarity index 50%
> rename from package/nfs-utils/nfs-utils-susv3-legacy.patch
> rename to package/nfs-utils/nfs-utils-0003-Switch-legacy-index-in-favour-of-strchr.patch
> index 66dd181..82a6c43 100644
> --- a/package/nfs-utils/nfs-utils-susv3-legacy.patch
> +++ b/package/nfs-utils/nfs-utils-0003-Switch-legacy-index-in-favour-of-strchr.patch
> @@ -1,11 +1,20 @@
> -Switch legacy index() in favour of strchr()
> -Updated for 1.2.6 from the previous patch by Frederik Pasch.
> +From 636e78e4c9bc8be174805bde2f3ae7f940dc3d0e Mon Sep 17 00:00:00 2001
> +From: Gustavo Zacarias<gustavo@zacarias.com.ar>
> +Date: Sat, 10 Nov 2012 18:58:15 +0100
> +Subject: [PATCH] Switch legacy index() in favour of strchr() Updated for
> + 1.2.6 from the previous patch by Frederik Pasch.

  There should be an extra newline here.

[snip]
> +--
> +1.7.9.5
> +

  Minor nit: this git version number is also something that is in the way for
refreshing patches.  I posted a script a while ago to generate patches from
git, and it strips those lines from the patches.

[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] [PATCH 02/23] manual: make clean target consistent with others in buildroot
From: Samuel Martin @ 2012-11-11 23:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A02D3E.8060701@mind.be>

2012/11/11 Arnout Vandecappelle <arnout@mind.be>:
> On 11/11/12 14:14, Samuel Martin wrote:
>>
>> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
>>
>> diff --git a/docs/manual/manual.mk b/docs/manual/manual.mk
>> index 1eaf73a..83d2fcb 100644
>> --- a/docs/manual/manual.mk
>> +++ b/docs/manual/manual.mk
>> @@ -38,10 +38,10 @@ $(call
>> GENDOC_INNER,$(1),chunked,split-html,chunked,Split HTML)
>>   $(call GENDOC_INNER,$(1),pdf,pdf,pdf,PDF,--dblatex-opts "-P
>> latex.output.revhistory=0")
>>   $(call GENDOC_INNER,$(1),text,txt,text,Text)
>>   $(call GENDOC_INNER,$(1),epub,epub,epub,EPUB)
>> -clean: clean-$(1)
>> -clean-$(1):
>> +clean clean-$(1): $(1)-clean
>
>
>  I think you can safely remove clean-$(1) - or should we consider this API?
Actually, I kept it to, at least, not break the release.
IIRC, Peter generates the manual and includes it in the release tarball.
That's why I choose the safe path ;-) but I can remove it as soon as
Peter has confirmed it does not break anything.

Regards,

-- 
Sam

^ permalink raw reply

* [Buildroot] [PATCH 1/2] Deprecate the support for the toolchain on target
From: Arnout Vandecappelle @ 2012-11-11 23:52 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121111235938.358914c5@skate>

On 11/11/12 23:59, Thomas Petazzoni wrote:
>
> On Sun, 11 Nov 2012 23:53:33 +0100, Arnout Vandecappelle wrote:
>
>>    Who, documentation has nothing to do with the toolchain on target!
>> I can easily imagine use cases where you want to be able to do 'man
>> tcpdump' on the target.
>
> Well this is what we agreed during the meeting, and is even noted in
> your Action Points at
> http://elinux.org/Buildroot:DeveloperDaysELCE2012#Action_points :-)

  Right.  Typing turns of your brain, to some extent :-)

  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] Various problem using buildroot-2012.05
From: Stefan Fröberg @ 2012-11-12  0:04 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A02B0C.4000107@mind.be>

12.11.2012 0:47, Arnout Vandecappelle kirjoitti:
> On 11/10/12 15:51, Stefan Fr?berg wrote:
>>
>> If you try to use buildroot-made target gcc to compile perl, that is,
>> you use buildroot to cross-compile gcc to run
>> natively inside
>> uClibc (?) environment, then you might encounter problems.
>>
>> As Thomas has said in few times here for people telling about
>> problems of native gcc-toolchain, buildroot is about
>> cross-compiling stuff
>> and buildroot produced native gcc-toolchain is really not supported
>> and might be still broken
>> (I don't know what the current status of it is now).
>
>  The current status is: we're going to remove it.  Thomas has just
> posted some
> patches to do that.
>

Awww...
Well, it's good that he mentioned it at this point, before I started
doing any real work with that native toolchain.


>  The idea is: if you need a toolchain on the target, there is no
> reason not to
> use a normal distro: debian, ubuntu, gentoo, ....
>
>
>  As for perl, however, I think we really would like to be able to
> cross-compile
> perl modules.  But that unfortunately still needs some work.  I messed
> about
> with it for a bit, but I can't say I really understand how the perl
> build system
> works.
>

Yeah.

Another "little" difficult case is Python.

Even tought Python uses autotools, it (and Perl) will always be the
worst cross-compile
friendly citizens in my book.
Way back, before buildroot, I tried many times to cross-compile it in
Mingw32 environment and it was an
absolute nightmare. With Perl I had even less luck.

Every time I find an interesting open source project that I would like
to try and cross-compile,
I will make an silent prayer to God's of programmers that the build
system that is revealed from
tarball will be a GNU autoconf script (or even cmake one for God's sake)
and not
some hodge-bodge, custom made, configuration nightmare.

Regards
Stefan

>
>  Regards,
>  Arnout
>

^ permalink raw reply

* [Buildroot] buildroot-2012.08: Handling drm module
From: Zvi Vered @ 2012-11-12  3:58 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A029E0.4020802@mind.be>

Hello,

Build is OK.
The resulting image boots OK.
But the screen flickers with this image.
The image was not built with buildroot.
I built vanilla 3.4.7 downloaded from kernel.org

With knoppix 7.0.4, when I boot with: "knoppix 2" there is no flickering.
When I boot with "knoppix 2 nodrm" the screen flickers.

Is  "nodrm" a boot parameter (like  vga=normal)  ?

Thanks,
Zvika

-----Original Message----- 
From: Arnout Vandecappelle
Sent: Monday, November 12, 2012 12:42 AM
To: Zvi Vered
Cc: buildroot at busybox.net
Subject: Re: [Buildroot] buildroot-2012.08: Handling drm module

On 11/11/12 22:05, Zvi Vered wrote:
> Hello,
>
> I just tried buildroot-2012.08
>
> According to .config buildroot does not handle 'drm'. at all.
> Am I right ?
>
> When I booted my PC104 module with 'knoppix 2 nodrm' the text screen 
> flickers.
> With 'knoppix 2' the screen is OK.
>
> Now I want to boot the PC104 with "my" distribution based on vanilla
> 3.4.7, busybox.
> Can you help ?

  Can you explain what your problem is?  Is it that the build fails, or that 
the
resulting image doesn't boot, or that the screen still flickers with the
buildroot image?

  In any case, it is probably a kernel problem.  If you use exactly the same 
kernel
version and kernel configuration as in knoppix, you should get the same 
behaviour.
(You can usually get the configuration of a running kernel from 
/proc/config.gz).
Note that knoppix may have additional kernel patches as well.

  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] buildroot for AM3358 AM3359 with wireless-tools shared library
From: Arnout Vandecappelle @ 2012-11-12  6:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352286268.3710.9.camel@debian.fritz.box>

  Hi Juergen,

  I'm sorry, but I haven't been able to pinpoint the core issue - except that it
looks like gcc is using the host configuration to build crt0, which seems odd.
This code has changed a lot in gcc 4.7, so maybe you can try that?

  Regards,
  Arnout


On 11/07/12 12:04, J?rgen Benjamin Ronshausen wrote:
> sorry it took me so long.
>
> regards J?rgen
>
> output/toolchain/gcc-4.6.3-intermediate/gcc/config.status
>
> http://pastebin.com/fLGkJmKi
>
> config.log
>
> http://pastebin.com/WEZd2w7n
>
> auto-host.h
>
> http://pastebin.com/sJZXZvAN
>
> On Thu, 2012-11-01 at 00:06 +0100, Arnout Vandecappelle wrote:
>> On 10/31/12 12:30, J?rgen Benjamin Ronshausen wrote:
>>> logfile1's size is 3MB, to big for pastebin, so i uploaded both to
>>> github
>>>
>>> https://github.com/steven11/the-hunt-for-wireless-tools
>>
>>    gcc-intermediate's config thinks that largefile is enabled...  Can you post
>> output/toolchain/gcc-4.6.3-intermediate/gcc/config.status, config.log and
>> auto-host.h?
>>
>>    BTW what kind of build machine do you use?
>>
>>    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] [autobuild.buildroot.net] Build results for 2012-11-11
From: Thomas Petazzoni @ 2012-11-12  7:33 UTC (permalink / raw)
  To: buildroot


Hello,

On 2012-11-11, 159 random build tests have been done and
submitted on autobuild.buildroot.net.
 56 builds have been successful
 103 builds have failed

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

Build 99a507d18a020b568872ddd4e1b853dc72c04534
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 00:06:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/99a507d18a020b568872ddd4e1b853dc72c04534/build-end.log
Complete log   : http://autobuild.buildroot.net/results/99a507d18a020b568872ddd4e1b853dc72c04534/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/99a507d18a020b568872ddd4e1b853dc72c04534/config
Defconfig      : http://autobuild.buildroot.net/results/99a507d18a020b568872ddd4e1b853dc72c04534/defconfig

Build ece117a566497b71761fdf171354099c553ce491
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:07:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ece117a566497b71761fdf171354099c553ce491/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ece117a566497b71761fdf171354099c553ce491/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ece117a566497b71761fdf171354099c553ce491/config
Defconfig      : http://autobuild.buildroot.net/results/ece117a566497b71761fdf171354099c553ce491/defconfig

Build 3dc74d4fb4fb8388f4179dac8d088f5d23d37908
==============================================

Status         : NOK
Failure reason : can-utils-50775159276d896d8b3102b6dbc658a91a2a1d53
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:13:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/3dc74d4fb4fb8388f4179dac8d088f5d23d37908/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3dc74d4fb4fb8388f4179dac8d088f5d23d37908/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3dc74d4fb4fb8388f4179dac8d088f5d23d37908/config
Defconfig      : http://autobuild.buildroot.net/results/3dc74d4fb4fb8388f4179dac8d088f5d23d37908/defconfig

Build 2fbca981b1f4df77210579a0dc4e7f39f9411892
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:27:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2fbca981b1f4df77210579a0dc4e7f39f9411892/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2fbca981b1f4df77210579a0dc4e7f39f9411892/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2fbca981b1f4df77210579a0dc4e7f39f9411892/config
Defconfig      : http://autobuild.buildroot.net/results/2fbca981b1f4df77210579a0dc4e7f39f9411892/defconfig

Build bf48b6656912c0e00a3bf5a9fa2608d1332d0b11
==============================================

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

Build 4548a616b42b6839ab73025cc45814191338004f
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:31:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4548a616b42b6839ab73025cc45814191338004f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4548a616b42b6839ab73025cc45814191338004f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4548a616b42b6839ab73025cc45814191338004f/config
Defconfig      : http://autobuild.buildroot.net/results/4548a616b42b6839ab73025cc45814191338004f/defconfig

Build ca06029cd25b75663454ebf326ecf4504995f6ab
==============================================

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

Build 82bf40d47931e4253a05b80d5dde94977a44febd
==============================================

Status         : NOK
Failure reason : flex-2.5.35
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:54:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/82bf40d47931e4253a05b80d5dde94977a44febd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/82bf40d47931e4253a05b80d5dde94977a44febd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/82bf40d47931e4253a05b80d5dde94977a44febd/config
Defconfig      : http://autobuild.buildroot.net/results/82bf40d47931e4253a05b80d5dde94977a44febd/defconfig

Build dd7529d862bc781bf1ed31c963f958e96e043321
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : sh4a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 01:06:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/dd7529d862bc781bf1ed31c963f958e96e043321/build-end.log
Complete log   : http://autobuild.buildroot.net/results/dd7529d862bc781bf1ed31c963f958e96e043321/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/dd7529d862bc781bf1ed31c963f958e96e043321/config
Defconfig      : http://autobuild.buildroot.net/results/dd7529d862bc781bf1ed31c963f958e96e043321/defconfig

Build 723cb181968fbbe58e96f258a55b3f95e91294c3
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 01:12:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/723cb181968fbbe58e96f258a55b3f95e91294c3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/723cb181968fbbe58e96f258a55b3f95e91294c3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/723cb181968fbbe58e96f258a55b3f95e91294c3/config
Defconfig      : http://autobuild.buildroot.net/results/723cb181968fbbe58e96f258a55b3f95e91294c3/defconfig

Build 410d7f7054c232bcdf28abdbb37102798f41193b
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 01:14:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/410d7f7054c232bcdf28abdbb37102798f41193b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/410d7f7054c232bcdf28abdbb37102798f41193b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/410d7f7054c232bcdf28abdbb37102798f41193b/config
Defconfig      : http://autobuild.buildroot.net/results/410d7f7054c232bcdf28abdbb37102798f41193b/defconfig

Build 4325cb2db8ff224d8b4fece7532cdec554995613
==============================================

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

Build 06f71bcb76e24c31fd0d62546641644a34ad8250
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 02:05:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/06f71bcb76e24c31fd0d62546641644a34ad8250/build-end.log
Complete log   : http://autobuild.buildroot.net/results/06f71bcb76e24c31fd0d62546641644a34ad8250/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/06f71bcb76e24c31fd0d62546641644a34ad8250/config
Defconfig      : http://autobuild.buildroot.net/results/06f71bcb76e24c31fd0d62546641644a34ad8250/defconfig

Build e90f95e4ab2421c2e0f23ef9c70880368a9c4987
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 02:23:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e90f95e4ab2421c2e0f23ef9c70880368a9c4987/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e90f95e4ab2421c2e0f23ef9c70880368a9c4987/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e90f95e4ab2421c2e0f23ef9c70880368a9c4987/config
Defconfig      : http://autobuild.buildroot.net/results/e90f95e4ab2421c2e0f23ef9c70880368a9c4987/defconfig

Build 22f3676279d4cbad3950344015086bb83c8eafa7
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 02:40:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/22f3676279d4cbad3950344015086bb83c8eafa7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/22f3676279d4cbad3950344015086bb83c8eafa7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/22f3676279d4cbad3950344015086bb83c8eafa7/config
Defconfig      : http://autobuild.buildroot.net/results/22f3676279d4cbad3950344015086bb83c8eafa7/defconfig

Build 617f0aa10b528b9a955225e6697b45d118f1e094
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 03:05:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/617f0aa10b528b9a955225e6697b45d118f1e094/build-end.log
Complete log   : http://autobuild.buildroot.net/results/617f0aa10b528b9a955225e6697b45d118f1e094/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/617f0aa10b528b9a955225e6697b45d118f1e094/config
Defconfig      : http://autobuild.buildroot.net/results/617f0aa10b528b9a955225e6697b45d118f1e094/defconfig

Build 6c6d31dd1ed30e04b89e026d594ce9d48f5d95a1
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 03:16:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6c6d31dd1ed30e04b89e026d594ce9d48f5d95a1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6c6d31dd1ed30e04b89e026d594ce9d48f5d95a1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6c6d31dd1ed30e04b89e026d594ce9d48f5d95a1/config
Defconfig      : http://autobuild.buildroot.net/results/6c6d31dd1ed30e04b89e026d594ce9d48f5d95a1/defconfig

Build 15282b6e89ebc7b7c5cb70ed1049e362446b13ef
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 03:18:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/15282b6e89ebc7b7c5cb70ed1049e362446b13ef/build-end.log
Complete log   : http://autobuild.buildroot.net/results/15282b6e89ebc7b7c5cb70ed1049e362446b13ef/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/15282b6e89ebc7b7c5cb70ed1049e362446b13ef/config
Defconfig      : http://autobuild.buildroot.net/results/15282b6e89ebc7b7c5cb70ed1049e362446b13ef/defconfig

Build bc9625a20860720afad314a73829911a6ade89e0
==============================================

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

Build 2ef704d872eb66772dbfecdbe60db22002dd6f30
==============================================

Status         : NOK
Failure reason : lua-5.1.5
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 03:31:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2ef704d872eb66772dbfecdbe60db22002dd6f30/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2ef704d872eb66772dbfecdbe60db22002dd6f30/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2ef704d872eb66772dbfecdbe60db22002dd6f30/config
Defconfig      : http://autobuild.buildroot.net/results/2ef704d872eb66772dbfecdbe60db22002dd6f30/defconfig

Build ecaa0aa241f43f777ec70e4770dad1889cd4836e
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 04:18:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ecaa0aa241f43f777ec70e4770dad1889cd4836e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ecaa0aa241f43f777ec70e4770dad1889cd4836e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ecaa0aa241f43f777ec70e4770dad1889cd4836e/config
Defconfig      : http://autobuild.buildroot.net/results/ecaa0aa241f43f777ec70e4770dad1889cd4836e/defconfig

Build f3d6e6d2401aab703b170ba0aa3b0c0c67d5959a
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 04:49:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f3d6e6d2401aab703b170ba0aa3b0c0c67d5959a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f3d6e6d2401aab703b170ba0aa3b0c0c67d5959a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f3d6e6d2401aab703b170ba0aa3b0c0c67d5959a/config
Defconfig      : http://autobuild.buildroot.net/results/f3d6e6d2401aab703b170ba0aa3b0c0c67d5959a/defconfig

Build 65352b80178cec0ede01f3996103a4e81d4fe0f4
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 04:58:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/65352b80178cec0ede01f3996103a4e81d4fe0f4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/65352b80178cec0ede01f3996103a4e81d4fe0f4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/65352b80178cec0ede01f3996103a4e81d4fe0f4/config
Defconfig      : http://autobuild.buildroot.net/results/65352b80178cec0ede01f3996103a4e81d4fe0f4/defconfig

Build 3bfbeb6f7910d17b4c0d9798e41bcbde8d575cb5
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 05:16:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/3bfbeb6f7910d17b4c0d9798e41bcbde8d575cb5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3bfbeb6f7910d17b4c0d9798e41bcbde8d575cb5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3bfbeb6f7910d17b4c0d9798e41bcbde8d575cb5/config
Defconfig      : http://autobuild.buildroot.net/results/3bfbeb6f7910d17b4c0d9798e41bcbde8d575cb5/defconfig

Build a458adc5a43665dede47320f2fb7d4a00278f649
==============================================

Status         : NOK
Failure reason : pcsc-lite-1.8.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 05:37:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/a458adc5a43665dede47320f2fb7d4a00278f649/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a458adc5a43665dede47320f2fb7d4a00278f649/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a458adc5a43665dede47320f2fb7d4a00278f649/config
Defconfig      : http://autobuild.buildroot.net/results/a458adc5a43665dede47320f2fb7d4a00278f649/defconfig

Build 9adfd7785572af8919d083e829604b0bf6973ef5
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 05:42:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9adfd7785572af8919d083e829604b0bf6973ef5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9adfd7785572af8919d083e829604b0bf6973ef5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9adfd7785572af8919d083e829604b0bf6973ef5/config
Defconfig      : http://autobuild.buildroot.net/results/9adfd7785572af8919d083e829604b0bf6973ef5/defconfig

Build bbabead5d557837d0c8c516f21c2130ad4d65684
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 05:50:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/bbabead5d557837d0c8c516f21c2130ad4d65684/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bbabead5d557837d0c8c516f21c2130ad4d65684/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bbabead5d557837d0c8c516f21c2130ad4d65684/config
Defconfig      : http://autobuild.buildroot.net/results/bbabead5d557837d0c8c516f21c2130ad4d65684/defconfig

Build 950cca5dcabd1611c538771ab70426cfcf0003cd
==============================================

Status         : NOK
Failure reason : lcdproc-0.5.6
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 05:50:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/950cca5dcabd1611c538771ab70426cfcf0003cd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/950cca5dcabd1611c538771ab70426cfcf0003cd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/950cca5dcabd1611c538771ab70426cfcf0003cd/config
Defconfig      : http://autobuild.buildroot.net/results/950cca5dcabd1611c538771ab70426cfcf0003cd/defconfig

Build 2293bbbf3c3702c3d97fffdbf81744c72125abb2
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 06:15:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2293bbbf3c3702c3d97fffdbf81744c72125abb2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2293bbbf3c3702c3d97fffdbf81744c72125abb2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2293bbbf3c3702c3d97fffdbf81744c72125abb2/config
Defconfig      : http://autobuild.buildroot.net/results/2293bbbf3c3702c3d97fffdbf81744c72125abb2/defconfig

Build b405fc0ff333100e0c3239f76e6c912b8a0080b7
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 06:24:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b405fc0ff333100e0c3239f76e6c912b8a0080b7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b405fc0ff333100e0c3239f76e6c912b8a0080b7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b405fc0ff333100e0c3239f76e6c912b8a0080b7/config
Defconfig      : http://autobuild.buildroot.net/results/b405fc0ff333100e0c3239f76e6c912b8a0080b7/defconfig

Build 4aa1f07a175f9a8817eb883831977ffa159a1e98
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 06:27:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4aa1f07a175f9a8817eb883831977ffa159a1e98/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4aa1f07a175f9a8817eb883831977ffa159a1e98/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4aa1f07a175f9a8817eb883831977ffa159a1e98/config
Defconfig      : http://autobuild.buildroot.net/results/4aa1f07a175f9a8817eb883831977ffa159a1e98/defconfig

Build b1601ee91541daff4cc8606514de9cb0c5ad1d17
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 06:51:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b1601ee91541daff4cc8606514de9cb0c5ad1d17/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b1601ee91541daff4cc8606514de9cb0c5ad1d17/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b1601ee91541daff4cc8606514de9cb0c5ad1d17/config
Defconfig      : http://autobuild.buildroot.net/results/b1601ee91541daff4cc8606514de9cb0c5ad1d17/defconfig

Build 08458085958b2746cf8bb3fe4c84c4bee433386a
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 06:54:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/08458085958b2746cf8bb3fe4c84c4bee433386a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/08458085958b2746cf8bb3fe4c84c4bee433386a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/08458085958b2746cf8bb3fe4c84c4bee433386a/config
Defconfig      : http://autobuild.buildroot.net/results/08458085958b2746cf8bb3fe4c84c4bee433386a/defconfig

Build 3cda371849d980318cb3b19e3701a7e823df6ea2
==============================================

Status         : NOK
Failure reason : qtuio-abe4973ff6
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 07:24:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/3cda371849d980318cb3b19e3701a7e823df6ea2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3cda371849d980318cb3b19e3701a7e823df6ea2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3cda371849d980318cb3b19e3701a7e823df6ea2/config
Defconfig      : http://autobuild.buildroot.net/results/3cda371849d980318cb3b19e3701a7e823df6ea2/defconfig

Build e97643d851254ae426b3bbecb35dbca5fd86905b
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 07:29:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e97643d851254ae426b3bbecb35dbca5fd86905b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e97643d851254ae426b3bbecb35dbca5fd86905b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e97643d851254ae426b3bbecb35dbca5fd86905b/config
Defconfig      : http://autobuild.buildroot.net/results/e97643d851254ae426b3bbecb35dbca5fd86905b/defconfig

Build 3e2e6c96557b74a2dcc6e036095ae7f8d95bd119
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 07:54:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/3e2e6c96557b74a2dcc6e036095ae7f8d95bd119/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3e2e6c96557b74a2dcc6e036095ae7f8d95bd119/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3e2e6c96557b74a2dcc6e036095ae7f8d95bd119/config
Defconfig      : http://autobuild.buildroot.net/results/3e2e6c96557b74a2dcc6e036095ae7f8d95bd119/defconfig

Build 3792f384fc2bd9097c093f3ff6c30808b1892639
==============================================

Status         : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 08:32:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/3792f384fc2bd9097c093f3ff6c30808b1892639/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3792f384fc2bd9097c093f3ff6c30808b1892639/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3792f384fc2bd9097c093f3ff6c30808b1892639/config
Defconfig      : http://autobuild.buildroot.net/results/3792f384fc2bd9097c093f3ff6c30808b1892639/defconfig

Build 23a927422b041ddd38ae61a504e702851cf253fa
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 08:35:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/23a927422b041ddd38ae61a504e702851cf253fa/build-end.log
Complete log   : http://autobuild.buildroot.net/results/23a927422b041ddd38ae61a504e702851cf253fa/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/23a927422b041ddd38ae61a504e702851cf253fa/config
Defconfig      : http://autobuild.buildroot.net/results/23a927422b041ddd38ae61a504e702851cf253fa/defconfig

Build 74254ccd88e5dd86174cd03d61b40bef99dab6f2
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 08:40:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/74254ccd88e5dd86174cd03d61b40bef99dab6f2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/74254ccd88e5dd86174cd03d61b40bef99dab6f2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/74254ccd88e5dd86174cd03d61b40bef99dab6f2/config
Defconfig      : http://autobuild.buildroot.net/results/74254ccd88e5dd86174cd03d61b40bef99dab6f2/defconfig

Build 43ea1f34a3761634ce262cb74e90bdec3207f907
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 09:10:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/43ea1f34a3761634ce262cb74e90bdec3207f907/build-end.log
Complete log   : http://autobuild.buildroot.net/results/43ea1f34a3761634ce262cb74e90bdec3207f907/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/43ea1f34a3761634ce262cb74e90bdec3207f907/config
Defconfig      : http://autobuild.buildroot.net/results/43ea1f34a3761634ce262cb74e90bdec3207f907/defconfig

Build 02b96de2b929b2c8b7ffb9096f0f0e7272d91520
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 09:17:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/02b96de2b929b2c8b7ffb9096f0f0e7272d91520/build-end.log
Complete log   : http://autobuild.buildroot.net/results/02b96de2b929b2c8b7ffb9096f0f0e7272d91520/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/02b96de2b929b2c8b7ffb9096f0f0e7272d91520/config
Defconfig      : http://autobuild.buildroot.net/results/02b96de2b929b2c8b7ffb9096f0f0e7272d91520/defconfig

Build 6272336872b03c1bd4f9101cae5631844522f02b
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 09:26:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6272336872b03c1bd4f9101cae5631844522f02b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6272336872b03c1bd4f9101cae5631844522f02b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6272336872b03c1bd4f9101cae5631844522f02b/config
Defconfig      : http://autobuild.buildroot.net/results/6272336872b03c1bd4f9101cae5631844522f02b/defconfig

Build 9224d5573044230b5f2ec9994d9e65d4c4267e6b
==============================================

Status         : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 09:45:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9224d5573044230b5f2ec9994d9e65d4c4267e6b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9224d5573044230b5f2ec9994d9e65d4c4267e6b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9224d5573044230b5f2ec9994d9e65d4c4267e6b/config
Defconfig      : http://autobuild.buildroot.net/results/9224d5573044230b5f2ec9994d9e65d4c4267e6b/defconfig

Build b6320a001a6067ed75c61caf2b4871f6c730ae7f
==============================================

Status         : NOK
Failure reason : lua-5.1.5
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 09:50:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b6320a001a6067ed75c61caf2b4871f6c730ae7f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b6320a001a6067ed75c61caf2b4871f6c730ae7f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b6320a001a6067ed75c61caf2b4871f6c730ae7f/config
Defconfig      : http://autobuild.buildroot.net/results/b6320a001a6067ed75c61caf2b4871f6c730ae7f/defconfig

Build d86cfdde17f7f88352de49cb1e8307d0d37f8ff0
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 10:22:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d86cfdde17f7f88352de49cb1e8307d0d37f8ff0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d86cfdde17f7f88352de49cb1e8307d0d37f8ff0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d86cfdde17f7f88352de49cb1e8307d0d37f8ff0/config
Defconfig      : http://autobuild.buildroot.net/results/d86cfdde17f7f88352de49cb1e8307d0d37f8ff0/defconfig

Build 9271d259666b2e84bb803b7b40b9c3dfb3f46ec6
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 10:25:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9271d259666b2e84bb803b7b40b9c3dfb3f46ec6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9271d259666b2e84bb803b7b40b9c3dfb3f46ec6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9271d259666b2e84bb803b7b40b9c3dfb3f46ec6/config
Defconfig      : http://autobuild.buildroot.net/results/9271d259666b2e84bb803b7b40b9c3dfb3f46ec6/defconfig

Build 6dd94f7bb75cc6d7e940a4833e3e1b935e285477
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.25
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 10:33:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6dd94f7bb75cc6d7e940a4833e3e1b935e285477/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6dd94f7bb75cc6d7e940a4833e3e1b935e285477/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6dd94f7bb75cc6d7e940a4833e3e1b935e285477/config
Defconfig      : http://autobuild.buildroot.net/results/6dd94f7bb75cc6d7e940a4833e3e1b935e285477/defconfig

Build d8771ef73ac4b64ee684dc1bc0e8e34d34918bd4
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 10:41:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d8771ef73ac4b64ee684dc1bc0e8e34d34918bd4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d8771ef73ac4b64ee684dc1bc0e8e34d34918bd4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d8771ef73ac4b64ee684dc1bc0e8e34d34918bd4/config
Defconfig      : http://autobuild.buildroot.net/results/d8771ef73ac4b64ee684dc1bc0e8e34d34918bd4/defconfig

Build 251bc5a5ede07dbd00f56ca92f852b85b72ea615
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 10:41:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/251bc5a5ede07dbd00f56ca92f852b85b72ea615/build-end.log
Complete log   : http://autobuild.buildroot.net/results/251bc5a5ede07dbd00f56ca92f852b85b72ea615/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/251bc5a5ede07dbd00f56ca92f852b85b72ea615/config
Defconfig      : http://autobuild.buildroot.net/results/251bc5a5ede07dbd00f56ca92f852b85b72ea615/defconfig

Build 6284c062e7c492629d2e487cfaaa77b3bfa770c4
==============================================

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

Build 4ccc547f222f2724c487a9dcd61438f9dc10a323
==============================================

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

Build 58fc9187cafb186069e5c099a7c43bad876fbdd1
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 11:04:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/58fc9187cafb186069e5c099a7c43bad876fbdd1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/58fc9187cafb186069e5c099a7c43bad876fbdd1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/58fc9187cafb186069e5c099a7c43bad876fbdd1/config
Defconfig      : http://autobuild.buildroot.net/results/58fc9187cafb186069e5c099a7c43bad876fbdd1/defconfig

Build 142bfebfa66b3e76cd9daecbbf4868a7bf9a4b5c
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 11:11:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/142bfebfa66b3e76cd9daecbbf4868a7bf9a4b5c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/142bfebfa66b3e76cd9daecbbf4868a7bf9a4b5c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/142bfebfa66b3e76cd9daecbbf4868a7bf9a4b5c/config
Defconfig      : http://autobuild.buildroot.net/results/142bfebfa66b3e76cd9daecbbf4868a7bf9a4b5c/defconfig

Build cc1151c93392afb3f1c689269fc3b9ab02a8a3ce
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 11:20:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/cc1151c93392afb3f1c689269fc3b9ab02a8a3ce/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cc1151c93392afb3f1c689269fc3b9ab02a8a3ce/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cc1151c93392afb3f1c689269fc3b9ab02a8a3ce/config
Defconfig      : http://autobuild.buildroot.net/results/cc1151c93392afb3f1c689269fc3b9ab02a8a3ce/defconfig

Build f88460c72d7621a155d6b60d0fdb41056a8db19d
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 11:42:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f88460c72d7621a155d6b60d0fdb41056a8db19d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f88460c72d7621a155d6b60d0fdb41056a8db19d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f88460c72d7621a155d6b60d0fdb41056a8db19d/config
Defconfig      : http://autobuild.buildroot.net/results/f88460c72d7621a155d6b60d0fdb41056a8db19d/defconfig

Build 09ead76bf86075ceed3b54bd2769586390846ad0
==============================================

Status         : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 13:01:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/09ead76bf86075ceed3b54bd2769586390846ad0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/09ead76bf86075ceed3b54bd2769586390846ad0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/09ead76bf86075ceed3b54bd2769586390846ad0/config
Defconfig      : http://autobuild.buildroot.net/results/09ead76bf86075ceed3b54bd2769586390846ad0/defconfig

Build a7166dd3905187d43f8d5c356d9592686b65e87a
==============================================

Status         : NOK
Failure reason : xlib_libXt-1.0.9
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 13:26:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/a7166dd3905187d43f8d5c356d9592686b65e87a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a7166dd3905187d43f8d5c356d9592686b65e87a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a7166dd3905187d43f8d5c356d9592686b65e87a/config
Defconfig      : http://autobuild.buildroot.net/results/a7166dd3905187d43f8d5c356d9592686b65e87a/defconfig

Build 99a3b8f0d03bd636d667e5d260d263a44f9cfdbb
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 13:51:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/99a3b8f0d03bd636d667e5d260d263a44f9cfdbb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/99a3b8f0d03bd636d667e5d260d263a44f9cfdbb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/99a3b8f0d03bd636d667e5d260d263a44f9cfdbb/config
Defconfig      : http://autobuild.buildroot.net/results/99a3b8f0d03bd636d667e5d260d263a44f9cfdbb/defconfig

Build 0d0893cfa63f12df2151527133f693afaadc4366
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 14:08:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/0d0893cfa63f12df2151527133f693afaadc4366/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0d0893cfa63f12df2151527133f693afaadc4366/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0d0893cfa63f12df2151527133f693afaadc4366/config
Defconfig      : http://autobuild.buildroot.net/results/0d0893cfa63f12df2151527133f693afaadc4366/defconfig

Build 70a990a6cb78cc589ddf9cb6d8c59f0e3b2d62d1
==============================================

Status         : NOK
Failure reason : imagemagick-6.7.8-8
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 14:29:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/70a990a6cb78cc589ddf9cb6d8c59f0e3b2d62d1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/70a990a6cb78cc589ddf9cb6d8c59f0e3b2d62d1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/70a990a6cb78cc589ddf9cb6d8c59f0e3b2d62d1/config
Defconfig      : http://autobuild.buildroot.net/results/70a990a6cb78cc589ddf9cb6d8c59f0e3b2d62d1/defconfig

Build 9967bc20a6094e836c4c18ff2cd30edef143bb8e
==============================================

Status         : NOK
Failure reason : lcdproc-0.5.6
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 14:32:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9967bc20a6094e836c4c18ff2cd30edef143bb8e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9967bc20a6094e836c4c18ff2cd30edef143bb8e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9967bc20a6094e836c4c18ff2cd30edef143bb8e/config
Defconfig      : http://autobuild.buildroot.net/results/9967bc20a6094e836c4c18ff2cd30edef143bb8e/defconfig

Build 47c321bf11588b35a12f9d307bb864eb234d7971
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 14:34:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/47c321bf11588b35a12f9d307bb864eb234d7971/build-end.log
Complete log   : http://autobuild.buildroot.net/results/47c321bf11588b35a12f9d307bb864eb234d7971/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/47c321bf11588b35a12f9d307bb864eb234d7971/config
Defconfig      : http://autobuild.buildroot.net/results/47c321bf11588b35a12f9d307bb864eb234d7971/defconfig

Build c52f1d640cc5c2f9eb38bbf0a5ea3e580dba5b00
==============================================

Status         : NOK
Failure reason : collectd-5.1.0
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 14:38:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/c52f1d640cc5c2f9eb38bbf0a5ea3e580dba5b00/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c52f1d640cc5c2f9eb38bbf0a5ea3e580dba5b00/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c52f1d640cc5c2f9eb38bbf0a5ea3e580dba5b00/config
Defconfig      : http://autobuild.buildroot.net/results/c52f1d640cc5c2f9eb38bbf0a5ea3e580dba5b00/defconfig

Build ed1f2e4e746ed5c5488fa24f8f0be8981806d239
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 14:55:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ed1f2e4e746ed5c5488fa24f8f0be8981806d239/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ed1f2e4e746ed5c5488fa24f8f0be8981806d239/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ed1f2e4e746ed5c5488fa24f8f0be8981806d239/config
Defconfig      : http://autobuild.buildroot.net/results/ed1f2e4e746ed5c5488fa24f8f0be8981806d239/defconfig

Build 52b1f751773902794f45c20cda6097c34606a25a
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 15:32:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/52b1f751773902794f45c20cda6097c34606a25a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/52b1f751773902794f45c20cda6097c34606a25a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/52b1f751773902794f45c20cda6097c34606a25a/config
Defconfig      : http://autobuild.buildroot.net/results/52b1f751773902794f45c20cda6097c34606a25a/defconfig

Build d0be241ef80533ab80ade70d2130c74185653fd2
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 15:34:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d0be241ef80533ab80ade70d2130c74185653fd2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d0be241ef80533ab80ade70d2130c74185653fd2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d0be241ef80533ab80ade70d2130c74185653fd2/config
Defconfig      : http://autobuild.buildroot.net/results/d0be241ef80533ab80ade70d2130c74185653fd2/defconfig

Build 7a32c84ec0f6f4e1faad9296244baf212320b37a
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 15:47:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/7a32c84ec0f6f4e1faad9296244baf212320b37a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7a32c84ec0f6f4e1faad9296244baf212320b37a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7a32c84ec0f6f4e1faad9296244baf212320b37a/config
Defconfig      : http://autobuild.buildroot.net/results/7a32c84ec0f6f4e1faad9296244baf212320b37a/defconfig

Build 0ca1a80c3f8e00ad3a3fa6243cb55626f0944440
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 15:49:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/0ca1a80c3f8e00ad3a3fa6243cb55626f0944440/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0ca1a80c3f8e00ad3a3fa6243cb55626f0944440/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0ca1a80c3f8e00ad3a3fa6243cb55626f0944440/config
Defconfig      : http://autobuild.buildroot.net/results/0ca1a80c3f8e00ad3a3fa6243cb55626f0944440/defconfig

Build f71d1f6fc4ad148ab71c3f122e8ed4fdd20afa7d
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 16:23:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f71d1f6fc4ad148ab71c3f122e8ed4fdd20afa7d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f71d1f6fc4ad148ab71c3f122e8ed4fdd20afa7d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f71d1f6fc4ad148ab71c3f122e8ed4fdd20afa7d/config
Defconfig      : http://autobuild.buildroot.net/results/f71d1f6fc4ad148ab71c3f122e8ed4fdd20afa7d/defconfig

Build aa82e10847fc47e6db9bc87d9f8d9aa1b2685ee4
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 16:28:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/aa82e10847fc47e6db9bc87d9f8d9aa1b2685ee4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aa82e10847fc47e6db9bc87d9f8d9aa1b2685ee4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aa82e10847fc47e6db9bc87d9f8d9aa1b2685ee4/config
Defconfig      : http://autobuild.buildroot.net/results/aa82e10847fc47e6db9bc87d9f8d9aa1b2685ee4/defconfig

Build 2a972129964698ea19c221d90a643181682ee94f
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 16:42:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2a972129964698ea19c221d90a643181682ee94f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2a972129964698ea19c221d90a643181682ee94f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2a972129964698ea19c221d90a643181682ee94f/config
Defconfig      : http://autobuild.buildroot.net/results/2a972129964698ea19c221d90a643181682ee94f/defconfig

Build 6830e0bd7ecd5cb58b029b4a40d0968a2ae91a85
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 16:56:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6830e0bd7ecd5cb58b029b4a40d0968a2ae91a85/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6830e0bd7ecd5cb58b029b4a40d0968a2ae91a85/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6830e0bd7ecd5cb58b029b4a40d0968a2ae91a85/config
Defconfig      : http://autobuild.buildroot.net/results/6830e0bd7ecd5cb58b029b4a40d0968a2ae91a85/defconfig

Build 1a12b2d67df7a129912d700443d31bdd662bea49
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 17:05:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/1a12b2d67df7a129912d700443d31bdd662bea49/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1a12b2d67df7a129912d700443d31bdd662bea49/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1a12b2d67df7a129912d700443d31bdd662bea49/config
Defconfig      : http://autobuild.buildroot.net/results/1a12b2d67df7a129912d700443d31bdd662bea49/defconfig

Build 4c2da4d9c4cded1dc276966c389a3845dd504eb7
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 17:18:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4c2da4d9c4cded1dc276966c389a3845dd504eb7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4c2da4d9c4cded1dc276966c389a3845dd504eb7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4c2da4d9c4cded1dc276966c389a3845dd504eb7/config
Defconfig      : http://autobuild.buildroot.net/results/4c2da4d9c4cded1dc276966c389a3845dd504eb7/defconfig

Build d5455c810510b5293805cf29213714dc1c8aecf2
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 18:13:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d5455c810510b5293805cf29213714dc1c8aecf2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d5455c810510b5293805cf29213714dc1c8aecf2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d5455c810510b5293805cf29213714dc1c8aecf2/config
Defconfig      : http://autobuild.buildroot.net/results/d5455c810510b5293805cf29213714dc1c8aecf2/defconfig

Build 840e8213a63fba6f42a1f22580e2f53938958521
==============================================

Status         : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 18:15:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/840e8213a63fba6f42a1f22580e2f53938958521/build-end.log
Complete log   : http://autobuild.buildroot.net/results/840e8213a63fba6f42a1f22580e2f53938958521/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/840e8213a63fba6f42a1f22580e2f53938958521/config
Defconfig      : http://autobuild.buildroot.net/results/840e8213a63fba6f42a1f22580e2f53938958521/defconfig

Build 4772d93f279e76ed0155a80dfafc5aa8a887a9a3
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 18:50:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4772d93f279e76ed0155a80dfafc5aa8a887a9a3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4772d93f279e76ed0155a80dfafc5aa8a887a9a3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4772d93f279e76ed0155a80dfafc5aa8a887a9a3/config
Defconfig      : http://autobuild.buildroot.net/results/4772d93f279e76ed0155a80dfafc5aa8a887a9a3/defconfig

Build 9e11de38609da89de55013948fe6842842a4897e
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 19:05:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9e11de38609da89de55013948fe6842842a4897e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9e11de38609da89de55013948fe6842842a4897e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9e11de38609da89de55013948fe6842842a4897e/config
Defconfig      : http://autobuild.buildroot.net/results/9e11de38609da89de55013948fe6842842a4897e/defconfig

Build 9a008b5f6c83912b2ac8c50c83bc59d4cb945cd5
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 19:15:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9a008b5f6c83912b2ac8c50c83bc59d4cb945cd5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9a008b5f6c83912b2ac8c50c83bc59d4cb945cd5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9a008b5f6c83912b2ac8c50c83bc59d4cb945cd5/config
Defconfig      : http://autobuild.buildroot.net/results/9a008b5f6c83912b2ac8c50c83bc59d4cb945cd5/defconfig

Build 296500aa64983b20f8b814e9c9efe1a7915450fa
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 19:24:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/296500aa64983b20f8b814e9c9efe1a7915450fa/build-end.log
Complete log   : http://autobuild.buildroot.net/results/296500aa64983b20f8b814e9c9efe1a7915450fa/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/296500aa64983b20f8b814e9c9efe1a7915450fa/config
Defconfig      : http://autobuild.buildroot.net/results/296500aa64983b20f8b814e9c9efe1a7915450fa/defconfig

Build 7098a93851d2534231fc1fa104b8b71c6098fc18
==============================================

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

Build bd2a0121c7cfc398a80e5ba62fcb5e0c995aa50d
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 19:51:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/bd2a0121c7cfc398a80e5ba62fcb5e0c995aa50d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bd2a0121c7cfc398a80e5ba62fcb5e0c995aa50d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bd2a0121c7cfc398a80e5ba62fcb5e0c995aa50d/config
Defconfig      : http://autobuild.buildroot.net/results/bd2a0121c7cfc398a80e5ba62fcb5e0c995aa50d/defconfig

Build c9ba91f5ddd63ffd54c7e80fa3db4d9cdc3c5597
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 20:18:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/c9ba91f5ddd63ffd54c7e80fa3db4d9cdc3c5597/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c9ba91f5ddd63ffd54c7e80fa3db4d9cdc3c5597/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c9ba91f5ddd63ffd54c7e80fa3db4d9cdc3c5597/config
Defconfig      : http://autobuild.buildroot.net/results/c9ba91f5ddd63ffd54c7e80fa3db4d9cdc3c5597/defconfig

Build 8b14dc7d889753f0f058aa3e81673804383f5902
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 20:32:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/8b14dc7d889753f0f058aa3e81673804383f5902/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8b14dc7d889753f0f058aa3e81673804383f5902/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8b14dc7d889753f0f058aa3e81673804383f5902/config
Defconfig      : http://autobuild.buildroot.net/results/8b14dc7d889753f0f058aa3e81673804383f5902/defconfig

Build 08897f6a3313a6448e2d766347af91d7c00b0b21
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 20:44:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/08897f6a3313a6448e2d766347af91d7c00b0b21/build-end.log
Complete log   : http://autobuild.buildroot.net/results/08897f6a3313a6448e2d766347af91d7c00b0b21/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/08897f6a3313a6448e2d766347af91d7c00b0b21/config
Defconfig      : http://autobuild.buildroot.net/results/08897f6a3313a6448e2d766347af91d7c00b0b21/defconfig

Build 06dfb0bcb0e9d92c057339c8cbc87f3afe19bed5
==============================================

Status         : NOK
Failure reason : python-2.7.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 21:05:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/06dfb0bcb0e9d92c057339c8cbc87f3afe19bed5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/06dfb0bcb0e9d92c057339c8cbc87f3afe19bed5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/06dfb0bcb0e9d92c057339c8cbc87f3afe19bed5/config
Defconfig      : http://autobuild.buildroot.net/results/06dfb0bcb0e9d92c057339c8cbc87f3afe19bed5/defconfig

Build 2010d86f6ec3edecd49485eb44535c983912a032
==============================================

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

Build 6409a6912714e3d4b7372d41a1b80be981c61877
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 21:32:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6409a6912714e3d4b7372d41a1b80be981c61877/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6409a6912714e3d4b7372d41a1b80be981c61877/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6409a6912714e3d4b7372d41a1b80be981c61877/config
Defconfig      : http://autobuild.buildroot.net/results/6409a6912714e3d4b7372d41a1b80be981c61877/defconfig

Build 656cd51c9c163097ada182e75995858eeb4fc475
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 21:32:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/656cd51c9c163097ada182e75995858eeb4fc475/build-end.log
Complete log   : http://autobuild.buildroot.net/results/656cd51c9c163097ada182e75995858eeb4fc475/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/656cd51c9c163097ada182e75995858eeb4fc475/config
Defconfig      : http://autobuild.buildroot.net/results/656cd51c9c163097ada182e75995858eeb4fc475/defconfig

Build 466a595a927457a5ecc1ecb6dbbb5a4b0ebc8c81
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 21:54:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/466a595a927457a5ecc1ecb6dbbb5a4b0ebc8c81/build-end.log
Complete log   : http://autobuild.buildroot.net/results/466a595a927457a5ecc1ecb6dbbb5a4b0ebc8c81/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/466a595a927457a5ecc1ecb6dbbb5a4b0ebc8c81/config
Defconfig      : http://autobuild.buildroot.net/results/466a595a927457a5ecc1ecb6dbbb5a4b0ebc8c81/defconfig

Build 501f068515d1719aa4e64095e63bde92bc1912d4
==============================================

Status         : NOK
Failure reason : xlib_libXt-1.0.9
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 22:00:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/501f068515d1719aa4e64095e63bde92bc1912d4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/501f068515d1719aa4e64095e63bde92bc1912d4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/501f068515d1719aa4e64095e63bde92bc1912d4/config
Defconfig      : http://autobuild.buildroot.net/results/501f068515d1719aa4e64095e63bde92bc1912d4/defconfig

Build 508beb39631f6bce3d755b59fad33bb6f6c71834
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 22:02:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/508beb39631f6bce3d755b59fad33bb6f6c71834/build-end.log
Complete log   : http://autobuild.buildroot.net/results/508beb39631f6bce3d755b59fad33bb6f6c71834/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/508beb39631f6bce3d755b59fad33bb6f6c71834/config
Defconfig      : http://autobuild.buildroot.net/results/508beb39631f6bce3d755b59fad33bb6f6c71834/defconfig

Build 0b698c04c3467bb3c1456f36bda1f5d058872972
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 22:40:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/0b698c04c3467bb3c1456f36bda1f5d058872972/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0b698c04c3467bb3c1456f36bda1f5d058872972/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0b698c04c3467bb3c1456f36bda1f5d058872972/config
Defconfig      : http://autobuild.buildroot.net/results/0b698c04c3467bb3c1456f36bda1f5d058872972/defconfig

Build 25de1747885e50e57442594ab8702f87f5de58b1
==============================================

Status         : NOK
Failure reason : host-libffi-3.0.11
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:10:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/25de1747885e50e57442594ab8702f87f5de58b1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/25de1747885e50e57442594ab8702f87f5de58b1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/25de1747885e50e57442594ab8702f87f5de58b1/config
Defconfig      : http://autobuild.buildroot.net/results/25de1747885e50e57442594ab8702f87f5de58b1/defconfig

Build 82d41aa5260dc2199e6fd87ac1bfed840d9f11be
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:10:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/82d41aa5260dc2199e6fd87ac1bfed840d9f11be/build-end.log
Complete log   : http://autobuild.buildroot.net/results/82d41aa5260dc2199e6fd87ac1bfed840d9f11be/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/82d41aa5260dc2199e6fd87ac1bfed840d9f11be/config
Defconfig      : http://autobuild.buildroot.net/results/82d41aa5260dc2199e6fd87ac1bfed840d9f11be/defconfig

Build 22e0cbedb1dfb30ee7edc3de4f42aa4fef5ac779
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:10:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/22e0cbedb1dfb30ee7edc3de4f42aa4fef5ac779/build-end.log
Complete log   : http://autobuild.buildroot.net/results/22e0cbedb1dfb30ee7edc3de4f42aa4fef5ac779/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/22e0cbedb1dfb30ee7edc3de4f42aa4fef5ac779/config
Defconfig      : http://autobuild.buildroot.net/results/22e0cbedb1dfb30ee7edc3de4f42aa4fef5ac779/defconfig

Build 9ed7527f793fdff3c53e83b907d1daddcdb124b6
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:10:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9ed7527f793fdff3c53e83b907d1daddcdb124b6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9ed7527f793fdff3c53e83b907d1daddcdb124b6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9ed7527f793fdff3c53e83b907d1daddcdb124b6/config
Defconfig      : http://autobuild.buildroot.net/results/9ed7527f793fdff3c53e83b907d1daddcdb124b6/defconfig

Build 1516fed767283eece0769c5e869a631352403d8f
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:11:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/1516fed767283eece0769c5e869a631352403d8f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1516fed767283eece0769c5e869a631352403d8f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1516fed767283eece0769c5e869a631352403d8f/config
Defconfig      : http://autobuild.buildroot.net/results/1516fed767283eece0769c5e869a631352403d8f/defconfig

Build 2c73c8e6e18ec1297f6d0a5f0c5278dedc731c94
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:11:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2c73c8e6e18ec1297f6d0a5f0c5278dedc731c94/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2c73c8e6e18ec1297f6d0a5f0c5278dedc731c94/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2c73c8e6e18ec1297f6d0a5f0c5278dedc731c94/config
Defconfig      : http://autobuild.buildroot.net/results/2c73c8e6e18ec1297f6d0a5f0c5278dedc731c94/defconfig

Build 0c8ea7f0b31c6bdd710f17531a20bd8f37dff368
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:11:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/0c8ea7f0b31c6bdd710f17531a20bd8f37dff368/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0c8ea7f0b31c6bdd710f17531a20bd8f37dff368/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0c8ea7f0b31c6bdd710f17531a20bd8f37dff368/config
Defconfig      : http://autobuild.buildroot.net/results/0c8ea7f0b31c6bdd710f17531a20bd8f37dff368/defconfig

Build 17eaf833360a905f4535112df6b77e44e83e10dd
==============================================

Status         : NOK
Failure reason : grantlee-0.2.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 23:19:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/17eaf833360a905f4535112df6b77e44e83e10dd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/17eaf833360a905f4535112df6b77e44e83e10dd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/17eaf833360a905f4535112df6b77e44e83e10dd/config
Defconfig      : http://autobuild.buildroot.net/results/17eaf833360a905f4535112df6b77e44e83e10dd/defconfig

Build 1357be00b01c73d3680bae5c490c72d6b4d16c7c
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 23:26:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/1357be00b01c73d3680bae5c490c72d6b4d16c7c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1357be00b01c73d3680bae5c490c72d6b4d16c7c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1357be00b01c73d3680bae5c490c72d6b4d16c7c/config
Defconfig      : http://autobuild.buildroot.net/results/1357be00b01c73d3680bae5c490c72d6b4d16c7c/defconfig

Build b0940e8e31d3bbe51793b59b8af52b1a9a2aaec7
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 23:30:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b0940e8e31d3bbe51793b59b8af52b1a9a2aaec7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b0940e8e31d3bbe51793b59b8af52b1a9a2aaec7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b0940e8e31d3bbe51793b59b8af52b1a9a2aaec7/config
Defconfig      : http://autobuild.buildroot.net/results/b0940e8e31d3bbe51793b59b8af52b1a9a2aaec7/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] Various problem using buildroot-2012.05
From: Thomas Petazzoni @ 2012-11-12  7:36 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A03D29.7070608@petroprogram.com>

Stefan,

On Mon, 12 Nov 2012 02:04:57 +0200, Stefan Fr?berg wrote:

> Another "little" difficult case is Python.
> 
> Even tought Python uses autotools, it (and Perl) will always be the
> worst cross-compile
> friendly citizens in my book.
> Way back, before buildroot, I tried many times to cross-compile it in
> Mingw32 environment and it was an
> absolute nightmare. With Perl I had even less luck.

So far, Python has been relatively manageable and what have a bunch of
Python modules that work.

> Every time I find an interesting open source project that I would like
> to try and cross-compile,
> I will make an silent prayer to God's of programmers that the build
> system that is revealed from
> tarball will be a GNU autoconf script (or even cmake one for God's
> sake) and not
> some hodge-bodge, custom made, configuration nightmare.

I agree that custom made build systems are a pain. However, from my
(possibly naive and idealist) perspective, the right solution to these
is to fix them rather than workarounding the problem using native
compilation on the target.

Best regards,

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

^ permalink raw reply


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