* [Buildroot] [git commit] perl: build with perlcross instead of qemu
From: Peter Korsgaard @ 2012-11-09 9:04 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
The perlcross project makes it possible to properly cross-compile
perl. It creates a host-miniperl that is configured for the target
and uses that to cross-compile the perl modules.
Unfortunately there are still a few hacks needed to make it work.
Proper fixes can be developed and upstreamed later.
Since there is no longer a dependency on qemu, it works on all
architectures again.
Also removed some config options:
- BR2_PACKAGE_PERL_CUSTOM_INSTALL just allows a selection of modules;
this can also be encoded by an empty BR2_PACKAGE_PERL_MODULES.
- BR2_PACKAGE_PERL_DB_FILE and BR2_PACKAGE_PERL_GDBM_FILE can be
derived automatically from the package configs.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/perl/Config.in | 40 +++----------
package/perl/perl.mk | 153 ++++++++++++++++++++----------------------------
2 files changed, 71 insertions(+), 122 deletions(-)
diff --git a/package/perl/Config.in b/package/perl/Config.in
index 0642deb..b2991b0 100644
--- a/package/perl/Config.in
+++ b/package/perl/Config.in
@@ -1,12 +1,5 @@
config BR2_PACKAGE_PERL
bool "perl"
- depends on !BR2_avr32
- depends on !BR2_bfin
- depends on !BR2_sh2
- depends on !BR2_sh2a
- depends on !BR2_sh3
- depends on !BR2_sh3eb
- depends on !BR2_sh64
help
Larry Wall's Practical Extraction and Report Language
An interpreted scripting language, known among some as "Unix's Swiss
@@ -16,35 +9,18 @@ config BR2_PACKAGE_PERL
if BR2_PACKAGE_PERL
-config BR2_PACKAGE_PERL_CUSTOM_INSTALL
- bool "custom install"
- help
- Don't use the full install target
- Install only a selection of modules (like microperl).
-
config BR2_PACKAGE_PERL_MODULES
- string "additional modules"
- depends on BR2_PACKAGE_PERL_CUSTOM_INSTALL
+ string "custom module selection"
help
- List of space-separated perl modules to copy to the rootfs.
-
- Examples: constant.pm Getopt/Std.pm Time/Local.pm
+ List of space-separated perl modules (without .pm) to copy to the
+ rootfs.
- Module dependencies are not automatic so check your needs.
+ Examples: constant Getopt/Std Time/Local
-config BR2_PACKAGE_PERL_DB_FILE
- bool "DB_File"
- select BR2_PACKAGE_BERKELEYDB
- help
- Build the DB_File module.
+ Module dependencies on external libraries are not automatic so
+ check your needs.
-config BR2_PACKAGE_PERL_GDBM_FILE
- bool "GDBM_File"
- select BR2_PACKAGE_GDBM
- help
- Build the GDBM_File module.
+ Leave empty for all modules (as far as the external libraries
+ are available).
endif
-
-comment "perl requires an architecture supported by qemu"
- depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64
diff --git a/package/perl/perl.mk b/package/perl/perl.mk
index 81dff04..f3c73dd 100644
--- a/package/perl/perl.mk
+++ b/package/perl/perl.mk
@@ -12,7 +12,26 @@ PERL_LICENSE = Artistic
PERL_LICENSE_FILES = Artistic
PERL_INSTALL_STAGING = YES
-PERL_DEPENDENCIES = host-qemu
+PERL_CROSS_VERSION = 0.7
+PERL_CROSS_SITE = http://download.berlios.de/perlcross
+PERL_CROSS_SOURCE = perl-5.$(PERL_VERSION_MAJOR).0-cross-$(PERL_CROSS_VERSION).tar.gz
+
+# We use the perlcross hack to cross-compile perl. It should
+# be extracted over the perl sources, so we don't define that
+# as a separate package. Instead, it is downloaded and extracted
+# together with perl
+
+define PERL_CROSS_DOWNLOAD
+ $(call DOWNLOAD,$(PERL_CROSS_SITE)/$(PERL_CROSS_SOURCE))
+endef
+PERL_POST_DOWNLOAD_HOOKS += PERL_CROSS_DOWNLOAD
+
+define PERL_CROSS_EXTRACT
+ $(INFLATE$(suffix $(PERL_CROSS_SOURCE))) $(DL_DIR)/$(PERL_CROSS_SOURCE) | \
+ $(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(@D) $(TAR_OPTIONS) -
+endef
+PERL_POST_EXTRACT_HOOKS += PERL_CROSS_EXTRACT
+
ifeq ($(BR2_PACKAGE_BERKELEYDB),y)
PERL_DEPENDENCIES += berkeleydb
endif
@@ -20,23 +39,31 @@ ifeq ($(BR2_PACKAGE_GDBM),y)
PERL_DEPENDENCIES += gdbm
endif
-PERL_CONF_OPT = -des \
- -Dusecrosscompile \
- -Dtargetrun=$(QEMU_USER) \
- -Dqemulib=$(STAGING_DIR) \
- -Dar="$(TARGET_AR)" \
- -Dcc="$(TARGET_CC)" \
- -Dcpp="$(TARGET_CC)" \
- -Dld="$(TARGET_LD)" \
- -Dnm="$(TARGET_NM)" \
- -Dranlib="$(TARGET_RANLIB)" \
- -Dccflags="$(TARGET_CFLAGS)" \
- -Dldflags="$(TARGET_LDFLAGS) -lgcc_s -lm" \
- -Dlddlflags="-shared" \
- -Dlibc=$(STAGING_DIR)/lib/libc.so \
- -Duseshrplib \
- -Dprefix=/usr \
- -Uoptimize
+# Normally, --mode=cross should automatically do the two steps
+# below, but it doesn't work for some reason.
+PERL_HOST_CONF_OPT = \
+ --mode=buildmini \
+ --target=$(GNU_TARGET_NAME) \
+ --target-arch=$(GNU_TARGET_NAME) \
+ --set-target-name=$(GNU_TARGET_NAME)
+
+# We have to override LD, because an external multilib toolchain ld is not
+# wrapped to provide the required sysroot options. We also can't use ccache
+# because the configure script doesn't support it.
+PERL_CONF_OPT = \
+ --mode=target \
+ --target=$(GNU_TARGET_NAME) \
+ --target-tools-prefix=$(TARGET_CROSS) \
+ --prefix=/usr \
+ -Dld="$(TARGET_CC_NOCCACHE)" \
+ -A ccflags="$(TARGET_CFLAGS)" \
+ -A ldflags="$(TARGET_LDFLAGS) -lm" \
+ -A mydomain="" \
+ -A myhostname="$(BR2_TARGET_GENERIC_HOSTNAME)" \
+ -A myuname="Buildroot $(BR2_VERSION_FULL)" \
+ -A osname=linux \
+ -A osvers=$(LINUX_VERSION) \
+ -A perlamdin=root
ifeq ($(shell expr $(PERL_VERSION_MAJOR) % 2), 1)
PERL_CONF_OPT += -Dusedevel
@@ -46,93 +73,39 @@ ifneq ($(BR2_LARGEFILE),y)
PERL_CONF_OPT += -Uuselargefiles
endif
+PERL_MODULES = $(call qstrip,$(BR2_PACKAGE_PERL_MODULES))
+ifneq ($(PERL_MODULES),)
+PERL_CONF_OPT += --only-mod=$(subst $(space),$(comma),$(PERL_MODULES))
+endif
+
define PERL_CONFIGURE_CMDS
- rm -f $(@D)/config.sh
- (cd $(@D); ./Configure $(PERL_CONF_OPT))
- echo "# patched values" >>$(@D)/config.sh
- $(SED) '/^myarchname=/d' \
- -e '/^mydomain=/d' \
- -e '/^myhostname=/d' \
- -e '/^myuname=/d' \
- -e '/^osname=/d' \
- -e '/^osvers=/d' \
- -e '/^perladmin=/d' \
- $(@D)/config.sh
- echo "myarchname='$(GNU_TARGET_NAME)'" >>$(@D)/config.sh
- echo "mydomain=''" >>$(@D)/config.sh
- echo "myhostname='$(BR2_TARGET_GENERIC_HOSTNAME)'" >>$(@D)/config.sh
- echo "myuname='Buildroot $(BR2_VERSION_FULL)'" >>$(@D)/config.sh
- echo "osname='linux'" >>$(@D)/config.sh
- echo "osvers='$(BR2_LINUX_KERNEL_VERSION)'" >>$(@D)/config.sh
- echo "perladmin='root'" >>$(@D)/config.sh
- (cd $(@D); ./Configure -S)
- cp $(@D)/config.h $(@D)/xconfig.h
+ (cd $(@D); HOSTCC='$(HOSTCC_NOCACHE)' ./configure $(PERL_HOST_CONF_OPT))
+ (cd $(@D); ./configure $(PERL_CONF_OPT))
$(SED) 's/UNKNOWN-/Buildroot $(BR2_VERSION_FULL) /' $(@D)/patchlevel.h
endef
+# perlcross's miniperl_top forgets base, which is required by mktables.
+# Instead of patching, it's easier to just set PERL5LIB
define PERL_BUILD_CMDS
- echo "#!/bin/sh" > $(@D)/Cross/miniperl
- echo "$(QEMU_USER) $(@D)/miniperl \"\$$@\"" >>$(@D)/Cross/miniperl
- chmod +x $(@D)/Cross/miniperl
- PERL_MM_OPT="PERL=$(@D)/Cross/miniperl" \
- $(MAKE) -C $(@D) all
+ PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) perl modules
endef
define PERL_INSTALL_STAGING_CMDS
- $(MAKE) INSTALL_DEPENDENCE= \
- INSTALLFLAGS= \
- DESTDIR="$(STAGING_DIR)" \
- -C $(@D) install.perl
+ PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) DESTDIR="$(STAGING_DIR)" install.perl
endef
-PERL_RUN_PERL = $(QEMU_USER) $(@D)/perl -Ilib
-PERL_ARCHNAME = $(shell $(PERL_RUN_PERL) -MConfig -e "print Config->{archname}")
-PERL_LIB = $(TARGET_DIR)/usr/lib/perl5/$(PERL_VERSION)
-PERL_ARCHLIB = $(PERL_LIB)/$(PERL_ARCHNAME)
-PERL_MODS = $(call qstrip,$(BR2_PACKAGE_PERL_MODULES))
-# Minimal set of modules required for 'perl -V' to work
-PERL_ARCH_MODS = Config.pm Config_git.pl Config_heavy.pl
-PERL_BASE_MODS = strict.pm vars.pm warnings.pm warnings/register.pm
-
-define PERL_INSTALL_MODULES
- for i in $(PERL_ARCH_MODS); do \
- $(INSTALL) -m 0644 -D $(@D)/lib/$$i $(PERL_ARCHLIB)/$$i; \
- done
- for i in $(PERL_BASE_MODS); do \
- $(INSTALL) -m 0644 -D $(@D)/lib/$$i $(PERL_LIB)/$$i; \
- done
- for i in $(PERL_MODS); do \
- j=`echo $$i|cut -d : -f 1` ; \
- if [ -d $(@D)/lib/$$j ] ; then \
- cp -af $(@D)/lib/$$j $(PERL_LIB) ; \
- fi ; \
- if [ -f $(@D)/lib/$$i ] ; then \
- $(INSTALL) -m 0644 -D $(@D)/lib/$$i $(PERL_LIB)/$$i; \
- fi ; \
- done
- # Remove test files
- find $(PERL_LIB) -type f -name *.t -exec rm -f {} \;
-endef
+PERL_INSTALL_TARGET_GOALS = install.perl
+ifeq ($(BR2_HAVE_DOCUMENTATION),y)
+PERL_INSTALL_TARGET_GOALS += install.man
+endif
+
-ifeq ($(BR2_PACKAGE_PERL_CUSTOM_INSTALL),y)
-define PERL_INSTALL_TARGET_CMDS
- $(INSTALL) -m 0755 -D $(@D)/perl $(TARGET_DIR)/usr/bin/perl
- $(INSTALL) -m 0755 -D $(@D)/libperl.so $(PERL_ARCHLIB)/CORE/libperl.so
- $(PERL_INSTALL_MODULES)
-endef
-else
define PERL_INSTALL_TARGET_CMDS
- $(MAKE) INSTALL_DEPENDENCE= \
- INSTALLFLAGS=-p \
- DESTDIR="$(TARGET_DIR)" \
- -C $(@D) install.perl
- rm -f $(PERL_ARCHLIB)/CORE/*.h
- find $(PERL_ARCHLIB) -type f -name *.bs -exec rm -f {} \;
+ PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) DESTDIR="$(TARGET_DIR)" $(PERL_INSTALL_TARGET_GOALS)
endef
-endif
define PERL_CLEAN_CMDS
- -$(MAKE) -C $(@D) clean
+ -$(MAKE1) -C $(@D) clean
endef
$(eval $(generic-package))
^ permalink raw reply related
* [Buildroot] [PATCH] add new package grantlee
From: Peter Korsgaard @ 2012-11-09 8:58 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1351715883-10799-1-git-send-email-mr.zoltan.gyarmati@gmail.com>
>>>>> "Zoltan" == Zoltan <Zoltan@osuosl.org> writes:
Zoltan> From: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
Zoltan> Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
Zoltan> ---
Zoltan> package/Config.in | 1 +
Zoltan> package/grantlee/Config.in | 9 +++++++++
Zoltan> package/grantlee/grantlee.mk | 13 +++++++++++++
Zoltan> 3 files changed, 23 insertions(+)
Zoltan> create mode 100644 package/grantlee/Config.in
Zoltan> create mode 100644 package/grantlee/grantlee.mk
Zoltan> diff --git a/package/Config.in b/package/Config.in
Zoltan> index ab966e0..ef68b37 100644
Zoltan> --- a/package/Config.in
Zoltan> +++ b/package/Config.in
Zoltan> @@ -139,6 +139,7 @@ source "package/qt/Config.in"
Zoltan> if BR2_PACKAGE_QT
Zoltan> comment "QT libraries and helper libraries"
Zoltan> source "package/qtuio/Config.in"
Zoltan> +source "package/grantlee/Config.in"
We normally sort entries alphabetically, so I put it over qtuio and
committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] perl: build with perlcross instead of qemu
From: Alexander Khryukin @ 2012-11-09 8:58 UTC (permalink / raw)
To: buildroot
In-Reply-To: <878vab8cr8.fsf@dell.be.48ers.dk>
2012/11/9 Peter Korsgaard <jacmet@uclibc.org>
> >>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> writes:
>
> Hi,
>
> Arnout> Peter, if Francois confirms that the perl binary actually runs
> Arnout> and if he has no other concerns, then I'd commit this patch
> Arnout> quickly and wait for the autobuilder fallout.
>
> I completely agree, thanks for doing this!
>
> --
> Bye, Peter Korsgaard
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
How about to include perl-cross into buildroot packages?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121109/d206e606/attachment.html>
^ permalink raw reply
* [Buildroot] [git commit] add new package grantlee
From: Peter Korsgaard @ 2012-11-09 8:56 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=062129c16eeea69c72d7d65b109bc7667449cb71
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
[Peter: sort alphabetically in Config.in]
Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/Config.in | 1 +
package/grantlee/Config.in | 9 +++++++++
package/grantlee/grantlee.mk | 13 +++++++++++++
3 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/package/Config.in b/package/Config.in
index 2ab6b6e..074e9df 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -138,6 +138,7 @@ source "package/qt/Config.in"
if BR2_PACKAGE_QT
comment "QT libraries and helper libraries"
+source "package/grantlee/Config.in"
source "package/qextserialport/Config.in"
source "package/qtuio/Config.in"
endif
diff --git a/package/grantlee/Config.in b/package/grantlee/Config.in
new file mode 100644
index 0000000..84afad2
--- /dev/null
+++ b/package/grantlee/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_GRANTLEE
+ bool "grantlee"
+ select BR2_PACKAGE_QT_STL
+ select BR2_PACKAGE_QT_SCRIPT
+ select BR2_PACKAGE_QT_GUI_MODULE
+ help
+ Qt implemantation of the Django template framework
+
+ http://www.grantlee.org
diff --git a/package/grantlee/grantlee.mk b/package/grantlee/grantlee.mk
new file mode 100644
index 0000000..10adfd9
--- /dev/null
+++ b/package/grantlee/grantlee.mk
@@ -0,0 +1,13 @@
+#############################################################
+#
+# grantlee
+#
+#############################################################
+
+GRANTLEE_VERSION = 0.2.0
+GRANTLEE_SITE = http://downloads.grantlee.org
+GRANTLEE_INSTALL_STAGING = YES
+GRANTLEE_DEPENDENCIES = qt
+
+$(eval $(cmake-package))
+
^ permalink raw reply related
* [Buildroot] [PATCH] xlib_libX11: fix compilation of makekeys
From: Peter Korsgaard @ 2012-11-09 8:22 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121109090946.3c88e6f2@skate>
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> Dear Arnout Vandecappelle,
Thomas> On Thu, 08 Nov 2012 22:43:18 +0100, Arnout Vandecappelle wrote:
>> Indeed, and this patch fixes that. It's a different symptom of the same
>> error: makekeys is a host binary, but it's built with target CFLAGS
>> (X11_CFLAGS = -I$(STAGING_DIR)/usr/include). This will barf in surprising
>> ways.
>>
>> (That is, unless you have an autobuilder that runs against a git tree that
>> has already integrated this patch; if that is the case, then I made a
>> mistake somewhere.)
Thomas> Aaah, your patch hasn't been integrated yet. My bad. Peter, could you
Thomas> merge Arnout's patch then?
I did this morning (but forgot to push before now).
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-11-08
From: Thomas Petazzoni @ 2012-11-09 8:17 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAGm1_kt9vX6NvVXxSESARNAVbgLA0kMjFx61hzvg+B7HtnRkeg@mail.gmail.com>
Dear Yegor Yefremov,
On Fri, 9 Nov 2012 08:46:32 +0100, Yegor Yefremov wrote:
> > Build 6b6c23641e5e166f15142d6127029314c91d87a2
> > ==============================================
> >
> > Status : NOK
> > Failure reason : xapp_mkfontdir-1.0.7
> > Architecture : arm
> > Submitted by : Peter Korsgaard (gcc10)
> > Submitted at : 2012-11-08 01:33:06
> > Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
> > End of log : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/build-end.log
> > Complete log : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/build.log.bz2
> > Configuration : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/config
> > Defconfig : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/defconfig
>
> Just tried "wget
> http://xorg.freedesktop.org/releases/individual/app/mkfontdir-1.0.7.tar.bz2"
> and had no problems.
Seems like a temporary network or server availability problem. I've
just tried to wget this file from gcc10 right now, and it worked
nicely. So I guess we can just discard this build failure.
> Btw have you tried to compile xdm with the latest
> BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203=y for OMAP3? gcc
> consumes 100% CPU time but build/link process doesn't advance. With
> the previous toolchain version xdm has no problems, but alsamixer
> shows run-time error related to libc. Haven't tested the stuff with
> Linaro toolchain yet.
I haven't tried, but unfortunately yes those external toolchain
specific bugs sometimes show up. It would be great to report the issue
to Sourcery CodeBench people. Normally, my autobuilder script handles
this case properly as it times out if a build takes too long.
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 0/2] add support for xtensa back to buildroot
From: Thomas Petazzoni @ 2012-11-09 8:14 UTC (permalink / raw)
To: buildroot
In-Reply-To: <509C8B4F.6000308@zankel.net>
Hello Chris,
On Thu, 08 Nov 2012 20:49:19 -0800, Chris Zankel wrote:
> I understand your concern, and I guess it won't help that I had patches
> to clean up Buildroot for Xtensa laying around for over a year :-[ So,
> my promise would be to actually submit patches when I have them.
>
> Part of the problem was that it wasn't just Buildroot, but other parts
> (uClibc, kernel, etc.) were also missing or having outdated changes, so
> it would have required to push a lot of patches. I have been working to
> get those patches in the corresponding trees first, and Buildroot
> actually now builds and runs out of the box on Xtensa with just those
> two patches and a generic patch for uClibc-snapshot. So, maintainability
> and detecting breakage will be much easier, and I intend to verify it on
> a more regular basis.
>
> I'll send an updated version of the two patches where Crosstool-NG is
> disabled for Xtensa.
Excellent, sounds good.
I've also seen that Qemu has an Xtensa support. It would be nice if you
could create a qemu_xtensa_<somemachine>_defconfig with the necessary
kernel configuration and al (see other qemu_<foo>_defconfig that we
have in configs/) so that other people could build a Xtensa userspace
and run it inside qemu. At the moment, the qemu-system-xtensa supports
the following machines:
$ qemu-system-xtensa -M ?
Supported machines are:
none empty machine
lx60 lx60 EVB (dc232b)
lx200 lx200 EVB (dc232b)
sim sim machine (dc232b) (default)
Thanks!
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-11-08
From: Peter Korsgaard @ 2012-11-09 8:14 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAGm1_kt9vX6NvVXxSESARNAVbgLA0kMjFx61hzvg+B7HtnRkeg@mail.gmail.com>
>>>>> "Yegor" == Yegor Yefremov <yegorslists@googlemail.com> writes:
>> Build 6b6c23641e5e166f15142d6127029314c91d87a2
>> ==============================================
>>
>> Status : NOK
>> Failure reason : xapp_mkfontdir-1.0.7
>> Architecture : arm
>> Submitted by : Peter Korsgaard (gcc10)
>> Submitted at : 2012-11-08 01:33:06
>> Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
>> End of log : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/build-end.log
>> Complete log : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/build.log.bz2
>> Configuration : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/config
>> Defconfig : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/defconfig
Yegor> Just tried "wget
Yegor> http://xorg.freedesktop.org/releases/individual/app/mkfontdir-1.0.7.tar.bz2"
Yegor> and had no problems.
Probably it was just a temporary issue with freedesktop.
Yegor> Btw have you tried to compile xdm with the latest
Yegor> BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203=y for OMAP3? gcc
Yegor> consumes 100% CPU time but build/link process doesn't advance. With
Yegor> the previous toolchain version xdm has no problems, but alsamixer
Yegor> shows run-time error related to libc. Haven't tested the stuff with
Yegor> Linaro toolchain yet.
:/ No I haven't.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] xlib_libX11: fix compilation of makekeys
From: Thomas Petazzoni @ 2012-11-09 8:09 UTC (permalink / raw)
To: buildroot
In-Reply-To: <509C2776.2060706@mind.be>
Dear Arnout Vandecappelle,
On Thu, 08 Nov 2012 22:43:18 +0100, Arnout Vandecappelle wrote:
> Indeed, and this patch fixes that. It's a different symptom of the same
> error: makekeys is a host binary, but it's built with target CFLAGS
> (X11_CFLAGS = -I$(STAGING_DIR)/usr/include). This will barf in surprising
> ways.
>
> (That is, unless you have an autobuilder that runs against a git tree that
> has already integrated this patch; if that is the case, then I made a
> mistake somewhere.)
Aaah, your patch hasn't been integrated yet. My bad. Peter, could you
merge Arnout's patch then?
Thanks,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-11-08
From: Yegor Yefremov @ 2012-11-09 7:46 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121109073404.B9B4552C106@lolut.humanoidz.org>
> Build 6b6c23641e5e166f15142d6127029314c91d87a2
> ==============================================
>
> Status : NOK
> Failure reason : xapp_mkfontdir-1.0.7
> Architecture : arm
> Submitted by : Peter Korsgaard (gcc10)
> Submitted at : 2012-11-08 01:33:06
> Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
> End of log : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/build-end.log
> Complete log : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/build.log.bz2
> Configuration : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/config
> Defconfig : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/defconfig
Just tried "wget
http://xorg.freedesktop.org/releases/individual/app/mkfontdir-1.0.7.tar.bz2"
and had no problems.
Btw have you tried to compile xdm with the latest
BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203=y for OMAP3? gcc
consumes 100% CPU time but build/link process doesn't advance. With
the previous toolchain version xdm has no problems, but alsamixer
shows run-time error related to libc. Haven't tested the stuff with
Linaro toolchain yet.
Yegor
^ permalink raw reply
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-11-08
From: Thomas Petazzoni @ 2012-11-09 7:34 UTC (permalink / raw)
To: buildroot
Hello,
On 2012-11-08, 206 random build tests have been done and
submitted on autobuild.buildroot.net.
37 builds have been successful
169 builds have failed
Below the results of the failed builds. Successful builds are omitted.
Build 4bc470a9c4b898367da99dcae88ac5eaf48307ab
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 00:36:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/4bc470a9c4b898367da99dcae88ac5eaf48307ab/build-end.log
Complete log : http://autobuild.buildroot.net/results/4bc470a9c4b898367da99dcae88ac5eaf48307ab/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4bc470a9c4b898367da99dcae88ac5eaf48307ab/config
Defconfig : http://autobuild.buildroot.net/results/4bc470a9c4b898367da99dcae88ac5eaf48307ab/defconfig
Build 44956386e1b999f46645991308b2896eefbc7008
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 00:39:26
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/44956386e1b999f46645991308b2896eefbc7008/build-end.log
Complete log : http://autobuild.buildroot.net/results/44956386e1b999f46645991308b2896eefbc7008/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/44956386e1b999f46645991308b2896eefbc7008/config
Defconfig : http://autobuild.buildroot.net/results/44956386e1b999f46645991308b2896eefbc7008/defconfig
Build 0e87ad8d7d49eb5721f825b8343c03a366f20f29
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 00:42:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/0e87ad8d7d49eb5721f825b8343c03a366f20f29/build-end.log
Complete log : http://autobuild.buildroot.net/results/0e87ad8d7d49eb5721f825b8343c03a366f20f29/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0e87ad8d7d49eb5721f825b8343c03a366f20f29/config
Defconfig : http://autobuild.buildroot.net/results/0e87ad8d7d49eb5721f825b8343c03a366f20f29/defconfig
Build 1611af4c94c8ddbb7e3f0e7aafba6a38906ebfac
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 01:05:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/1611af4c94c8ddbb7e3f0e7aafba6a38906ebfac/build-end.log
Complete log : http://autobuild.buildroot.net/results/1611af4c94c8ddbb7e3f0e7aafba6a38906ebfac/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1611af4c94c8ddbb7e3f0e7aafba6a38906ebfac/config
Defconfig : http://autobuild.buildroot.net/results/1611af4c94c8ddbb7e3f0e7aafba6a38906ebfac/defconfig
Build 9126ff3e4384773729492ca67f2c81b711cc2a4d
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 01:11:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/9126ff3e4384773729492ca67f2c81b711cc2a4d/build-end.log
Complete log : http://autobuild.buildroot.net/results/9126ff3e4384773729492ca67f2c81b711cc2a4d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9126ff3e4384773729492ca67f2c81b711cc2a4d/config
Defconfig : http://autobuild.buildroot.net/results/9126ff3e4384773729492ca67f2c81b711cc2a4d/defconfig
Build df01ffc3a0cdb8dfcb84cc48e4a41079a897232c
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 01:11:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/df01ffc3a0cdb8dfcb84cc48e4a41079a897232c/build-end.log
Complete log : http://autobuild.buildroot.net/results/df01ffc3a0cdb8dfcb84cc48e4a41079a897232c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/df01ffc3a0cdb8dfcb84cc48e4a41079a897232c/config
Defconfig : http://autobuild.buildroot.net/results/df01ffc3a0cdb8dfcb84cc48e4a41079a897232c/defconfig
Build 3d23a3cd67414e25bb77e16da721b0e48947cd26
==============================================
Status : NOK
Failure reason : directfb-1.4.17
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 01:19:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/3d23a3cd67414e25bb77e16da721b0e48947cd26/build-end.log
Complete log : http://autobuild.buildroot.net/results/3d23a3cd67414e25bb77e16da721b0e48947cd26/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3d23a3cd67414e25bb77e16da721b0e48947cd26/config
Defconfig : http://autobuild.buildroot.net/results/3d23a3cd67414e25bb77e16da721b0e48947cd26/defconfig
Build 6b6c23641e5e166f15142d6127029314c91d87a2
==============================================
Status : NOK
Failure reason : xapp_mkfontdir-1.0.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 01:33:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/build-end.log
Complete log : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/config
Defconfig : http://autobuild.buildroot.net/results/6b6c23641e5e166f15142d6127029314c91d87a2/defconfig
Build 26dcea8fb5c7a1f4b88cf70d644666c8528b4400
==============================================
Status : NOK
Failure reason : mplayer-1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 01:45:43
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/26dcea8fb5c7a1f4b88cf70d644666c8528b4400/build-end.log
Complete log : http://autobuild.buildroot.net/results/26dcea8fb5c7a1f4b88cf70d644666c8528b4400/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/26dcea8fb5c7a1f4b88cf70d644666c8528b4400/config
Defconfig : http://autobuild.buildroot.net/results/26dcea8fb5c7a1f4b88cf70d644666c8528b4400/defconfig
Build 18536952f91416899a1b876b8bfc01a4ff928622
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 02:02:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/18536952f91416899a1b876b8bfc01a4ff928622/build-end.log
Complete log : http://autobuild.buildroot.net/results/18536952f91416899a1b876b8bfc01a4ff928622/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/18536952f91416899a1b876b8bfc01a4ff928622/config
Defconfig : http://autobuild.buildroot.net/results/18536952f91416899a1b876b8bfc01a4ff928622/defconfig
Build dcd0daa214f6cf311de88673eb1be20ea82c6645
==============================================
Status : NOK
Failure reason : qt-4.8.3
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 02:05:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/dcd0daa214f6cf311de88673eb1be20ea82c6645/build-end.log
Complete log : http://autobuild.buildroot.net/results/dcd0daa214f6cf311de88673eb1be20ea82c6645/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/dcd0daa214f6cf311de88673eb1be20ea82c6645/config
Defconfig : http://autobuild.buildroot.net/results/dcd0daa214f6cf311de88673eb1be20ea82c6645/defconfig
Build 0d14e0128219d1f8652e0f7d732a5c5d0f7164af
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 02:09:25
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/0d14e0128219d1f8652e0f7d732a5c5d0f7164af/build-end.log
Complete log : http://autobuild.buildroot.net/results/0d14e0128219d1f8652e0f7d732a5c5d0f7164af/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0d14e0128219d1f8652e0f7d732a5c5d0f7164af/config
Defconfig : http://autobuild.buildroot.net/results/0d14e0128219d1f8652e0f7d732a5c5d0f7164af/defconfig
Build 5ed0ec409e651f0fc2b2afa4fe57e33ee442f2e2
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 02:16:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/5ed0ec409e651f0fc2b2afa4fe57e33ee442f2e2/build-end.log
Complete log : http://autobuild.buildroot.net/results/5ed0ec409e651f0fc2b2afa4fe57e33ee442f2e2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5ed0ec409e651f0fc2b2afa4fe57e33ee442f2e2/config
Defconfig : http://autobuild.buildroot.net/results/5ed0ec409e651f0fc2b2afa4fe57e33ee442f2e2/defconfig
Build 188fe711d3d9c4837a0942f5ba5e6125c421ef63
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 02:21:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/188fe711d3d9c4837a0942f5ba5e6125c421ef63/build-end.log
Complete log : http://autobuild.buildroot.net/results/188fe711d3d9c4837a0942f5ba5e6125c421ef63/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/188fe711d3d9c4837a0942f5ba5e6125c421ef63/config
Defconfig : http://autobuild.buildroot.net/results/188fe711d3d9c4837a0942f5ba5e6125c421ef63/defconfig
Build 03686f5a2496146d1453c75d56e10a22d20ae43c
==============================================
Status : NOK
Failure reason : quota-4.00
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 02:26:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/03686f5a2496146d1453c75d56e10a22d20ae43c/build-end.log
Complete log : http://autobuild.buildroot.net/results/03686f5a2496146d1453c75d56e10a22d20ae43c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/03686f5a2496146d1453c75d56e10a22d20ae43c/config
Defconfig : http://autobuild.buildroot.net/results/03686f5a2496146d1453c75d56e10a22d20ae43c/defconfig
Build 6b599fd365b5f10be002b62e9d1f1393778f4280
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 02:28:45
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/6b599fd365b5f10be002b62e9d1f1393778f4280/build-end.log
Complete log : http://autobuild.buildroot.net/results/6b599fd365b5f10be002b62e9d1f1393778f4280/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6b599fd365b5f10be002b62e9d1f1393778f4280/config
Defconfig : http://autobuild.buildroot.net/results/6b599fd365b5f10be002b62e9d1f1393778f4280/defconfig
Build 0e624c594cab133b496e3800e9b50c57be7ceaf0
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 02:40:35
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/0e624c594cab133b496e3800e9b50c57be7ceaf0/build-end.log
Complete log : http://autobuild.buildroot.net/results/0e624c594cab133b496e3800e9b50c57be7ceaf0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0e624c594cab133b496e3800e9b50c57be7ceaf0/config
Defconfig : http://autobuild.buildroot.net/results/0e624c594cab133b496e3800e9b50c57be7ceaf0/defconfig
Build e97d17df31cff2460c99999d75466fba3f5b927a
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : sh4a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 02:46:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/e97d17df31cff2460c99999d75466fba3f5b927a/build-end.log
Complete log : http://autobuild.buildroot.net/results/e97d17df31cff2460c99999d75466fba3f5b927a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e97d17df31cff2460c99999d75466fba3f5b927a/config
Defconfig : http://autobuild.buildroot.net/results/e97d17df31cff2460c99999d75466fba3f5b927a/defconfig
Build e88497f749b2960d6c718c3c3d7a55042d4f2cb9
==============================================
Status : NOK
Failure reason : libatomic_ops-1.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 03:32:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/e88497f749b2960d6c718c3c3d7a55042d4f2cb9/build-end.log
Complete log : http://autobuild.buildroot.net/results/e88497f749b2960d6c718c3c3d7a55042d4f2cb9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e88497f749b2960d6c718c3c3d7a55042d4f2cb9/config
Defconfig : http://autobuild.buildroot.net/results/e88497f749b2960d6c718c3c3d7a55042d4f2cb9/defconfig
Build d3f14d8bda2fca153e3c1fad70e9ae588eaba35b
==============================================
Status : NOK
Failure reason : audiofile-0.3.4
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 03:32:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/d3f14d8bda2fca153e3c1fad70e9ae588eaba35b/build-end.log
Complete log : http://autobuild.buildroot.net/results/d3f14d8bda2fca153e3c1fad70e9ae588eaba35b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d3f14d8bda2fca153e3c1fad70e9ae588eaba35b/config
Defconfig : http://autobuild.buildroot.net/results/d3f14d8bda2fca153e3c1fad70e9ae588eaba35b/defconfig
Build 1922ab400656015186d966164d073fb218ad152f
==============================================
Status : NOK
Failure reason : quota-4.00
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 03:34:37
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/1922ab400656015186d966164d073fb218ad152f/build-end.log
Complete log : http://autobuild.buildroot.net/results/1922ab400656015186d966164d073fb218ad152f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1922ab400656015186d966164d073fb218ad152f/config
Defconfig : http://autobuild.buildroot.net/results/1922ab400656015186d966164d073fb218ad152f/defconfig
Build e478f45f0f3e356956016c49c84f673ea4221869
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 03:35:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/e478f45f0f3e356956016c49c84f673ea4221869/build-end.log
Complete log : http://autobuild.buildroot.net/results/e478f45f0f3e356956016c49c84f673ea4221869/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e478f45f0f3e356956016c49c84f673ea4221869/config
Defconfig : http://autobuild.buildroot.net/results/e478f45f0f3e356956016c49c84f673ea4221869/defconfig
Build 4f3ce1f4a5caa0422578468fa98cd1e3a77cee00
==============================================
Status : NOK
Failure reason : host-xapp_mkfontdir-1.0.7
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 03:44:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/4f3ce1f4a5caa0422578468fa98cd1e3a77cee00/build-end.log
Complete log : http://autobuild.buildroot.net/results/4f3ce1f4a5caa0422578468fa98cd1e3a77cee00/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4f3ce1f4a5caa0422578468fa98cd1e3a77cee00/config
Defconfig : http://autobuild.buildroot.net/results/4f3ce1f4a5caa0422578468fa98cd1e3a77cee00/defconfig
Build e78da5a1edd20f556e68c599b8ac627dce4b7d69
==============================================
Status : NOK
Failure reason : host-xapp_mkfontdir-1.0.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 04:15:22
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/e78da5a1edd20f556e68c599b8ac627dce4b7d69/build-end.log
Complete log : http://autobuild.buildroot.net/results/e78da5a1edd20f556e68c599b8ac627dce4b7d69/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e78da5a1edd20f556e68c599b8ac627dce4b7d69/config
Defconfig : http://autobuild.buildroot.net/results/e78da5a1edd20f556e68c599b8ac627dce4b7d69/defconfig
Build e8c6768cf3118f693ff173b2fa62adaf483b21d6
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 04:20:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/e8c6768cf3118f693ff173b2fa62adaf483b21d6/build-end.log
Complete log : http://autobuild.buildroot.net/results/e8c6768cf3118f693ff173b2fa62adaf483b21d6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e8c6768cf3118f693ff173b2fa62adaf483b21d6/config
Defconfig : http://autobuild.buildroot.net/results/e8c6768cf3118f693ff173b2fa62adaf483b21d6/defconfig
Build 7fcee65bde9b3fc6ae989dbecddf1b334e27afbc
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 04:30:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/7fcee65bde9b3fc6ae989dbecddf1b334e27afbc/build-end.log
Complete log : http://autobuild.buildroot.net/results/7fcee65bde9b3fc6ae989dbecddf1b334e27afbc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7fcee65bde9b3fc6ae989dbecddf1b334e27afbc/config
Defconfig : http://autobuild.buildroot.net/results/7fcee65bde9b3fc6ae989dbecddf1b334e27afbc/defconfig
Build 07cc6d2e6c8306d26e6f5414037058deaedfa888
==============================================
Status : NOK
Failure reason : xapp_mkfontdir-1.0.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 04:36:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/07cc6d2e6c8306d26e6f5414037058deaedfa888/build-end.log
Complete log : http://autobuild.buildroot.net/results/07cc6d2e6c8306d26e6f5414037058deaedfa888/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/07cc6d2e6c8306d26e6f5414037058deaedfa888/config
Defconfig : http://autobuild.buildroot.net/results/07cc6d2e6c8306d26e6f5414037058deaedfa888/defconfig
Build 9ab8d2f278ba791c11f594f67e758a2e7aeea7f0
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 04:55:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/9ab8d2f278ba791c11f594f67e758a2e7aeea7f0/build-end.log
Complete log : http://autobuild.buildroot.net/results/9ab8d2f278ba791c11f594f67e758a2e7aeea7f0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9ab8d2f278ba791c11f594f67e758a2e7aeea7f0/config
Defconfig : http://autobuild.buildroot.net/results/9ab8d2f278ba791c11f594f67e758a2e7aeea7f0/defconfig
Build e1cccbd3ec3e95cd311f70eea18522e92a615416
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 04:58:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/e1cccbd3ec3e95cd311f70eea18522e92a615416/build-end.log
Complete log : http://autobuild.buildroot.net/results/e1cccbd3ec3e95cd311f70eea18522e92a615416/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e1cccbd3ec3e95cd311f70eea18522e92a615416/config
Defconfig : http://autobuild.buildroot.net/results/e1cccbd3ec3e95cd311f70eea18522e92a615416/defconfig
Build d4f419bd1a835c95f356794e36fa28bbacf50c2d
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 05:06:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/d4f419bd1a835c95f356794e36fa28bbacf50c2d/build-end.log
Complete log : http://autobuild.buildroot.net/results/d4f419bd1a835c95f356794e36fa28bbacf50c2d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d4f419bd1a835c95f356794e36fa28bbacf50c2d/config
Defconfig : http://autobuild.buildroot.net/results/d4f419bd1a835c95f356794e36fa28bbacf50c2d/defconfig
Build b633750ab9fd03c35ffa67309e6638b2957e6d7c
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 05:16:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/b633750ab9fd03c35ffa67309e6638b2957e6d7c/build-end.log
Complete log : http://autobuild.buildroot.net/results/b633750ab9fd03c35ffa67309e6638b2957e6d7c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b633750ab9fd03c35ffa67309e6638b2957e6d7c/config
Defconfig : http://autobuild.buildroot.net/results/b633750ab9fd03c35ffa67309e6638b2957e6d7c/defconfig
Build 5cdd62b546a0d192ca1daedb96813a166168bd08
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 05:28:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/5cdd62b546a0d192ca1daedb96813a166168bd08/build-end.log
Complete log : http://autobuild.buildroot.net/results/5cdd62b546a0d192ca1daedb96813a166168bd08/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5cdd62b546a0d192ca1daedb96813a166168bd08/config
Defconfig : http://autobuild.buildroot.net/results/5cdd62b546a0d192ca1daedb96813a166168bd08/defconfig
Build 6253c9c24ec2ddb0956ce9fab8c014e3fd7316f7
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 05:31:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/6253c9c24ec2ddb0956ce9fab8c014e3fd7316f7/build-end.log
Complete log : http://autobuild.buildroot.net/results/6253c9c24ec2ddb0956ce9fab8c014e3fd7316f7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6253c9c24ec2ddb0956ce9fab8c014e3fd7316f7/config
Defconfig : http://autobuild.buildroot.net/results/6253c9c24ec2ddb0956ce9fab8c014e3fd7316f7/defconfig
Build 643d3bac80a9a9f633c72cc59c3712fce7155d1c
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 05:33:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/643d3bac80a9a9f633c72cc59c3712fce7155d1c/build-end.log
Complete log : http://autobuild.buildroot.net/results/643d3bac80a9a9f633c72cc59c3712fce7155d1c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/643d3bac80a9a9f633c72cc59c3712fce7155d1c/config
Defconfig : http://autobuild.buildroot.net/results/643d3bac80a9a9f633c72cc59c3712fce7155d1c/defconfig
Build 311492c2f2c683cb595a0e55425211f4fb4ea3af
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 05:46:35
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/311492c2f2c683cb595a0e55425211f4fb4ea3af/build-end.log
Complete log : http://autobuild.buildroot.net/results/311492c2f2c683cb595a0e55425211f4fb4ea3af/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/311492c2f2c683cb595a0e55425211f4fb4ea3af/config
Defconfig : http://autobuild.buildroot.net/results/311492c2f2c683cb595a0e55425211f4fb4ea3af/defconfig
Build 1116256126e86b6ea3951cfef9618de1871361ef
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 06:05:43
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/1116256126e86b6ea3951cfef9618de1871361ef/build-end.log
Complete log : http://autobuild.buildroot.net/results/1116256126e86b6ea3951cfef9618de1871361ef/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1116256126e86b6ea3951cfef9618de1871361ef/config
Defconfig : http://autobuild.buildroot.net/results/1116256126e86b6ea3951cfef9618de1871361ef/defconfig
Build 5fdecd61c1790eb80df39d6b196d20edbe6426fb
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 06:11:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/5fdecd61c1790eb80df39d6b196d20edbe6426fb/build-end.log
Complete log : http://autobuild.buildroot.net/results/5fdecd61c1790eb80df39d6b196d20edbe6426fb/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5fdecd61c1790eb80df39d6b196d20edbe6426fb/config
Defconfig : http://autobuild.buildroot.net/results/5fdecd61c1790eb80df39d6b196d20edbe6426fb/defconfig
Build e463a81f342aa47bcf9e3fb3681e6f4d11f8f514
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 06:15:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/e463a81f342aa47bcf9e3fb3681e6f4d11f8f514/build-end.log
Complete log : http://autobuild.buildroot.net/results/e463a81f342aa47bcf9e3fb3681e6f4d11f8f514/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e463a81f342aa47bcf9e3fb3681e6f4d11f8f514/config
Defconfig : http://autobuild.buildroot.net/results/e463a81f342aa47bcf9e3fb3681e6f4d11f8f514/defconfig
Build f6947839ca60112af6e638d4a292be3f8d51dd76
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 06:28:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/f6947839ca60112af6e638d4a292be3f8d51dd76/build-end.log
Complete log : http://autobuild.buildroot.net/results/f6947839ca60112af6e638d4a292be3f8d51dd76/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f6947839ca60112af6e638d4a292be3f8d51dd76/config
Defconfig : http://autobuild.buildroot.net/results/f6947839ca60112af6e638d4a292be3f8d51dd76/defconfig
Build 7b5b6d3a95bf249242e5f3f809686228b30ef62a
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 06:34:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/7b5b6d3a95bf249242e5f3f809686228b30ef62a/build-end.log
Complete log : http://autobuild.buildroot.net/results/7b5b6d3a95bf249242e5f3f809686228b30ef62a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7b5b6d3a95bf249242e5f3f809686228b30ef62a/config
Defconfig : http://autobuild.buildroot.net/results/7b5b6d3a95bf249242e5f3f809686228b30ef62a/defconfig
Build 7e367e88c99d186e0c118631c67da75b0770f808
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 06:42:36
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/7e367e88c99d186e0c118631c67da75b0770f808/build-end.log
Complete log : http://autobuild.buildroot.net/results/7e367e88c99d186e0c118631c67da75b0770f808/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7e367e88c99d186e0c118631c67da75b0770f808/config
Defconfig : http://autobuild.buildroot.net/results/7e367e88c99d186e0c118631c67da75b0770f808/defconfig
Build 25e4d4f8bd0ceb44d6f100b0f6da688d6f7b8323
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 07:02:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/25e4d4f8bd0ceb44d6f100b0f6da688d6f7b8323/build-end.log
Complete log : http://autobuild.buildroot.net/results/25e4d4f8bd0ceb44d6f100b0f6da688d6f7b8323/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/25e4d4f8bd0ceb44d6f100b0f6da688d6f7b8323/config
Defconfig : http://autobuild.buildroot.net/results/25e4d4f8bd0ceb44d6f100b0f6da688d6f7b8323/defconfig
Build 9c33af482004e187efa3602268c28fb30e612cbb
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 07:14:32
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/9c33af482004e187efa3602268c28fb30e612cbb/build-end.log
Complete log : http://autobuild.buildroot.net/results/9c33af482004e187efa3602268c28fb30e612cbb/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9c33af482004e187efa3602268c28fb30e612cbb/config
Defconfig : http://autobuild.buildroot.net/results/9c33af482004e187efa3602268c28fb30e612cbb/defconfig
Build 6a8e1f441295303c18b225abe43676b107d14720
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 07:15:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/6a8e1f441295303c18b225abe43676b107d14720/build-end.log
Complete log : http://autobuild.buildroot.net/results/6a8e1f441295303c18b225abe43676b107d14720/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6a8e1f441295303c18b225abe43676b107d14720/config
Defconfig : http://autobuild.buildroot.net/results/6a8e1f441295303c18b225abe43676b107d14720/defconfig
Build f8f6ed0890587fc1d72893e36e3f5bf6c74f77be
==============================================
Status : NOK
Failure reason : tremor-18153
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 07:25:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/f8f6ed0890587fc1d72893e36e3f5bf6c74f77be/build-end.log
Complete log : http://autobuild.buildroot.net/results/f8f6ed0890587fc1d72893e36e3f5bf6c74f77be/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f8f6ed0890587fc1d72893e36e3f5bf6c74f77be/config
Defconfig : http://autobuild.buildroot.net/results/f8f6ed0890587fc1d72893e36e3f5bf6c74f77be/defconfig
Build b26b4360a0697c06eed95dc9b943dcc4499c169c
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 07:49:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/b26b4360a0697c06eed95dc9b943dcc4499c169c/build-end.log
Complete log : http://autobuild.buildroot.net/results/b26b4360a0697c06eed95dc9b943dcc4499c169c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b26b4360a0697c06eed95dc9b943dcc4499c169c/config
Defconfig : http://autobuild.buildroot.net/results/b26b4360a0697c06eed95dc9b943dcc4499c169c/defconfig
Build a8de246f6f2a06c647cac99a6595daa4b37ed305
==============================================
Status : NOK
Failure reason : dbus-1.4.24
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 08:01:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/a8de246f6f2a06c647cac99a6595daa4b37ed305/build-end.log
Complete log : http://autobuild.buildroot.net/results/a8de246f6f2a06c647cac99a6595daa4b37ed305/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a8de246f6f2a06c647cac99a6595daa4b37ed305/config
Defconfig : http://autobuild.buildroot.net/results/a8de246f6f2a06c647cac99a6595daa4b37ed305/defconfig
Build 655ce1710ed1f7ddb742c80556338bec9f788bbc
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 08:09:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/655ce1710ed1f7ddb742c80556338bec9f788bbc/build-end.log
Complete log : http://autobuild.buildroot.net/results/655ce1710ed1f7ddb742c80556338bec9f788bbc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/655ce1710ed1f7ddb742c80556338bec9f788bbc/config
Defconfig : http://autobuild.buildroot.net/results/655ce1710ed1f7ddb742c80556338bec9f788bbc/defconfig
Build fcadd61868187d8932d57dfe020f6bef928dfdea
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 08:16:44
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/fcadd61868187d8932d57dfe020f6bef928dfdea/build-end.log
Complete log : http://autobuild.buildroot.net/results/fcadd61868187d8932d57dfe020f6bef928dfdea/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/fcadd61868187d8932d57dfe020f6bef928dfdea/config
Defconfig : http://autobuild.buildroot.net/results/fcadd61868187d8932d57dfe020f6bef928dfdea/defconfig
Build 4466de88cb94df6bf98c770929debccfb48a5c7f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 08:31:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/4466de88cb94df6bf98c770929debccfb48a5c7f/build-end.log
Complete log : http://autobuild.buildroot.net/results/4466de88cb94df6bf98c770929debccfb48a5c7f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4466de88cb94df6bf98c770929debccfb48a5c7f/config
Defconfig : http://autobuild.buildroot.net/results/4466de88cb94df6bf98c770929debccfb48a5c7f/defconfig
Build e616578ca73b419ef8fda71a2c16a0aee6de4188
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 08:39:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/e616578ca73b419ef8fda71a2c16a0aee6de4188/build-end.log
Complete log : http://autobuild.buildroot.net/results/e616578ca73b419ef8fda71a2c16a0aee6de4188/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e616578ca73b419ef8fda71a2c16a0aee6de4188/config
Defconfig : http://autobuild.buildroot.net/results/e616578ca73b419ef8fda71a2c16a0aee6de4188/defconfig
Build c385efad4f785b8c2719b2838585e0d40c25c574
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 08:47:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/c385efad4f785b8c2719b2838585e0d40c25c574/build-end.log
Complete log : http://autobuild.buildroot.net/results/c385efad4f785b8c2719b2838585e0d40c25c574/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c385efad4f785b8c2719b2838585e0d40c25c574/config
Defconfig : http://autobuild.buildroot.net/results/c385efad4f785b8c2719b2838585e0d40c25c574/defconfig
Build d8a0d7305ba63fe7c60025e8da1c6caa14e7e60e
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 08:49:32
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/d8a0d7305ba63fe7c60025e8da1c6caa14e7e60e/build-end.log
Complete log : http://autobuild.buildroot.net/results/d8a0d7305ba63fe7c60025e8da1c6caa14e7e60e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d8a0d7305ba63fe7c60025e8da1c6caa14e7e60e/config
Defconfig : http://autobuild.buildroot.net/results/d8a0d7305ba63fe7c60025e8da1c6caa14e7e60e/defconfig
Build 26854202ac6697bf37c58d3e830f4cdea3ba43cd
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 08:58:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/26854202ac6697bf37c58d3e830f4cdea3ba43cd/build-end.log
Complete log : http://autobuild.buildroot.net/results/26854202ac6697bf37c58d3e830f4cdea3ba43cd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/26854202ac6697bf37c58d3e830f4cdea3ba43cd/config
Defconfig : http://autobuild.buildroot.net/results/26854202ac6697bf37c58d3e830f4cdea3ba43cd/defconfig
Build d69789a1493c7bb013ebfc69b4a8338946667e72
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 09:07:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/d69789a1493c7bb013ebfc69b4a8338946667e72/build-end.log
Complete log : http://autobuild.buildroot.net/results/d69789a1493c7bb013ebfc69b4a8338946667e72/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d69789a1493c7bb013ebfc69b4a8338946667e72/config
Defconfig : http://autobuild.buildroot.net/results/d69789a1493c7bb013ebfc69b4a8338946667e72/defconfig
Build b791607a2a48a8118e90adf064cba4d28ac25e50
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 09:13:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/b791607a2a48a8118e90adf064cba4d28ac25e50/build-end.log
Complete log : http://autobuild.buildroot.net/results/b791607a2a48a8118e90adf064cba4d28ac25e50/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b791607a2a48a8118e90adf064cba4d28ac25e50/config
Defconfig : http://autobuild.buildroot.net/results/b791607a2a48a8118e90adf064cba4d28ac25e50/defconfig
Build cbe4380be1b98cb1c5d25871bbd515866285f0ba
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 09:28:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/cbe4380be1b98cb1c5d25871bbd515866285f0ba/build-end.log
Complete log : http://autobuild.buildroot.net/results/cbe4380be1b98cb1c5d25871bbd515866285f0ba/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cbe4380be1b98cb1c5d25871bbd515866285f0ba/config
Defconfig : http://autobuild.buildroot.net/results/cbe4380be1b98cb1c5d25871bbd515866285f0ba/defconfig
Build 1beaebf8c7c2029d75fd15d592aa58d1d94cce4a
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 09:29:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/1beaebf8c7c2029d75fd15d592aa58d1d94cce4a/build-end.log
Complete log : http://autobuild.buildroot.net/results/1beaebf8c7c2029d75fd15d592aa58d1d94cce4a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1beaebf8c7c2029d75fd15d592aa58d1d94cce4a/config
Defconfig : http://autobuild.buildroot.net/results/1beaebf8c7c2029d75fd15d592aa58d1d94cce4a/defconfig
Build 1f9b6cdd5ef30cf70f0af93109dc52e067cb064b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 09:32:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/1f9b6cdd5ef30cf70f0af93109dc52e067cb064b/build-end.log
Complete log : http://autobuild.buildroot.net/results/1f9b6cdd5ef30cf70f0af93109dc52e067cb064b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1f9b6cdd5ef30cf70f0af93109dc52e067cb064b/config
Defconfig : http://autobuild.buildroot.net/results/1f9b6cdd5ef30cf70f0af93109dc52e067cb064b/defconfig
Build e001e5a54ffdc8aea0ed92c11a263d4f7fc5b0bf
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 09:34:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/e001e5a54ffdc8aea0ed92c11a263d4f7fc5b0bf/build-end.log
Complete log : http://autobuild.buildroot.net/results/e001e5a54ffdc8aea0ed92c11a263d4f7fc5b0bf/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e001e5a54ffdc8aea0ed92c11a263d4f7fc5b0bf/config
Defconfig : http://autobuild.buildroot.net/results/e001e5a54ffdc8aea0ed92c11a263d4f7fc5b0bf/defconfig
Build 9293f1fbb4aefcc004f73a7972146979f8a1b58c
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 09:34:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/9293f1fbb4aefcc004f73a7972146979f8a1b58c/build-end.log
Complete log : http://autobuild.buildroot.net/results/9293f1fbb4aefcc004f73a7972146979f8a1b58c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9293f1fbb4aefcc004f73a7972146979f8a1b58c/config
Defconfig : http://autobuild.buildroot.net/results/9293f1fbb4aefcc004f73a7972146979f8a1b58c/defconfig
Build cc09f61acf41764dac6c5f9eeaad40d715f40533
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 09:36:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/cc09f61acf41764dac6c5f9eeaad40d715f40533/build-end.log
Complete log : http://autobuild.buildroot.net/results/cc09f61acf41764dac6c5f9eeaad40d715f40533/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cc09f61acf41764dac6c5f9eeaad40d715f40533/config
Defconfig : http://autobuild.buildroot.net/results/cc09f61acf41764dac6c5f9eeaad40d715f40533/defconfig
Build f8ca9418f3a6713646182f303a04105abeca156d
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 09:44:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/f8ca9418f3a6713646182f303a04105abeca156d/build-end.log
Complete log : http://autobuild.buildroot.net/results/f8ca9418f3a6713646182f303a04105abeca156d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f8ca9418f3a6713646182f303a04105abeca156d/config
Defconfig : http://autobuild.buildroot.net/results/f8ca9418f3a6713646182f303a04105abeca156d/defconfig
Build 26e168bf7bd923634553118032599c44e7dad5bc
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 09:45:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/26e168bf7bd923634553118032599c44e7dad5bc/build-end.log
Complete log : http://autobuild.buildroot.net/results/26e168bf7bd923634553118032599c44e7dad5bc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/26e168bf7bd923634553118032599c44e7dad5bc/config
Defconfig : http://autobuild.buildroot.net/results/26e168bf7bd923634553118032599c44e7dad5bc/defconfig
Build bb8653f79d52c282c09c05dc4c1fbbf32efdbc4f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 09:51:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/bb8653f79d52c282c09c05dc4c1fbbf32efdbc4f/build-end.log
Complete log : http://autobuild.buildroot.net/results/bb8653f79d52c282c09c05dc4c1fbbf32efdbc4f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bb8653f79d52c282c09c05dc4c1fbbf32efdbc4f/config
Defconfig : http://autobuild.buildroot.net/results/bb8653f79d52c282c09c05dc4c1fbbf32efdbc4f/defconfig
Build ee25483750349935e2f9b16423aab7ae6f9c3b0b
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 09:53:45
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/ee25483750349935e2f9b16423aab7ae6f9c3b0b/build-end.log
Complete log : http://autobuild.buildroot.net/results/ee25483750349935e2f9b16423aab7ae6f9c3b0b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ee25483750349935e2f9b16423aab7ae6f9c3b0b/config
Defconfig : http://autobuild.buildroot.net/results/ee25483750349935e2f9b16423aab7ae6f9c3b0b/defconfig
Build 7c5a0c9210a1811cdf286016e6190964834f6bbc
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 09:55:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/7c5a0c9210a1811cdf286016e6190964834f6bbc/build-end.log
Complete log : http://autobuild.buildroot.net/results/7c5a0c9210a1811cdf286016e6190964834f6bbc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7c5a0c9210a1811cdf286016e6190964834f6bbc/config
Defconfig : http://autobuild.buildroot.net/results/7c5a0c9210a1811cdf286016e6190964834f6bbc/defconfig
Build 4c1509651dbe66836ab4f77f6836ec68e8b20b53
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 10:07:36
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/4c1509651dbe66836ab4f77f6836ec68e8b20b53/build-end.log
Complete log : http://autobuild.buildroot.net/results/4c1509651dbe66836ab4f77f6836ec68e8b20b53/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4c1509651dbe66836ab4f77f6836ec68e8b20b53/config
Defconfig : http://autobuild.buildroot.net/results/4c1509651dbe66836ab4f77f6836ec68e8b20b53/defconfig
Build 04d38b79a33cdfa466c2799d8bede0d27d3c2add
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 10:14:30
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/04d38b79a33cdfa466c2799d8bede0d27d3c2add/build-end.log
Complete log : http://autobuild.buildroot.net/results/04d38b79a33cdfa466c2799d8bede0d27d3c2add/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/04d38b79a33cdfa466c2799d8bede0d27d3c2add/config
Defconfig : http://autobuild.buildroot.net/results/04d38b79a33cdfa466c2799d8bede0d27d3c2add/defconfig
Build bbad990645999be886b56518418ebd05fe0552dc
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 10:21:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/bbad990645999be886b56518418ebd05fe0552dc/build-end.log
Complete log : http://autobuild.buildroot.net/results/bbad990645999be886b56518418ebd05fe0552dc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bbad990645999be886b56518418ebd05fe0552dc/config
Defconfig : http://autobuild.buildroot.net/results/bbad990645999be886b56518418ebd05fe0552dc/defconfig
Build e2dab300cf6a3d5a3cc6eafdd6db71882c08dcf0
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 10:39:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/e2dab300cf6a3d5a3cc6eafdd6db71882c08dcf0/build-end.log
Complete log : http://autobuild.buildroot.net/results/e2dab300cf6a3d5a3cc6eafdd6db71882c08dcf0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e2dab300cf6a3d5a3cc6eafdd6db71882c08dcf0/config
Defconfig : http://autobuild.buildroot.net/results/e2dab300cf6a3d5a3cc6eafdd6db71882c08dcf0/defconfig
Build 3ee38cd01147ba3cec50f81bcc2701ed504cecfa
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 10:48:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/3ee38cd01147ba3cec50f81bcc2701ed504cecfa/build-end.log
Complete log : http://autobuild.buildroot.net/results/3ee38cd01147ba3cec50f81bcc2701ed504cecfa/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3ee38cd01147ba3cec50f81bcc2701ed504cecfa/config
Defconfig : http://autobuild.buildroot.net/results/3ee38cd01147ba3cec50f81bcc2701ed504cecfa/defconfig
Build 63566b19986c498d957085bd20ac9a4c08092942
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 10:52:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/63566b19986c498d957085bd20ac9a4c08092942/build-end.log
Complete log : http://autobuild.buildroot.net/results/63566b19986c498d957085bd20ac9a4c08092942/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/63566b19986c498d957085bd20ac9a4c08092942/config
Defconfig : http://autobuild.buildroot.net/results/63566b19986c498d957085bd20ac9a4c08092942/defconfig
Build 8c69955a1d2f0265ea8e88ca6bc1353bb6124b2b
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 10:53:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/8c69955a1d2f0265ea8e88ca6bc1353bb6124b2b/build-end.log
Complete log : http://autobuild.buildroot.net/results/8c69955a1d2f0265ea8e88ca6bc1353bb6124b2b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8c69955a1d2f0265ea8e88ca6bc1353bb6124b2b/config
Defconfig : http://autobuild.buildroot.net/results/8c69955a1d2f0265ea8e88ca6bc1353bb6124b2b/defconfig
Build 787cd586051dcc1dc37fdf315094ebea7d054120
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 11:22:13
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/787cd586051dcc1dc37fdf315094ebea7d054120/build-end.log
Complete log : http://autobuild.buildroot.net/results/787cd586051dcc1dc37fdf315094ebea7d054120/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/787cd586051dcc1dc37fdf315094ebea7d054120/config
Defconfig : http://autobuild.buildroot.net/results/787cd586051dcc1dc37fdf315094ebea7d054120/defconfig
Build a7083d5bcb9d8ff935b89c99ea925a87c230eb86
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 11:31:38
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/a7083d5bcb9d8ff935b89c99ea925a87c230eb86/build-end.log
Complete log : http://autobuild.buildroot.net/results/a7083d5bcb9d8ff935b89c99ea925a87c230eb86/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a7083d5bcb9d8ff935b89c99ea925a87c230eb86/config
Defconfig : http://autobuild.buildroot.net/results/a7083d5bcb9d8ff935b89c99ea925a87c230eb86/defconfig
Build d0ca57b43783195b55a11b9652e78eea4b8be914
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 11:39:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
End of log : http://autobuild.buildroot.net/results/d0ca57b43783195b55a11b9652e78eea4b8be914/build-end.log
Complete log : http://autobuild.buildroot.net/results/d0ca57b43783195b55a11b9652e78eea4b8be914/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d0ca57b43783195b55a11b9652e78eea4b8be914/config
Defconfig : http://autobuild.buildroot.net/results/d0ca57b43783195b55a11b9652e78eea4b8be914/defconfig
Build 44cad027e0e5c460847b8150a7857c0c0cc44e26
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 11:41:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/44cad027e0e5c460847b8150a7857c0c0cc44e26/build-end.log
Complete log : http://autobuild.buildroot.net/results/44cad027e0e5c460847b8150a7857c0c0cc44e26/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/44cad027e0e5c460847b8150a7857c0c0cc44e26/config
Defconfig : http://autobuild.buildroot.net/results/44cad027e0e5c460847b8150a7857c0c0cc44e26/defconfig
Build d63cc34cc01a132fe79511a7275d15e10989fd3e
==============================================
Status : NOK
Failure reason : dbus-1.4.24
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 11:42:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/d63cc34cc01a132fe79511a7275d15e10989fd3e/build-end.log
Complete log : http://autobuild.buildroot.net/results/d63cc34cc01a132fe79511a7275d15e10989fd3e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d63cc34cc01a132fe79511a7275d15e10989fd3e/config
Defconfig : http://autobuild.buildroot.net/results/d63cc34cc01a132fe79511a7275d15e10989fd3e/defconfig
Build 1847ad945f18848e41277b4d2a3343ad40417ad6
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 11:44:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/1847ad945f18848e41277b4d2a3343ad40417ad6/build-end.log
Complete log : http://autobuild.buildroot.net/results/1847ad945f18848e41277b4d2a3343ad40417ad6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1847ad945f18848e41277b4d2a3343ad40417ad6/config
Defconfig : http://autobuild.buildroot.net/results/1847ad945f18848e41277b4d2a3343ad40417ad6/defconfig
Build a01cf539abf574562b1c30e9c60c3ec55fd7fd5b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 11:47:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/a01cf539abf574562b1c30e9c60c3ec55fd7fd5b/build-end.log
Complete log : http://autobuild.buildroot.net/results/a01cf539abf574562b1c30e9c60c3ec55fd7fd5b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a01cf539abf574562b1c30e9c60c3ec55fd7fd5b/config
Defconfig : http://autobuild.buildroot.net/results/a01cf539abf574562b1c30e9c60c3ec55fd7fd5b/defconfig
Build b4f3c99f93252ccc48d659556b5601b3cf671e5d
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 11:47:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/b4f3c99f93252ccc48d659556b5601b3cf671e5d/build-end.log
Complete log : http://autobuild.buildroot.net/results/b4f3c99f93252ccc48d659556b5601b3cf671e5d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b4f3c99f93252ccc48d659556b5601b3cf671e5d/config
Defconfig : http://autobuild.buildroot.net/results/b4f3c99f93252ccc48d659556b5601b3cf671e5d/defconfig
Build 5d0f5f017c6252caa256143fc8c26159f635eae0
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 11:54:36
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/5d0f5f017c6252caa256143fc8c26159f635eae0/build-end.log
Complete log : http://autobuild.buildroot.net/results/5d0f5f017c6252caa256143fc8c26159f635eae0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5d0f5f017c6252caa256143fc8c26159f635eae0/config
Defconfig : http://autobuild.buildroot.net/results/5d0f5f017c6252caa256143fc8c26159f635eae0/defconfig
Build 98c461f1e7760c66cf047e475493e492d0a932c1
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 12:02:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/98c461f1e7760c66cf047e475493e492d0a932c1/build-end.log
Complete log : http://autobuild.buildroot.net/results/98c461f1e7760c66cf047e475493e492d0a932c1/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/98c461f1e7760c66cf047e475493e492d0a932c1/config
Defconfig : http://autobuild.buildroot.net/results/98c461f1e7760c66cf047e475493e492d0a932c1/defconfig
Build cbcf556fd52ea3156be732cbe8ac056b012dd03e
==============================================
Status : NOK
Failure reason : kmod-11
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 12:04:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/cbcf556fd52ea3156be732cbe8ac056b012dd03e/build-end.log
Complete log : http://autobuild.buildroot.net/results/cbcf556fd52ea3156be732cbe8ac056b012dd03e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cbcf556fd52ea3156be732cbe8ac056b012dd03e/config
Defconfig : http://autobuild.buildroot.net/results/cbcf556fd52ea3156be732cbe8ac056b012dd03e/defconfig
Build 28bec8f587b161a9d4b67b78f4647e1d547467b4
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 12:07:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/28bec8f587b161a9d4b67b78f4647e1d547467b4/build-end.log
Complete log : http://autobuild.buildroot.net/results/28bec8f587b161a9d4b67b78f4647e1d547467b4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/28bec8f587b161a9d4b67b78f4647e1d547467b4/config
Defconfig : http://autobuild.buildroot.net/results/28bec8f587b161a9d4b67b78f4647e1d547467b4/defconfig
Build 149a89830006f19e0fe1a2fe0e7830cce7eb8641
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 12:10:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/149a89830006f19e0fe1a2fe0e7830cce7eb8641/build-end.log
Complete log : http://autobuild.buildroot.net/results/149a89830006f19e0fe1a2fe0e7830cce7eb8641/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/149a89830006f19e0fe1a2fe0e7830cce7eb8641/config
Defconfig : http://autobuild.buildroot.net/results/149a89830006f19e0fe1a2fe0e7830cce7eb8641/defconfig
Build 3b2c9491112917a3499efab35666a7147504706b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 12:13:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/3b2c9491112917a3499efab35666a7147504706b/build-end.log
Complete log : http://autobuild.buildroot.net/results/3b2c9491112917a3499efab35666a7147504706b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3b2c9491112917a3499efab35666a7147504706b/config
Defconfig : http://autobuild.buildroot.net/results/3b2c9491112917a3499efab35666a7147504706b/defconfig
Build bbcdc6724de5012088d2b4c3e6b3189440bd89a5
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 12:18:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/bbcdc6724de5012088d2b4c3e6b3189440bd89a5/build-end.log
Complete log : http://autobuild.buildroot.net/results/bbcdc6724de5012088d2b4c3e6b3189440bd89a5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bbcdc6724de5012088d2b4c3e6b3189440bd89a5/config
Defconfig : http://autobuild.buildroot.net/results/bbcdc6724de5012088d2b4c3e6b3189440bd89a5/defconfig
Build e79aa93c12fdbc9748943fddacbdf030ba4a320b
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 12:23:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/e79aa93c12fdbc9748943fddacbdf030ba4a320b/build-end.log
Complete log : http://autobuild.buildroot.net/results/e79aa93c12fdbc9748943fddacbdf030ba4a320b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e79aa93c12fdbc9748943fddacbdf030ba4a320b/config
Defconfig : http://autobuild.buildroot.net/results/e79aa93c12fdbc9748943fddacbdf030ba4a320b/defconfig
Build 89baad2179ce774148ea755af450caf10cc1cd5a
==============================================
Status : NOK
Failure reason : kmod-11
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 12:35:43
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/89baad2179ce774148ea755af450caf10cc1cd5a/build-end.log
Complete log : http://autobuild.buildroot.net/results/89baad2179ce774148ea755af450caf10cc1cd5a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/89baad2179ce774148ea755af450caf10cc1cd5a/config
Defconfig : http://autobuild.buildroot.net/results/89baad2179ce774148ea755af450caf10cc1cd5a/defconfig
Build d80e23f1446cd67ee17277f049e0e0043911e1e8
==============================================
Status : NOK
Failure reason : xlib_libX11-1.4.2
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 12:40:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/d80e23f1446cd67ee17277f049e0e0043911e1e8/build-end.log
Complete log : http://autobuild.buildroot.net/results/d80e23f1446cd67ee17277f049e0e0043911e1e8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d80e23f1446cd67ee17277f049e0e0043911e1e8/config
Defconfig : http://autobuild.buildroot.net/results/d80e23f1446cd67ee17277f049e0e0043911e1e8/defconfig
Build 69a728dd38d922679723b4083655c07deb95c999
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 12:43:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/69a728dd38d922679723b4083655c07deb95c999/build-end.log
Complete log : http://autobuild.buildroot.net/results/69a728dd38d922679723b4083655c07deb95c999/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/69a728dd38d922679723b4083655c07deb95c999/config
Defconfig : http://autobuild.buildroot.net/results/69a728dd38d922679723b4083655c07deb95c999/defconfig
Build 313ec5a68284a3ea3409cb8d6ae96f29aa261767
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 12:45:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/313ec5a68284a3ea3409cb8d6ae96f29aa261767/build-end.log
Complete log : http://autobuild.buildroot.net/results/313ec5a68284a3ea3409cb8d6ae96f29aa261767/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/313ec5a68284a3ea3409cb8d6ae96f29aa261767/config
Defconfig : http://autobuild.buildroot.net/results/313ec5a68284a3ea3409cb8d6ae96f29aa261767/defconfig
Build 47e4c57d12eb1ba02c733c091fd03d65d9332042
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 13:01:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/47e4c57d12eb1ba02c733c091fd03d65d9332042/build-end.log
Complete log : http://autobuild.buildroot.net/results/47e4c57d12eb1ba02c733c091fd03d65d9332042/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/47e4c57d12eb1ba02c733c091fd03d65d9332042/config
Defconfig : http://autobuild.buildroot.net/results/47e4c57d12eb1ba02c733c091fd03d65d9332042/defconfig
Build d049958e16a8f955646b29f12929292eef6490b0
==============================================
Status : NOK
Failure reason : quota-4.00
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 13:09:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/d049958e16a8f955646b29f12929292eef6490b0/build-end.log
Complete log : http://autobuild.buildroot.net/results/d049958e16a8f955646b29f12929292eef6490b0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d049958e16a8f955646b29f12929292eef6490b0/config
Defconfig : http://autobuild.buildroot.net/results/d049958e16a8f955646b29f12929292eef6490b0/defconfig
Build 238ef16ad29eb3dfc58531b38b10315ce49816f1
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 13:09:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/238ef16ad29eb3dfc58531b38b10315ce49816f1/build-end.log
Complete log : http://autobuild.buildroot.net/results/238ef16ad29eb3dfc58531b38b10315ce49816f1/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/238ef16ad29eb3dfc58531b38b10315ce49816f1/config
Defconfig : http://autobuild.buildroot.net/results/238ef16ad29eb3dfc58531b38b10315ce49816f1/defconfig
Build 44e5f6509678c5db8774c25ca9bed3550528c10b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 13:18:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/44e5f6509678c5db8774c25ca9bed3550528c10b/build-end.log
Complete log : http://autobuild.buildroot.net/results/44e5f6509678c5db8774c25ca9bed3550528c10b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/44e5f6509678c5db8774c25ca9bed3550528c10b/config
Defconfig : http://autobuild.buildroot.net/results/44e5f6509678c5db8774c25ca9bed3550528c10b/defconfig
Build cddb7eaae3784bdb384b6a6d617bf64010990ad9
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 13:24:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/cddb7eaae3784bdb384b6a6d617bf64010990ad9/build-end.log
Complete log : http://autobuild.buildroot.net/results/cddb7eaae3784bdb384b6a6d617bf64010990ad9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cddb7eaae3784bdb384b6a6d617bf64010990ad9/config
Defconfig : http://autobuild.buildroot.net/results/cddb7eaae3784bdb384b6a6d617bf64010990ad9/defconfig
Build f824e35a7e16b33ffeeebb41f4c95bd0ee485114
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 13:25:55
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/f824e35a7e16b33ffeeebb41f4c95bd0ee485114/build-end.log
Complete log : http://autobuild.buildroot.net/results/f824e35a7e16b33ffeeebb41f4c95bd0ee485114/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f824e35a7e16b33ffeeebb41f4c95bd0ee485114/config
Defconfig : http://autobuild.buildroot.net/results/f824e35a7e16b33ffeeebb41f4c95bd0ee485114/defconfig
Build 2b435d450e7b0f88df5fd4f1a72a8182b0d47ec3
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 13:27:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/2b435d450e7b0f88df5fd4f1a72a8182b0d47ec3/build-end.log
Complete log : http://autobuild.buildroot.net/results/2b435d450e7b0f88df5fd4f1a72a8182b0d47ec3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2b435d450e7b0f88df5fd4f1a72a8182b0d47ec3/config
Defconfig : http://autobuild.buildroot.net/results/2b435d450e7b0f88df5fd4f1a72a8182b0d47ec3/defconfig
Build 8b9aac5d3ea779bb6e8ac64cacad62eb3a39f50b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 13:27:52
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/8b9aac5d3ea779bb6e8ac64cacad62eb3a39f50b/build-end.log
Complete log : http://autobuild.buildroot.net/results/8b9aac5d3ea779bb6e8ac64cacad62eb3a39f50b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8b9aac5d3ea779bb6e8ac64cacad62eb3a39f50b/config
Defconfig : http://autobuild.buildroot.net/results/8b9aac5d3ea779bb6e8ac64cacad62eb3a39f50b/defconfig
Build e0190c0e2bcdfb8cfc01d2429a745e66ca30199c
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 13:28:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/e0190c0e2bcdfb8cfc01d2429a745e66ca30199c/build-end.log
Complete log : http://autobuild.buildroot.net/results/e0190c0e2bcdfb8cfc01d2429a745e66ca30199c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e0190c0e2bcdfb8cfc01d2429a745e66ca30199c/config
Defconfig : http://autobuild.buildroot.net/results/e0190c0e2bcdfb8cfc01d2429a745e66ca30199c/defconfig
Build 6fce2751848be612b6222c0aa34b2dcce0f55006
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 13:31:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/6fce2751848be612b6222c0aa34b2dcce0f55006/build-end.log
Complete log : http://autobuild.buildroot.net/results/6fce2751848be612b6222c0aa34b2dcce0f55006/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6fce2751848be612b6222c0aa34b2dcce0f55006/config
Defconfig : http://autobuild.buildroot.net/results/6fce2751848be612b6222c0aa34b2dcce0f55006/defconfig
Build 1588d8bede8413e255529024cde28ac539f18032
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 13:47:28
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/1588d8bede8413e255529024cde28ac539f18032/build-end.log
Complete log : http://autobuild.buildroot.net/results/1588d8bede8413e255529024cde28ac539f18032/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1588d8bede8413e255529024cde28ac539f18032/config
Defconfig : http://autobuild.buildroot.net/results/1588d8bede8413e255529024cde28ac539f18032/defconfig
Build 6f6e83b92c133a0c284abe6719d8f0c85798ff1b
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 14:06:22
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/6f6e83b92c133a0c284abe6719d8f0c85798ff1b/build-end.log
Complete log : http://autobuild.buildroot.net/results/6f6e83b92c133a0c284abe6719d8f0c85798ff1b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6f6e83b92c133a0c284abe6719d8f0c85798ff1b/config
Defconfig : http://autobuild.buildroot.net/results/6f6e83b92c133a0c284abe6719d8f0c85798ff1b/defconfig
Build 452d7d041e84ac67888fcf37ab8a9e94029c6840
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 14:11:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/452d7d041e84ac67888fcf37ab8a9e94029c6840/build-end.log
Complete log : http://autobuild.buildroot.net/results/452d7d041e84ac67888fcf37ab8a9e94029c6840/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/452d7d041e84ac67888fcf37ab8a9e94029c6840/config
Defconfig : http://autobuild.buildroot.net/results/452d7d041e84ac67888fcf37ab8a9e94029c6840/defconfig
Build 9d4dc0b7ee345735ea0fdddabe6ee5bfc75962d8
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 14:17:36
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/9d4dc0b7ee345735ea0fdddabe6ee5bfc75962d8/build-end.log
Complete log : http://autobuild.buildroot.net/results/9d4dc0b7ee345735ea0fdddabe6ee5bfc75962d8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9d4dc0b7ee345735ea0fdddabe6ee5bfc75962d8/config
Defconfig : http://autobuild.buildroot.net/results/9d4dc0b7ee345735ea0fdddabe6ee5bfc75962d8/defconfig
Build 63ef1fa02c7e6c8460582b2ea52c51b20c1fb55b
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 14:23:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/63ef1fa02c7e6c8460582b2ea52c51b20c1fb55b/build-end.log
Complete log : http://autobuild.buildroot.net/results/63ef1fa02c7e6c8460582b2ea52c51b20c1fb55b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/63ef1fa02c7e6c8460582b2ea52c51b20c1fb55b/config
Defconfig : http://autobuild.buildroot.net/results/63ef1fa02c7e6c8460582b2ea52c51b20c1fb55b/defconfig
Build 10e70411a2d9816b6203b180e8d592afff231ff5
==============================================
Status : NOK
Failure reason : kmod-11
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 14:38:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/10e70411a2d9816b6203b180e8d592afff231ff5/build-end.log
Complete log : http://autobuild.buildroot.net/results/10e70411a2d9816b6203b180e8d592afff231ff5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/10e70411a2d9816b6203b180e8d592afff231ff5/config
Defconfig : http://autobuild.buildroot.net/results/10e70411a2d9816b6203b180e8d592afff231ff5/defconfig
Build 5b28a94d053b234cf0d1ea605c18b4a5ab03a5d4
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 14:42:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/5b28a94d053b234cf0d1ea605c18b4a5ab03a5d4/build-end.log
Complete log : http://autobuild.buildroot.net/results/5b28a94d053b234cf0d1ea605c18b4a5ab03a5d4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5b28a94d053b234cf0d1ea605c18b4a5ab03a5d4/config
Defconfig : http://autobuild.buildroot.net/results/5b28a94d053b234cf0d1ea605c18b4a5ab03a5d4/defconfig
Build 0aa6ca48ad795cfdc5b3f862194a6a33731a4588
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 15:04:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/0aa6ca48ad795cfdc5b3f862194a6a33731a4588/build-end.log
Complete log : http://autobuild.buildroot.net/results/0aa6ca48ad795cfdc5b3f862194a6a33731a4588/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0aa6ca48ad795cfdc5b3f862194a6a33731a4588/config
Defconfig : http://autobuild.buildroot.net/results/0aa6ca48ad795cfdc5b3f862194a6a33731a4588/defconfig
Build 149f618d62a0b5193914cf6847049307bf6159d2
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 15:12:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/149f618d62a0b5193914cf6847049307bf6159d2/build-end.log
Complete log : http://autobuild.buildroot.net/results/149f618d62a0b5193914cf6847049307bf6159d2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/149f618d62a0b5193914cf6847049307bf6159d2/config
Defconfig : http://autobuild.buildroot.net/results/149f618d62a0b5193914cf6847049307bf6159d2/defconfig
Build d7dda6a3eb64b496a6393b9e2a239e95c98ed02e
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 15:16:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/d7dda6a3eb64b496a6393b9e2a239e95c98ed02e/build-end.log
Complete log : http://autobuild.buildroot.net/results/d7dda6a3eb64b496a6393b9e2a239e95c98ed02e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d7dda6a3eb64b496a6393b9e2a239e95c98ed02e/config
Defconfig : http://autobuild.buildroot.net/results/d7dda6a3eb64b496a6393b9e2a239e95c98ed02e/defconfig
Build 8ca9af876b045ab27b27abed76fabb71deefdcc6
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 15:50:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/8ca9af876b045ab27b27abed76fabb71deefdcc6/build-end.log
Complete log : http://autobuild.buildroot.net/results/8ca9af876b045ab27b27abed76fabb71deefdcc6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8ca9af876b045ab27b27abed76fabb71deefdcc6/config
Defconfig : http://autobuild.buildroot.net/results/8ca9af876b045ab27b27abed76fabb71deefdcc6/defconfig
Build 35270c18c728a06eb1e309326c7e69635e80faab
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 16:09:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/35270c18c728a06eb1e309326c7e69635e80faab/build-end.log
Complete log : http://autobuild.buildroot.net/results/35270c18c728a06eb1e309326c7e69635e80faab/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/35270c18c728a06eb1e309326c7e69635e80faab/config
Defconfig : http://autobuild.buildroot.net/results/35270c18c728a06eb1e309326c7e69635e80faab/defconfig
Build ba41b7f6cc0c4559d6fcfd4b643f70e1f895dc92
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 16:20:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/ba41b7f6cc0c4559d6fcfd4b643f70e1f895dc92/build-end.log
Complete log : http://autobuild.buildroot.net/results/ba41b7f6cc0c4559d6fcfd4b643f70e1f895dc92/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ba41b7f6cc0c4559d6fcfd4b643f70e1f895dc92/config
Defconfig : http://autobuild.buildroot.net/results/ba41b7f6cc0c4559d6fcfd4b643f70e1f895dc92/defconfig
Build a693c2eed2f4452360f53702169a486308df4f14
==============================================
Status : NOK
Failure reason : kmod-11
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 16:43:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/a693c2eed2f4452360f53702169a486308df4f14/build-end.log
Complete log : http://autobuild.buildroot.net/results/a693c2eed2f4452360f53702169a486308df4f14/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a693c2eed2f4452360f53702169a486308df4f14/config
Defconfig : http://autobuild.buildroot.net/results/a693c2eed2f4452360f53702169a486308df4f14/defconfig
Build 01457506240ae2722bd325e33a545ddc18ac1526
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 16:47:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=b8a304a9f9089bf03e3649582cee7ea96718e92f
End of log : http://autobuild.buildroot.net/results/01457506240ae2722bd325e33a545ddc18ac1526/build-end.log
Complete log : http://autobuild.buildroot.net/results/01457506240ae2722bd325e33a545ddc18ac1526/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/01457506240ae2722bd325e33a545ddc18ac1526/config
Defconfig : http://autobuild.buildroot.net/results/01457506240ae2722bd325e33a545ddc18ac1526/defconfig
Build cc1cbfc0964577349a18b7e7a1b0cd3211a6997f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 16:56:44
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=b8a304a9f9089bf03e3649582cee7ea96718e92f
End of log : http://autobuild.buildroot.net/results/cc1cbfc0964577349a18b7e7a1b0cd3211a6997f/build-end.log
Complete log : http://autobuild.buildroot.net/results/cc1cbfc0964577349a18b7e7a1b0cd3211a6997f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cc1cbfc0964577349a18b7e7a1b0cd3211a6997f/config
Defconfig : http://autobuild.buildroot.net/results/cc1cbfc0964577349a18b7e7a1b0cd3211a6997f/defconfig
Build 90e4e1c17fa670e9e5c4932c02d0473c8842390c
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 17:06:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/90e4e1c17fa670e9e5c4932c02d0473c8842390c/build-end.log
Complete log : http://autobuild.buildroot.net/results/90e4e1c17fa670e9e5c4932c02d0473c8842390c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/90e4e1c17fa670e9e5c4932c02d0473c8842390c/config
Defconfig : http://autobuild.buildroot.net/results/90e4e1c17fa670e9e5c4932c02d0473c8842390c/defconfig
Build 285fade178e85297fabc181a3885a964255a45f2
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 17:18:26
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8ab9660933b76e53e316e973cacdc1ae3655f3b5
End of log : http://autobuild.buildroot.net/results/285fade178e85297fabc181a3885a964255a45f2/build-end.log
Complete log : http://autobuild.buildroot.net/results/285fade178e85297fabc181a3885a964255a45f2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/285fade178e85297fabc181a3885a964255a45f2/config
Defconfig : http://autobuild.buildroot.net/results/285fade178e85297fabc181a3885a964255a45f2/defconfig
Build 3552f80254b4d46dece16a260276d2a3a8df844b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 17:31:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=b8a304a9f9089bf03e3649582cee7ea96718e92f
End of log : http://autobuild.buildroot.net/results/3552f80254b4d46dece16a260276d2a3a8df844b/build-end.log
Complete log : http://autobuild.buildroot.net/results/3552f80254b4d46dece16a260276d2a3a8df844b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3552f80254b4d46dece16a260276d2a3a8df844b/config
Defconfig : http://autobuild.buildroot.net/results/3552f80254b4d46dece16a260276d2a3a8df844b/defconfig
Build 0080d6a79802e816aab1fb037d3c3d8cd3403035
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 17:37:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/0080d6a79802e816aab1fb037d3c3d8cd3403035/build-end.log
Complete log : http://autobuild.buildroot.net/results/0080d6a79802e816aab1fb037d3c3d8cd3403035/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0080d6a79802e816aab1fb037d3c3d8cd3403035/config
Defconfig : http://autobuild.buildroot.net/results/0080d6a79802e816aab1fb037d3c3d8cd3403035/defconfig
Build 6a5a16f901215acca06cb7a89f7d7fb0bc1741af
==============================================
Status : NOK
Failure reason : xlib_libX11-1.4.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 17:41:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/6a5a16f901215acca06cb7a89f7d7fb0bc1741af/build-end.log
Complete log : http://autobuild.buildroot.net/results/6a5a16f901215acca06cb7a89f7d7fb0bc1741af/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6a5a16f901215acca06cb7a89f7d7fb0bc1741af/config
Defconfig : http://autobuild.buildroot.net/results/6a5a16f901215acca06cb7a89f7d7fb0bc1741af/defconfig
Build 6ad21b6d4476737347d6515b8506bd8749f328b6
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 17:42:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=b8a304a9f9089bf03e3649582cee7ea96718e92f
End of log : http://autobuild.buildroot.net/results/6ad21b6d4476737347d6515b8506bd8749f328b6/build-end.log
Complete log : http://autobuild.buildroot.net/results/6ad21b6d4476737347d6515b8506bd8749f328b6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6ad21b6d4476737347d6515b8506bd8749f328b6/config
Defconfig : http://autobuild.buildroot.net/results/6ad21b6d4476737347d6515b8506bd8749f328b6/defconfig
Build e99340bf168acc4811e4592a9cfa6d6110f16368
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 17:49:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=b8a304a9f9089bf03e3649582cee7ea96718e92f
End of log : http://autobuild.buildroot.net/results/e99340bf168acc4811e4592a9cfa6d6110f16368/build-end.log
Complete log : http://autobuild.buildroot.net/results/e99340bf168acc4811e4592a9cfa6d6110f16368/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e99340bf168acc4811e4592a9cfa6d6110f16368/config
Defconfig : http://autobuild.buildroot.net/results/e99340bf168acc4811e4592a9cfa6d6110f16368/defconfig
Build 63872a4cfc4efb0f469aa1692cd9a893cccd2889
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 17:53:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/63872a4cfc4efb0f469aa1692cd9a893cccd2889/build-end.log
Complete log : http://autobuild.buildroot.net/results/63872a4cfc4efb0f469aa1692cd9a893cccd2889/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/63872a4cfc4efb0f469aa1692cd9a893cccd2889/config
Defconfig : http://autobuild.buildroot.net/results/63872a4cfc4efb0f469aa1692cd9a893cccd2889/defconfig
Build bfb41e13c69e2e21b9b4c42d9bc0d811457bd945
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 17:57:55
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/bfb41e13c69e2e21b9b4c42d9bc0d811457bd945/build-end.log
Complete log : http://autobuild.buildroot.net/results/bfb41e13c69e2e21b9b4c42d9bc0d811457bd945/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bfb41e13c69e2e21b9b4c42d9bc0d811457bd945/config
Defconfig : http://autobuild.buildroot.net/results/bfb41e13c69e2e21b9b4c42d9bc0d811457bd945/defconfig
Build 40d20d06716aead61cc5769475522fefd0b23c1b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 18:00:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/40d20d06716aead61cc5769475522fefd0b23c1b/build-end.log
Complete log : http://autobuild.buildroot.net/results/40d20d06716aead61cc5769475522fefd0b23c1b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/40d20d06716aead61cc5769475522fefd0b23c1b/config
Defconfig : http://autobuild.buildroot.net/results/40d20d06716aead61cc5769475522fefd0b23c1b/defconfig
Build 32d6630b91c171401c39cfd7c8843ecc5d0ce37f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 18:05:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/32d6630b91c171401c39cfd7c8843ecc5d0ce37f/build-end.log
Complete log : http://autobuild.buildroot.net/results/32d6630b91c171401c39cfd7c8843ecc5d0ce37f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/32d6630b91c171401c39cfd7c8843ecc5d0ce37f/config
Defconfig : http://autobuild.buildroot.net/results/32d6630b91c171401c39cfd7c8843ecc5d0ce37f/defconfig
Build 6cf456ccc6585034b3d91e278896bb7262f5de37
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 18:47:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/6cf456ccc6585034b3d91e278896bb7262f5de37/build-end.log
Complete log : http://autobuild.buildroot.net/results/6cf456ccc6585034b3d91e278896bb7262f5de37/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6cf456ccc6585034b3d91e278896bb7262f5de37/config
Defconfig : http://autobuild.buildroot.net/results/6cf456ccc6585034b3d91e278896bb7262f5de37/defconfig
Build c10d32061e1a2f2ae5d45601875b8de821c6281c
==============================================
Status : NOK
Failure reason : bluez_utils-4.101
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 18:52:30
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/c10d32061e1a2f2ae5d45601875b8de821c6281c/build-end.log
Complete log : http://autobuild.buildroot.net/results/c10d32061e1a2f2ae5d45601875b8de821c6281c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c10d32061e1a2f2ae5d45601875b8de821c6281c/config
Defconfig : http://autobuild.buildroot.net/results/c10d32061e1a2f2ae5d45601875b8de821c6281c/defconfig
Build 5f93e05853336d3094aa2741ce89d73dbd618075
==============================================
Status : NOK
Failure reason : quota-4.00
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 19:01:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/5f93e05853336d3094aa2741ce89d73dbd618075/build-end.log
Complete log : http://autobuild.buildroot.net/results/5f93e05853336d3094aa2741ce89d73dbd618075/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5f93e05853336d3094aa2741ce89d73dbd618075/config
Defconfig : http://autobuild.buildroot.net/results/5f93e05853336d3094aa2741ce89d73dbd618075/defconfig
Build 44e3f7fb6b9c96ec79b857fa324ce8e93a0f7027
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 19:12:13
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/44e3f7fb6b9c96ec79b857fa324ce8e93a0f7027/build-end.log
Complete log : http://autobuild.buildroot.net/results/44e3f7fb6b9c96ec79b857fa324ce8e93a0f7027/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/44e3f7fb6b9c96ec79b857fa324ce8e93a0f7027/config
Defconfig : http://autobuild.buildroot.net/results/44e3f7fb6b9c96ec79b857fa324ce8e93a0f7027/defconfig
Build f0a8a7f94fa82bf82b15359c4b5938a609e7634a
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 19:43:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/f0a8a7f94fa82bf82b15359c4b5938a609e7634a/build-end.log
Complete log : http://autobuild.buildroot.net/results/f0a8a7f94fa82bf82b15359c4b5938a609e7634a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f0a8a7f94fa82bf82b15359c4b5938a609e7634a/config
Defconfig : http://autobuild.buildroot.net/results/f0a8a7f94fa82bf82b15359c4b5938a609e7634a/defconfig
Build 1ac9b382d7e542ca830add90dabf7ea749636e28
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 19:46:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/1ac9b382d7e542ca830add90dabf7ea749636e28/build-end.log
Complete log : http://autobuild.buildroot.net/results/1ac9b382d7e542ca830add90dabf7ea749636e28/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1ac9b382d7e542ca830add90dabf7ea749636e28/config
Defconfig : http://autobuild.buildroot.net/results/1ac9b382d7e542ca830add90dabf7ea749636e28/defconfig
Build 4eaf3a79a2be3becd0b6e1ab8fba9c932e6a50e1
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 19:52:28
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/4eaf3a79a2be3becd0b6e1ab8fba9c932e6a50e1/build-end.log
Complete log : http://autobuild.buildroot.net/results/4eaf3a79a2be3becd0b6e1ab8fba9c932e6a50e1/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4eaf3a79a2be3becd0b6e1ab8fba9c932e6a50e1/config
Defconfig : http://autobuild.buildroot.net/results/4eaf3a79a2be3becd0b6e1ab8fba9c932e6a50e1/defconfig
Build bcca4091ff1f2f5256eda4032f96552ae79de28a
==============================================
Status : NOK
Failure reason : quota-4.00
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 20:01:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/bcca4091ff1f2f5256eda4032f96552ae79de28a/build-end.log
Complete log : http://autobuild.buildroot.net/results/bcca4091ff1f2f5256eda4032f96552ae79de28a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bcca4091ff1f2f5256eda4032f96552ae79de28a/config
Defconfig : http://autobuild.buildroot.net/results/bcca4091ff1f2f5256eda4032f96552ae79de28a/defconfig
Build cf46319c9e02676cd4fb33b636d6326dc17968f7
==============================================
Status : NOK
Failure reason : libnspr-4.8.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 20:08:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/cf46319c9e02676cd4fb33b636d6326dc17968f7/build-end.log
Complete log : http://autobuild.buildroot.net/results/cf46319c9e02676cd4fb33b636d6326dc17968f7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cf46319c9e02676cd4fb33b636d6326dc17968f7/config
Defconfig : http://autobuild.buildroot.net/results/cf46319c9e02676cd4fb33b636d6326dc17968f7/defconfig
Build d12d40056c5fcad347cc46b4d7f4e871ef80e76d
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 20:09:38
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/d12d40056c5fcad347cc46b4d7f4e871ef80e76d/build-end.log
Complete log : http://autobuild.buildroot.net/results/d12d40056c5fcad347cc46b4d7f4e871ef80e76d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d12d40056c5fcad347cc46b4d7f4e871ef80e76d/config
Defconfig : http://autobuild.buildroot.net/results/d12d40056c5fcad347cc46b4d7f4e871ef80e76d/defconfig
Build 67afb09da11cbc3afb85e2637f9f0eacbbec4ff8
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 20:16:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/67afb09da11cbc3afb85e2637f9f0eacbbec4ff8/build-end.log
Complete log : http://autobuild.buildroot.net/results/67afb09da11cbc3afb85e2637f9f0eacbbec4ff8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/67afb09da11cbc3afb85e2637f9f0eacbbec4ff8/config
Defconfig : http://autobuild.buildroot.net/results/67afb09da11cbc3afb85e2637f9f0eacbbec4ff8/defconfig
Build af3ec535462b925eeba057d3cd831613d3c4bf2b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 20:22:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/af3ec535462b925eeba057d3cd831613d3c4bf2b/build-end.log
Complete log : http://autobuild.buildroot.net/results/af3ec535462b925eeba057d3cd831613d3c4bf2b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/af3ec535462b925eeba057d3cd831613d3c4bf2b/config
Defconfig : http://autobuild.buildroot.net/results/af3ec535462b925eeba057d3cd831613d3c4bf2b/defconfig
Build c581fcc2acade56c376c2ccd104ee1ddacafe6cd
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 20:22:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/c581fcc2acade56c376c2ccd104ee1ddacafe6cd/build-end.log
Complete log : http://autobuild.buildroot.net/results/c581fcc2acade56c376c2ccd104ee1ddacafe6cd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c581fcc2acade56c376c2ccd104ee1ddacafe6cd/config
Defconfig : http://autobuild.buildroot.net/results/c581fcc2acade56c376c2ccd104ee1ddacafe6cd/defconfig
Build 9d2e0abb5a83332dfc5d307257faefa0a08fc20f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 20:54:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/9d2e0abb5a83332dfc5d307257faefa0a08fc20f/build-end.log
Complete log : http://autobuild.buildroot.net/results/9d2e0abb5a83332dfc5d307257faefa0a08fc20f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9d2e0abb5a83332dfc5d307257faefa0a08fc20f/config
Defconfig : http://autobuild.buildroot.net/results/9d2e0abb5a83332dfc5d307257faefa0a08fc20f/defconfig
Build d8beaf67fec5cf5cd4e53212192260f1ebc26606
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 20:59:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/d8beaf67fec5cf5cd4e53212192260f1ebc26606/build-end.log
Complete log : http://autobuild.buildroot.net/results/d8beaf67fec5cf5cd4e53212192260f1ebc26606/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d8beaf67fec5cf5cd4e53212192260f1ebc26606/config
Defconfig : http://autobuild.buildroot.net/results/d8beaf67fec5cf5cd4e53212192260f1ebc26606/defconfig
Build 70cb6865771e588c9af63f1ee02fa73df15b1adf
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 21:23:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/70cb6865771e588c9af63f1ee02fa73df15b1adf/build-end.log
Complete log : http://autobuild.buildroot.net/results/70cb6865771e588c9af63f1ee02fa73df15b1adf/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/70cb6865771e588c9af63f1ee02fa73df15b1adf/config
Defconfig : http://autobuild.buildroot.net/results/70cb6865771e588c9af63f1ee02fa73df15b1adf/defconfig
Build a482d5f297211db62044be7e1065dba34d4735ee
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 21:36:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/a482d5f297211db62044be7e1065dba34d4735ee/build-end.log
Complete log : http://autobuild.buildroot.net/results/a482d5f297211db62044be7e1065dba34d4735ee/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a482d5f297211db62044be7e1065dba34d4735ee/config
Defconfig : http://autobuild.buildroot.net/results/a482d5f297211db62044be7e1065dba34d4735ee/defconfig
Build 4a9f4a005743b1b0dec5e224360222f90afb965a
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-08 21:37:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/4a9f4a005743b1b0dec5e224360222f90afb965a/build-end.log
Complete log : http://autobuild.buildroot.net/results/4a9f4a005743b1b0dec5e224360222f90afb965a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4a9f4a005743b1b0dec5e224360222f90afb965a/config
Defconfig : http://autobuild.buildroot.net/results/4a9f4a005743b1b0dec5e224360222f90afb965a/defconfig
Build 9de8d95c5c00deba6029f41944c2f32096463dd8
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 21:42:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/9de8d95c5c00deba6029f41944c2f32096463dd8/build-end.log
Complete log : http://autobuild.buildroot.net/results/9de8d95c5c00deba6029f41944c2f32096463dd8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9de8d95c5c00deba6029f41944c2f32096463dd8/config
Defconfig : http://autobuild.buildroot.net/results/9de8d95c5c00deba6029f41944c2f32096463dd8/defconfig
Build 08f5ffa2c43e16205ed5d35b4866e91623abe85f
==============================================
Status : NOK
Failure reason : lvm2-2.02.79
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 21:43:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/08f5ffa2c43e16205ed5d35b4866e91623abe85f/build-end.log
Complete log : http://autobuild.buildroot.net/results/08f5ffa2c43e16205ed5d35b4866e91623abe85f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/08f5ffa2c43e16205ed5d35b4866e91623abe85f/config
Defconfig : http://autobuild.buildroot.net/results/08f5ffa2c43e16205ed5d35b4866e91623abe85f/defconfig
Build 22240553cbafd46804f5fce5d1fad81b4776db1a
==============================================
Status : NOK
Failure reason : gdb-7.4.1-target
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 21:49:38
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/22240553cbafd46804f5fce5d1fad81b4776db1a/build-end.log
Complete log : http://autobuild.buildroot.net/results/22240553cbafd46804f5fce5d1fad81b4776db1a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/22240553cbafd46804f5fce5d1fad81b4776db1a/config
Defconfig : http://autobuild.buildroot.net/results/22240553cbafd46804f5fce5d1fad81b4776db1a/defconfig
Build a03b171e28d75bfb1dd01a05c1716e7dc0c3d063
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 22:04:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/a03b171e28d75bfb1dd01a05c1716e7dc0c3d063/build-end.log
Complete log : http://autobuild.buildroot.net/results/a03b171e28d75bfb1dd01a05c1716e7dc0c3d063/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a03b171e28d75bfb1dd01a05c1716e7dc0c3d063/config
Defconfig : http://autobuild.buildroot.net/results/a03b171e28d75bfb1dd01a05c1716e7dc0c3d063/defconfig
Build 3aecb39d519630893fddaf00ca99b5b01af0468c
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 22:10:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/3aecb39d519630893fddaf00ca99b5b01af0468c/build-end.log
Complete log : http://autobuild.buildroot.net/results/3aecb39d519630893fddaf00ca99b5b01af0468c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3aecb39d519630893fddaf00ca99b5b01af0468c/config
Defconfig : http://autobuild.buildroot.net/results/3aecb39d519630893fddaf00ca99b5b01af0468c/defconfig
Build 6a499a7043ccda193cb710e1d68fce1f875b3f23
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 22:17:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/6a499a7043ccda193cb710e1d68fce1f875b3f23/build-end.log
Complete log : http://autobuild.buildroot.net/results/6a499a7043ccda193cb710e1d68fce1f875b3f23/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6a499a7043ccda193cb710e1d68fce1f875b3f23/config
Defconfig : http://autobuild.buildroot.net/results/6a499a7043ccda193cb710e1d68fce1f875b3f23/defconfig
Build 7e0cc7aa26b1031b1a9ff379ccc27681c23a6c59
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 22:20:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/7e0cc7aa26b1031b1a9ff379ccc27681c23a6c59/build-end.log
Complete log : http://autobuild.buildroot.net/results/7e0cc7aa26b1031b1a9ff379ccc27681c23a6c59/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7e0cc7aa26b1031b1a9ff379ccc27681c23a6c59/config
Defconfig : http://autobuild.buildroot.net/results/7e0cc7aa26b1031b1a9ff379ccc27681c23a6c59/defconfig
Build a68f970648f74e266541c7ee321fa75cf8f01194
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 22:26:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/a68f970648f74e266541c7ee321fa75cf8f01194/build-end.log
Complete log : http://autobuild.buildroot.net/results/a68f970648f74e266541c7ee321fa75cf8f01194/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a68f970648f74e266541c7ee321fa75cf8f01194/config
Defconfig : http://autobuild.buildroot.net/results/a68f970648f74e266541c7ee321fa75cf8f01194/defconfig
Build afe39f8368852cb9827f8c8c1d4adb943f0b7c96
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 22:27:52
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/afe39f8368852cb9827f8c8c1d4adb943f0b7c96/build-end.log
Complete log : http://autobuild.buildroot.net/results/afe39f8368852cb9827f8c8c1d4adb943f0b7c96/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/afe39f8368852cb9827f8c8c1d4adb943f0b7c96/config
Defconfig : http://autobuild.buildroot.net/results/afe39f8368852cb9827f8c8c1d4adb943f0b7c96/defconfig
Build d358ffdf3d4335ebf9557308c19f57b93b16db46
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 22:36:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/d358ffdf3d4335ebf9557308c19f57b93b16db46/build-end.log
Complete log : http://autobuild.buildroot.net/results/d358ffdf3d4335ebf9557308c19f57b93b16db46/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d358ffdf3d4335ebf9557308c19f57b93b16db46/config
Defconfig : http://autobuild.buildroot.net/results/d358ffdf3d4335ebf9557308c19f57b93b16db46/defconfig
Build 92647edba3cdac811374baffbd94ac827ec60a48
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 22:41:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/92647edba3cdac811374baffbd94ac827ec60a48/build-end.log
Complete log : http://autobuild.buildroot.net/results/92647edba3cdac811374baffbd94ac827ec60a48/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/92647edba3cdac811374baffbd94ac827ec60a48/config
Defconfig : http://autobuild.buildroot.net/results/92647edba3cdac811374baffbd94ac827ec60a48/defconfig
Build 588634a1a0a683642f673467c6520e1966b1fc10
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 22:50:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/588634a1a0a683642f673467c6520e1966b1fc10/build-end.log
Complete log : http://autobuild.buildroot.net/results/588634a1a0a683642f673467c6520e1966b1fc10/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/588634a1a0a683642f673467c6520e1966b1fc10/config
Defconfig : http://autobuild.buildroot.net/results/588634a1a0a683642f673467c6520e1966b1fc10/defconfig
Build ae5c684904eced35d2a887978e0c5bd59c9b6a49
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 22:51:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d3047f28d3016b351213dc99b73e299d2310f25
End of log : http://autobuild.buildroot.net/results/ae5c684904eced35d2a887978e0c5bd59c9b6a49/build-end.log
Complete log : http://autobuild.buildroot.net/results/ae5c684904eced35d2a887978e0c5bd59c9b6a49/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ae5c684904eced35d2a887978e0c5bd59c9b6a49/config
Defconfig : http://autobuild.buildroot.net/results/ae5c684904eced35d2a887978e0c5bd59c9b6a49/defconfig
Build c8588627f329d671de671505757422c0874210a8
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 22:52:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=ce70d058f55096a16352d4428f6833c953cd9b7c
End of log : http://autobuild.buildroot.net/results/c8588627f329d671de671505757422c0874210a8/build-end.log
Complete log : http://autobuild.buildroot.net/results/c8588627f329d671de671505757422c0874210a8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c8588627f329d671de671505757422c0874210a8/config
Defconfig : http://autobuild.buildroot.net/results/c8588627f329d671de671505757422c0874210a8/defconfig
Build 84f03e1c4d86169cb50caedc7adf5d84230a0018
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 22:57:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=ce70d058f55096a16352d4428f6833c953cd9b7c
End of log : http://autobuild.buildroot.net/results/84f03e1c4d86169cb50caedc7adf5d84230a0018/build-end.log
Complete log : http://autobuild.buildroot.net/results/84f03e1c4d86169cb50caedc7adf5d84230a0018/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/84f03e1c4d86169cb50caedc7adf5d84230a0018/config
Defconfig : http://autobuild.buildroot.net/results/84f03e1c4d86169cb50caedc7adf5d84230a0018/defconfig
Build e2fbeaee641a0e300b5d0dad96874b59d91adc06
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 22:59:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=ce70d058f55096a16352d4428f6833c953cd9b7c
End of log : http://autobuild.buildroot.net/results/e2fbeaee641a0e300b5d0dad96874b59d91adc06/build-end.log
Complete log : http://autobuild.buildroot.net/results/e2fbeaee641a0e300b5d0dad96874b59d91adc06/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e2fbeaee641a0e300b5d0dad96874b59d91adc06/config
Defconfig : http://autobuild.buildroot.net/results/e2fbeaee641a0e300b5d0dad96874b59d91adc06/defconfig
Build 5791012a66226fc2e4f103776453002a592b9dcc
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 23:07:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=ce70d058f55096a16352d4428f6833c953cd9b7c
End of log : http://autobuild.buildroot.net/results/5791012a66226fc2e4f103776453002a592b9dcc/build-end.log
Complete log : http://autobuild.buildroot.net/results/5791012a66226fc2e4f103776453002a592b9dcc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5791012a66226fc2e4f103776453002a592b9dcc/config
Defconfig : http://autobuild.buildroot.net/results/5791012a66226fc2e4f103776453002a592b9dcc/defconfig
Build f3217ac927df8ee432ca6c711760533335ef2143
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-08 23:14:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=ce70d058f55096a16352d4428f6833c953cd9b7c
End of log : http://autobuild.buildroot.net/results/f3217ac927df8ee432ca6c711760533335ef2143/build-end.log
Complete log : http://autobuild.buildroot.net/results/f3217ac927df8ee432ca6c711760533335ef2143/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f3217ac927df8ee432ca6c711760533335ef2143/config
Defconfig : http://autobuild.buildroot.net/results/f3217ac927df8ee432ca6c711760533335ef2143/defconfig
Build ce074c37e97560698552a3e60b84f68009325018
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-08 23:36:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=ce70d058f55096a16352d4428f6833c953cd9b7c
End of log : http://autobuild.buildroot.net/results/ce074c37e97560698552a3e60b84f68009325018/build-end.log
Complete log : http://autobuild.buildroot.net/results/ce074c37e97560698552a3e60b84f68009325018/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ce074c37e97560698552a3e60b84f68009325018/config
Defconfig : http://autobuild.buildroot.net/results/ce074c37e97560698552a3e60b84f68009325018/defconfig
Build 1acb2408524ca9c566e99fc53bf8b50c843e74d2
==============================================
Status : NOK
Failure reason : quota-4.00
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-08 23:49:52
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=ce70d058f55096a16352d4428f6833c953cd9b7c
End of log : http://autobuild.buildroot.net/results/1acb2408524ca9c566e99fc53bf8b50c843e74d2/build-end.log
Complete log : http://autobuild.buildroot.net/results/1acb2408524ca9c566e99fc53bf8b50c843e74d2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1acb2408524ca9c566e99fc53bf8b50c843e74d2/config
Defconfig : http://autobuild.buildroot.net/results/1acb2408524ca9c566e99fc53bf8b50c843e74d2/defconfig
--
http://autobuild.buildroot.net
^ permalink raw reply
* [Buildroot] [PATCH] perl: build with perlcross instead of qemu
From: Peter Korsgaard @ 2012-11-09 7:19 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352425626-10628-1-git-send-email-arnout@mind.be>
>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:
Hi,
Arnout> Peter, if Francois confirms that the perl binary actually runs
Arnout> and if he has no other concerns, then I'd commit this patch
Arnout> quickly and wait for the autobuilder fallout.
I completely agree, thanks for doing this!
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] xlib_libX11: fix compilation of makekeys
From: Peter Korsgaard @ 2012-11-09 7:12 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=fc73d4d262bd9c1ba6f6874f93513d9ca56a1ddb
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
xlib_libX11 builds a makekeys executable for the host, but uses the
targets X11_CFLAGS. This leads to build failures like
http://autobuild.buildroot.net/results/411eb3aefea859a7e31986a44acd50b475f174cb/
This problem was introduced by the version bump, because then also
the AUTORECONF was removed so the existing fix didn't work anymore.
As a slightly cleaner solution, just remove X11_CFLAGS from the
Makefile. We know we don't need it, because the X11 stuff is in
$(HOST_DIR)/usr/include which is already in HOST_CFLAGS.
[Peter: reword comments]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/x11r7/xlib_libX11/xlib_libX11.mk | 19 ++++++-------------
1 files changed, 6 insertions(+), 13 deletions(-)
diff --git a/package/x11r7/xlib_libX11/xlib_libX11.mk b/package/x11r7/xlib_libX11/xlib_libX11.mk
index 79b2d54..f7dc4eb 100644
--- a/package/x11r7/xlib_libX11/xlib_libX11.mk
+++ b/package/x11r7/xlib_libX11/xlib_libX11.mk
@@ -19,21 +19,14 @@ HOST_XLIB_LIBX11_CONF_OPT = \
# src/util/makekeys is executed at build time to generate ks_tables.h, so
# it should get compiled for the host. The libX11 makefile unfortunately
-# doesn't know about cross compilation so this doesn't work.
-# Long term, we should probably teach it about HOSTCC / HOST_CFLAGS, but for
-# now simply disable the src/util Makefile and build makekeys by hand in
-# advance
-define XLIB_LIBX11_DISABLE_MAKEKEYS_BUILD
- echo '' > $(@D)/src/util/Makefile.am
+# doesn't have X11_CFLAGS_FOR_BUILD so this doesn't work. For buildroot,
+# we know the X11 includes are in $(HOST_DIR)/usr/include, which are already
+# in the CFLAGS_FOR_BUILD, so we can just remove the X11_CFLAGS
+define XLIB_LIBX11_DISABLE_MAKEKEYS_X11_CFLAGS
+ $(SED) '/X11_CFLAGS/d' $(@D)/src/util/Makefile*
endef
-XLIB_LIBX11_POST_EXTRACT_HOOKS += XLIB_LIBX11_DISABLE_MAKEKEYS_BUILD
-
-define XLIB_LIBX11_BUILD_MAKEKEYS_FOR_HOST
- cd $(@D)/src/util && $(HOSTCC) $(HOST_CFLAGS) -o makekeys makekeys.c
-endef
-
-XLIB_LIBX11_POST_CONFIGURE_HOOKS += XLIB_LIBX11_BUILD_MAKEKEYS_FOR_HOST
+XLIB_LIBX11_POST_PATCH_HOOKS += XLIB_LIBX11_DISABLE_MAKEKEYS_X11_CFLAGS
$(eval $(autotools-package))
$(eval $(host-autotools-package))
^ permalink raw reply related
* [Buildroot] [PATCH 2/2 v2] xtensa: support configurable processor configurations
From: Chris Zankel @ 2012-11-09 6:33 UTC (permalink / raw)
To: buildroot
Xtensa is a configurable processor architecture, which allows to define
additional instructions and registers. The required variant specific
information for the toolchain is delivered in an 'overlay' file, which
needs to be 'untarred' to the corresponding directories after the
source is installed and patched.
This patch provides support for binutils, gcc, and gdb with a very
limited changes to the build scripts. These additions are only executed
for the Xtensa architecture and have no effect on other architectures.
Signed-off-by: Chris Zankel <chris@zankel.net>
diff --git a/arch/Config.in.xtensa b/arch/Config.in.xtensa
new file mode 100644
index 0000000..61c0235
--- /dev/null
+++ b/arch/Config.in.xtensa
@@ -0,0 +1,30 @@
+choice
+ prompt "Target ABI"
+ depends on BR2_xtensa
+ default BR2_xtensa_fsf
+config BR2_xtensa_custom
+ bool "Custom Xtensa processor configuration"
+config BR2_xtensa_fsf
+ bool "fsf - Default configuration"
+endchoice
+
+config BR2_xtensa_custom_name
+ string "Custom Xtensa processor configuration anme"
+ depends on BR2_xtensa_custom
+ default ""
+ help
+ Name given to a custom Xtensa processor configuration.
+
+config BR2_xtensa_core_name
+ string
+ default BR2_xtensa_custom_name if BR2_xtensa_custom
+ default "" if BR2_xtensa_fsf
+
+config BR2_xtensa_overlay_dir
+ string "Overlay directory for custom configuration"
+ depends on BR2_xtensa_custom
+ default ""
+ help
+ Provide a directory path that contains the overlay files
+ for the custom configuration. The path is based on the
+ buildroot top directory.
diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk
index e1aac9b..0c69cb5 100644
--- a/package/binutils/binutils.mk
+++ b/package/binutils/binutils.mk
@@ -66,5 +66,14 @@ define BINUTILS_INSTALL_TARGET_CMDS
endef
endif
+XTENSA_CORE_NAME = $(call qstrip, $(BR2_xtensa_core_name))
+ifneq ($(XTENSA_CORE_NAME),)
+define BINUTILS_XTENSA_PRE_PATCH
+ tar xf $(BR2_xtensa_overlay_dir)/xtensa_$(XTENSA_CORE_NAME).tar \
+ -C $(@D) bfd include ld
+endef
+HOST_BINUTILS_PRE_PATCH_HOOKS += BINUTILS_XTENSA_PRE_PATCH
+endif
+
$(eval $(autotools-package))
$(eval $(host-autotools-package))
diff --git a/toolchain/gcc/gcc-uclibc-4.x.mk b/toolchain/gcc/gcc-uclibc-4.x.mk
index 1a075cc..1710070 100644
--- a/toolchain/gcc/gcc-uclibc-4.x.mk
+++ b/toolchain/gcc/gcc-uclibc-4.x.mk
@@ -251,6 +251,10 @@ $(GCC_DIR)/.unpacked: $(DL_DIR)/$(GCC_SOURCE)
rm -rf $(GCC_DIR)
$(GCC_CAT) $(DL_DIR)/$(GCC_SOURCE) | tar -C $(TOOLCHAIN_DIR) $(TAR_OPTIONS) -
$(call CONFIG_UPDATE,$(@D))
+ifneq ($(call qstrip, $(BR2_xtensa_core_name)),)
+ tar xf $(BR2_xtensa_overlay_dir)/xtensa_$(call qstrip,\
+ $(BR2_xtensa_core_name)).tar -C $(@D) include
+endif
touch $@
gcc-patched: $(GCC_DIR)/.patched
diff --git a/toolchain/gdb/gdb.mk b/toolchain/gdb/gdb.mk
index 6b029a8..dc305a6 100644
--- a/toolchain/gdb/gdb.mk
+++ b/toolchain/gdb/gdb.mk
@@ -25,6 +25,10 @@ gdb-unpacked: $(GDB_DIR)/.unpacked
$(GDB_DIR)/.unpacked: $(DL_DIR)/$(GDB_SOURCE)
mkdir -p $(GDB_DIR)
$(GDB_CAT) $(DL_DIR)/$(GDB_SOURCE) | tar -C $(GDB_DIR) $(TAR_STRIP_COMPONENTS)=1 $(TAR_OPTIONS) -
+ifneq ($(call qstrip, $(BR2_xtensa_core_name)),)
+ tar xf $(BR2_xtensa_overlay_dir)/xtensa_$(call qstrip, \
+ $(BR2_xtensa_core_name)).tar -C $(@D) bfd include gdb
+endif
ifneq ($(wildcard $(GDB_PATCH_DIR)),)
support/scripts/apply-patches.sh $(GDB_DIR) $(GDB_PATCH_DIR) \*.patch
endif
^ permalink raw reply related
* [Buildroot] [PATCH 1/2 v2] xtensa: add support for the Xtensa architecture
From: Chris Zankel @ 2012-11-09 6:33 UTC (permalink / raw)
To: buildroot
The Xtensa architecture had been removed because it required special
handling and depended on additional directories and files that became
obsolete over time. This change is more aligned to other architectures.
Signed-off-by: Chris Zankel <chris@zankel.net>
diff --git a/arch/Config.in b/arch/Config.in
index 4d1f81f..ad4a9e0 100644
--- a/arch/Config.in
+++ b/arch/Config.in
@@ -145,6 +145,13 @@ config BR2_x86_64
architecture compatible microprocessor).
http://en.wikipedia.org/wiki/X86_64
+config BR2_xtensa
+ bool "Xtensa"
+ help
+ Xtensa is a Tensilica processor IP architecture.
+ http://en.wikipedia.org/wiki/Xtensa
+ http://www.tensilica.com/
+
endchoice
config BR2_microblaze
@@ -158,4 +165,5 @@ source "arch/Config.in.powerpc"
source "arch/Config.in.sh"
source "arch/Config.in.sparc"
source "arch/Config.in.x86"
+source "arch/Config.in.xtensa"
source "arch/Config.in.common"
diff --git a/arch/Config.in.common b/arch/Config.in.common
index 1ed9929..d2bfd59 100644
--- a/arch/Config.in.common
+++ b/arch/Config.in.common
@@ -49,6 +49,7 @@ config BR2_ARCH
default "sh4aeb" if BR2_sh4aeb
default "sh64" if BR2_sh64
default "sparc" if BR2_sparc
+ default "xtensa" if BR2_xtensa
config BR2_ENDIAN
diff --git a/linux/Config.in b/linux/Config.in
index 277ef0e..29a2110 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -152,7 +152,8 @@ config BR2_LINUX_KERNEL_BZIMAGE
config BR2_LINUX_KERNEL_ZIMAGE
bool "zImage"
- depends on BR2_arm || BR2_armeb || BR2_powerpc || BR2_sparc || BR2_sh || BR2_sh64
+ depends on BR2_arm || BR2_armeb || BR2_powerpc || BR2_sparc || \
+ BR2_sh || BR2_sh64 || BR2_xtensa
config BR2_LINUX_KERNEL_APPENDED_ZIMAGE
bool "zImage with appended DT"
diff --git a/package/autoconf/Config.in b/package/autoconf/Config.in
index c304572..3622f3d 100644
--- a/package/autoconf/Config.in
+++ b/package/autoconf/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_AUTOCONF
bool "autoconf"
- depends on !(BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64)
+ depends on !(BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3)
+ depends on !(BR2_sh3eb || BR2_sh64 || BR2_xtensa)
select BR2_PACKAGE_PERL
help
Extensible program for developing configure scripts. These
@@ -9,4 +10,5 @@ config BR2_PACKAGE_AUTOCONF
http://www.gnu.org/software/autoconf/
comment "autoconf requires an architecture supported by qemu"
- depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64
+ depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || \
+ BR2_sh3eb || BR2_sh64 || BR2_xtensa
diff --git a/package/automake/Config.in b/package/automake/Config.in
index f8d74ef..6e48517 100644
--- a/package/automake/Config.in
+++ b/package/automake/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_AUTOMAKE
bool "automake"
- depends on !(BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64)
+ depends on !(BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3)
+ depends on !(BR2_sh3eb || BR2_sh64 || BR2_xtensa)
select BR2_PACKAGE_AUTOCONF
select BR2_PACKAGE_PERL
help
@@ -10,4 +11,5 @@ config BR2_PACKAGE_AUTOMAKE
http://www.gnu.org/software/automake/
comment "automake requires an architecture supported by qemu"
- depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64
+ depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || \
+ BR2_sh3eb || BR2_sh64 || BR2_xtensa
diff --git a/package/ltrace/Config.in b/package/ltrace/Config.in
index a65ca48..4cce767 100644
--- a/package/ltrace/Config.in
+++ b/package/ltrace/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_LTRACE
bool "ltrace"
depends on !(BR2_avr32 || BR2_mips || BR2_mipsel || BR2_sh || BR2_sh64)
+ depends on !BR2_xtensa
select BR2_PACKAGE_LIBELF
help
Debugging program which runs a specified command until it exits.
diff --git a/package/perl/Config.in b/package/perl/Config.in
index 0642deb..2906714 100644
--- a/package/perl/Config.in
+++ b/package/perl/Config.in
@@ -7,6 +7,7 @@ config BR2_PACKAGE_PERL
depends on !BR2_sh3
depends on !BR2_sh3eb
depends on !BR2_sh64
+ depends on !BR2_xtensa
help
Larry Wall's Practical Extraction and Report Language
An interpreted scripting language, known among some as "Unix's Swiss
@@ -47,4 +48,5 @@ config BR2_PACKAGE_PERL_GDBM_FILE
endif
comment "perl requires an architecture supported by qemu"
- depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64
+ depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || \
+ BR2_sh3eb || BR2_sh64 || BR2_xtensa
diff --git a/toolchain/Config.in b/toolchain/Config.in
index 29ed2f0..7edf82b 100644
--- a/toolchain/Config.in
+++ b/toolchain/Config.in
@@ -23,7 +23,7 @@ config BR2_TOOLCHAIN_EXTERNAL
config BR2_TOOLCHAIN_CTNG
bool "Crosstool-NG toolchain"
- depends on !BR2_microblaze && !BR2_aarch64
+ depends on !BR2_microblaze && !BR2_aarch64 && !BR2_xtensa
select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS
select BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED
help
diff --git a/toolchain/toolchain-common.in b/toolchain/toolchain-common.in
index 4c2a28b..9f11a39 100644
--- a/toolchain/toolchain-common.in
+++ b/toolchain/toolchain-common.in
@@ -93,7 +93,7 @@ config BR2_NEEDS_GETTEXT_IF_LOCALE
default y if (BR2_NEEDS_GETTEXT && BR2_ENABLE_LOCALE)
config BR2_USE_MMU
- bool "Enable MMU support" if BR2_arm || BR2_armeb || BR2_mips || BR2_mipsel || BR2_sh
+ bool "Enable MMU support" if BR2_arm || BR2_armeb || BR2_mips || BR2_mipsel || BR2_sh || BR2_xtensa
default y if !BR2_bfin
help
If your target has a MMU, you should say Y here. If you
diff --git a/toolchain/uClibc/uclibc.mk b/toolchain/uClibc/uclibc.mk
index 8cf59bc..055267c 100644
--- a/toolchain/uClibc/uclibc.mk
+++ b/toolchain/uClibc/uclibc.mk
@@ -38,6 +38,7 @@ UCLIBC_TARGET_ARCH:=$(shell $(SHELL) -c "echo $(ARCH) | sed \
-e 's/sh[234].*/sh/' \
-e 's/mips.*/mips/' \
-e 's/cris.*/cris/' \
+ -e 's/xtensa.*/xtensa/' \
")
UCLIBC_TARGET_ENDIAN:=$(call qstrip,$(BR2_ENDIAN))
^ permalink raw reply related
* [Buildroot] [PATCH 0/2] add support for xtensa back to buildroot
From: Chris Zankel @ 2012-11-09 4:49 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121108082247.55eac2b2@skate>
Hi Thomas,
I understand your concern, and I guess it won't help that I had patches
to clean up Buildroot for Xtensa laying around for over a year :-[ So,
my promise would be to actually submit patches when I have them.
Part of the problem was that it wasn't just Buildroot, but other parts
(uClibc, kernel, etc.) were also missing or having outdated changes, so
it would have required to push a lot of patches. I have been working to
get those patches in the corresponding trees first, and Buildroot
actually now builds and runs out of the box on Xtensa with just those
two patches and a generic patch for uClibc-snapshot. So, maintainability
and detecting breakage will be much easier, and I intend to verify it on
a more regular basis.
I'll send an updated version of the two patches where Crosstool-NG is
disabled for Xtensa.
Thanks,
-Chris
On 11/07/2012 11:22 PM, Thomas Petazzoni wrote:
> Dear Chris Zankel,
>
> On Wed, 07 Nov 2012 19:38:14 -0800, Chris Zankel wrote:
>
>> It would be great if you could add support for Xtensa back to buildroot.
>> I understand that it was removed because it required a lot of additional
>> files and special handling, which became obsolete and hard to maintain
>> over time.
>> These two patches are much more aligned with other architectures with only
>> very minimal overhead. I also just recently updated uClibc and can build
>> buildroot out of the box, so we can now better support and maintain it.
> I just skimmed through the patches, but it indeed looks a lot more
> reasonable than the support we originally had for Xtensa, thanks for
> this work!. One thing that should be added is to make sure that the
> Crosstool-NG backend cannot be selected for Xtensa, as it doesn't
> support this architecture.
>
> Also, the issue we had with the original Xtensa implementation is that
> the original submitters sent some patches that we merged, and
> subsequently never maintained them. Do you have plans to use this
> Xtensa architecture on a regular basis, and help us fixing build issues
> related to this architecture? Of course, we don't require you any sort
> of strict commitment or anything like that, I'd just like to know how
> much you'll be using this architecture.
>
> Thanks again for having worked on this,
>
> Thomas
^ permalink raw reply
* [Buildroot] [PATCH] perl: build with perlcross instead of qemu
From: Dan Pattison @ 2012-11-09 3:01 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352425626-10628-1-git-send-email-arnout@mind.be>
On 11/8/2012 5:47 PM, Arnout Vandecappelle (Essensium/Mind) wrote:
> The perlcross project makes it possible to properly cross-compile
> perl. It creates a host-miniperl that is configured for the target
> and uses that to cross-compile the perl modules.
>
> Unfortunately there are still a few hacks needed to make it work.
> Proper fixes can be developed and upstreamed later.
>
> Since there is no longer a dependency on qemu, it works on all
> architectures again.
>
> Also removed some config options:
> - BR2_PACKAGE_PERL_CUSTOM_INSTALL just allows a selection of modules;
> this can also be encoded by an empty BR2_PACKAGE_PERL_MODULES.
> - BR2_PACKAGE_PERL_DB_FILE and BR2_PACKAGE_PERL_GDBM_FILE can be
> derived automatically from the package configs.
>
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> ---
> This is still a bit RFC. I've tested in on a glibc x86_64, on a
> minimal internal powerpc and a glibc ARM. I haven't tested with any
> of the autobuilder configurations, but I expect it will at least be
> better than what we get now...
>
> Francois, can you check if it also runs? I've only done build tests.
>
> Peter, if Francois confirms that the perl binary actually runs and if
> he has no other concerns, then I'd commit this patch quickly and wait
> for the autobuilder fallout.
> package/perl/Config.in | 40 +++----------
> package/perl/perl.mk | 153 ++++++++++++++++++++----------------------------
> 2 files changed, 71 insertions(+), 122 deletions(-)
>
> diff --git a/package/perl/Config.in b/package/perl/Config.in
> index 0642deb..b2991b0 100644
> --- a/package/perl/Config.in
> +++ b/package/perl/Config.in
> @@ -1,12 +1,5 @@
> config BR2_PACKAGE_PERL
> bool "perl"
> - depends on !BR2_avr32
> - depends on !BR2_bfin
> - depends on !BR2_sh2
> - depends on !BR2_sh2a
> - depends on !BR2_sh3
> - depends on !BR2_sh3eb
> - depends on !BR2_sh64
> help
> Larry Wall's Practical Extraction and Report Language
> An interpreted scripting language, known among some as "Unix's Swiss
> @@ -16,35 +9,18 @@ config BR2_PACKAGE_PERL
>
> if BR2_PACKAGE_PERL
>
> -config BR2_PACKAGE_PERL_CUSTOM_INSTALL
> - bool "custom install"
> - help
> - Don't use the full install target
> - Install only a selection of modules (like microperl).
> -
> config BR2_PACKAGE_PERL_MODULES
> - string "additional modules"
> - depends on BR2_PACKAGE_PERL_CUSTOM_INSTALL
> + string "custom module selection"
> help
> - List of space-separated perl modules to copy to the rootfs.
> -
> - Examples: constant.pm Getopt/Std.pm Time/Local.pm
> + List of space-separated perl modules (without .pm) to copy to the
> + rootfs.
>
> - Module dependencies are not automatic so check your needs.
> + Examples: constant Getopt/Std Time/Local
>
> -config BR2_PACKAGE_PERL_DB_FILE
> - bool "DB_File"
> - select BR2_PACKAGE_BERKELEYDB
> - help
> - Build the DB_File module.
> + Module dependencies on external libraries are not automatic so
> + check your needs.
>
> -config BR2_PACKAGE_PERL_GDBM_FILE
> - bool "GDBM_File"
> - select BR2_PACKAGE_GDBM
> - help
> - Build the GDBM_File module.
> + Leave empty for all modules (as far as the external libraries
> + are available).
>
> endif
> -
> -comment "perl requires an architecture supported by qemu"
> - depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64
> diff --git a/package/perl/perl.mk b/package/perl/perl.mk
> index 81dff04..f3c73dd 100644
> --- a/package/perl/perl.mk
> +++ b/package/perl/perl.mk
> @@ -12,7 +12,26 @@ PERL_LICENSE = Artistic
> PERL_LICENSE_FILES = Artistic
> PERL_INSTALL_STAGING = YES
>
> -PERL_DEPENDENCIES = host-qemu
> +PERL_CROSS_VERSION = 0.7
> +PERL_CROSS_SITE = http://download.berlios.de/perlcross
> +PERL_CROSS_SOURCE = perl-5.$(PERL_VERSION_MAJOR).0-cross-$(PERL_CROSS_VERSION).tar.gz
> +
> +# We use the perlcross hack to cross-compile perl. It should
> +# be extracted over the perl sources, so we don't define that
> +# as a separate package. Instead, it is downloaded and extracted
> +# together with perl
> +
> +define PERL_CROSS_DOWNLOAD
> + $(call DOWNLOAD,$(PERL_CROSS_SITE)/$(PERL_CROSS_SOURCE))
> +endef
> +PERL_POST_DOWNLOAD_HOOKS += PERL_CROSS_DOWNLOAD
> +
> +define PERL_CROSS_EXTRACT
> + $(INFLATE$(suffix $(PERL_CROSS_SOURCE))) $(DL_DIR)/$(PERL_CROSS_SOURCE) | \
> + $(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(@D) $(TAR_OPTIONS) -
> +endef
> +PERL_POST_EXTRACT_HOOKS += PERL_CROSS_EXTRACT
> +
> ifeq ($(BR2_PACKAGE_BERKELEYDB),y)
> PERL_DEPENDENCIES += berkeleydb
> endif
> @@ -20,23 +39,31 @@ ifeq ($(BR2_PACKAGE_GDBM),y)
> PERL_DEPENDENCIES += gdbm
> endif
>
> -PERL_CONF_OPT = -des \
> - -Dusecrosscompile \
> - -Dtargetrun=$(QEMU_USER) \
> - -Dqemulib=$(STAGING_DIR) \
> - -Dar="$(TARGET_AR)" \
> - -Dcc="$(TARGET_CC)" \
> - -Dcpp="$(TARGET_CC)" \
> - -Dld="$(TARGET_LD)" \
> - -Dnm="$(TARGET_NM)" \
> - -Dranlib="$(TARGET_RANLIB)" \
> - -Dccflags="$(TARGET_CFLAGS)" \
> - -Dldflags="$(TARGET_LDFLAGS) -lgcc_s -lm" \
> - -Dlddlflags="-shared" \
> - -Dlibc=$(STAGING_DIR)/lib/libc.so \
> - -Duseshrplib \
> - -Dprefix=/usr \
> - -Uoptimize
> +# Normally, --mode=cross should automatically do the two steps
> +# below, but it doesn't work for some reason.
> +PERL_HOST_CONF_OPT = \
> + --mode=buildmini \
> + --target=$(GNU_TARGET_NAME) \
> + --target-arch=$(GNU_TARGET_NAME) \
> + --set-target-name=$(GNU_TARGET_NAME)
> +
> +# We have to override LD, because an external multilib toolchain ld is not
> +# wrapped to provide the required sysroot options. We also can't use ccache
> +# because the configure script doesn't support it.
> +PERL_CONF_OPT = \
> + --mode=target \
> + --target=$(GNU_TARGET_NAME) \
> + --target-tools-prefix=$(TARGET_CROSS) \
> + --prefix=/usr \
> + -Dld="$(TARGET_CC_NOCCACHE)" \
> + -A ccflags="$(TARGET_CFLAGS)" \
> + -A ldflags="$(TARGET_LDFLAGS) -lm" \
> + -A mydomain="" \
> + -A myhostname="$(BR2_TARGET_GENERIC_HOSTNAME)" \
> + -A myuname="Buildroot $(BR2_VERSION_FULL)" \
> + -A osname=linux \
> + -A osvers=$(LINUX_VERSION) \
> + -A perlamdin=root
>
> ifeq ($(shell expr $(PERL_VERSION_MAJOR) % 2), 1)
> PERL_CONF_OPT += -Dusedevel
> @@ -46,93 +73,39 @@ ifneq ($(BR2_LARGEFILE),y)
> PERL_CONF_OPT += -Uuselargefiles
> endif
>
> +PERL_MODULES = $(call qstrip,$(BR2_PACKAGE_PERL_MODULES))
> +ifneq ($(PERL_MODULES),)
> +PERL_CONF_OPT += --only-mod=$(subst $(space),$(comma),$(PERL_MODULES))
> +endif
> +
> define PERL_CONFIGURE_CMDS
> - rm -f $(@D)/config.sh
> - (cd $(@D); ./Configure $(PERL_CONF_OPT))
> - echo "# patched values" >>$(@D)/config.sh
> - $(SED) '/^myarchname=/d' \
> - -e '/^mydomain=/d' \
> - -e '/^myhostname=/d' \
> - -e '/^myuname=/d' \
> - -e '/^osname=/d' \
> - -e '/^osvers=/d' \
> - -e '/^perladmin=/d' \
> - $(@D)/config.sh
> - echo "myarchname='$(GNU_TARGET_NAME)'" >>$(@D)/config.sh
> - echo "mydomain=''" >>$(@D)/config.sh
> - echo "myhostname='$(BR2_TARGET_GENERIC_HOSTNAME)'" >>$(@D)/config.sh
> - echo "myuname='Buildroot $(BR2_VERSION_FULL)'" >>$(@D)/config.sh
> - echo "osname='linux'" >>$(@D)/config.sh
> - echo "osvers='$(BR2_LINUX_KERNEL_VERSION)'" >>$(@D)/config.sh
> - echo "perladmin='root'" >>$(@D)/config.sh
> - (cd $(@D); ./Configure -S)
> - cp $(@D)/config.h $(@D)/xconfig.h
> + (cd $(@D); HOSTCC='$(HOSTCC_NOCACHE)' ./configure $(PERL_HOST_CONF_OPT))
> + (cd $(@D); ./configure $(PERL_CONF_OPT))
> $(SED) 's/UNKNOWN-/Buildroot $(BR2_VERSION_FULL) /' $(@D)/patchlevel.h
> endef
>
> +# perlcross's miniperl_top forgets base, which is required by mktables.
> +# Instead of patching, it's easier to just set PERL5LIB
> define PERL_BUILD_CMDS
> - echo "#!/bin/sh" > $(@D)/Cross/miniperl
> - echo "$(QEMU_USER) $(@D)/miniperl \"\$$@\"" >>$(@D)/Cross/miniperl
> - chmod +x $(@D)/Cross/miniperl
> - PERL_MM_OPT="PERL=$(@D)/Cross/miniperl" \
> - $(MAKE) -C $(@D) all
> + PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) perl modules
> endef
>
> define PERL_INSTALL_STAGING_CMDS
> - $(MAKE) INSTALL_DEPENDENCE= \
> - INSTALLFLAGS= \
> - DESTDIR="$(STAGING_DIR)" \
> - -C $(@D) install.perl
> + PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) DESTDIR="$(STAGING_DIR)" install.perl
> endef
>
> -PERL_RUN_PERL = $(QEMU_USER) $(@D)/perl -Ilib
> -PERL_ARCHNAME = $(shell $(PERL_RUN_PERL) -MConfig -e "print Config->{archname}")
> -PERL_LIB = $(TARGET_DIR)/usr/lib/perl5/$(PERL_VERSION)
> -PERL_ARCHLIB = $(PERL_LIB)/$(PERL_ARCHNAME)
> -PERL_MODS = $(call qstrip,$(BR2_PACKAGE_PERL_MODULES))
> -# Minimal set of modules required for 'perl -V' to work
> -PERL_ARCH_MODS = Config.pm Config_git.pl Config_heavy.pl
> -PERL_BASE_MODS = strict.pm vars.pm warnings.pm warnings/register.pm
> -
> -define PERL_INSTALL_MODULES
> - for i in $(PERL_ARCH_MODS); do \
> - $(INSTALL) -m 0644 -D $(@D)/lib/$$i $(PERL_ARCHLIB)/$$i; \
> - done
> - for i in $(PERL_BASE_MODS); do \
> - $(INSTALL) -m 0644 -D $(@D)/lib/$$i $(PERL_LIB)/$$i; \
> - done
> - for i in $(PERL_MODS); do \
> - j=`echo $$i|cut -d : -f 1` ; \
> - if [ -d $(@D)/lib/$$j ] ; then \
> - cp -af $(@D)/lib/$$j $(PERL_LIB) ; \
> - fi ; \
> - if [ -f $(@D)/lib/$$i ] ; then \
> - $(INSTALL) -m 0644 -D $(@D)/lib/$$i $(PERL_LIB)/$$i; \
> - fi ; \
> - done
> - # Remove test files
> - find $(PERL_LIB) -type f -name *.t -exec rm -f {} \;
> -endef
> +PERL_INSTALL_TARGET_GOALS = install.perl
> +ifeq ($(BR2_HAVE_DOCUMENTATION),y)
> +PERL_INSTALL_TARGET_GOALS += install.man
> +endif
> +
>
> -ifeq ($(BR2_PACKAGE_PERL_CUSTOM_INSTALL),y)
> -define PERL_INSTALL_TARGET_CMDS
> - $(INSTALL) -m 0755 -D $(@D)/perl $(TARGET_DIR)/usr/bin/perl
> - $(INSTALL) -m 0755 -D $(@D)/libperl.so $(PERL_ARCHLIB)/CORE/libperl.so
> - $(PERL_INSTALL_MODULES)
> -endef
> -else
> define PERL_INSTALL_TARGET_CMDS
> - $(MAKE) INSTALL_DEPENDENCE= \
> - INSTALLFLAGS=-p \
> - DESTDIR="$(TARGET_DIR)" \
> - -C $(@D) install.perl
> - rm -f $(PERL_ARCHLIB)/CORE/*.h
> - find $(PERL_ARCHLIB) -type f -name *.bs -exec rm -f {} \;
> + PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) DESTDIR="$(TARGET_DIR)" $(PERL_INSTALL_TARGET_GOALS)
> endef
> -endif
>
> define PERL_CLEAN_CMDS
> - -$(MAKE) -C $(@D) clean
> + -$(MAKE1) -C $(@D) clean
> endef
>
> $(eval $(generic-package))
Hello,
In the perlcross Makefile, if you change perl5160delta.pod to
perl5162delta.pod in three places then you can compile the newest
perl-5.16.2. Tested for arm, confirmed working.
Regards,
Dan Pattison
Ethertek Circuits
^ permalink raw reply
* [Buildroot] [PATCH 1/6] Add config file for the snowball board
From: Arnout Vandecappelle @ 2012-11-09 1:51 UTC (permalink / raw)
To: buildroot
In-Reply-To: <509B6D2A.90408@calao-systems.com>
On 11/08/12 09:28, Gr?gory Hermant wrote:
> Le 30/10/2012 23:09, Arnout Vandecappelle a ?crit :
>> On 10/29/12 09:41, Gregory Hermant wrote:
[snip]
>>> +BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA2"
>>> +BR2_PACKAGE_BUSYBOX_CONFIG="board/calao/snowball/busybox-1.20.x.config"
>>
>> This file should be created in the same patch, otherwise this defconfig
>> isn't working.
>>
>> Also, is it really necessary to have a custom busybox config?
>>
> I need to enable the mdev loading firmware support.
> I will change the snowball defconfig file in order to use mdev.
Yes, if you select BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV then mdev
will automatically be selected in busybox.
[snip]
>>> +BR2_LINUX_KERNEL_INSTALL_TARGET=y
>>
>> Why?
>>
> To load the kernel from the rootfs partition hence the boot partition
> could be removed.
Yes, that was actually obvious, I was stupid to ask it.
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] perl: build with perlcross instead of qemu
From: Arnout Vandecappelle @ 2012-11-09 1:47 UTC (permalink / raw)
To: buildroot
The perlcross project makes it possible to properly cross-compile
perl. It creates a host-miniperl that is configured for the target
and uses that to cross-compile the perl modules.
Unfortunately there are still a few hacks needed to make it work.
Proper fixes can be developed and upstreamed later.
Since there is no longer a dependency on qemu, it works on all
architectures again.
Also removed some config options:
- BR2_PACKAGE_PERL_CUSTOM_INSTALL just allows a selection of modules;
this can also be encoded by an empty BR2_PACKAGE_PERL_MODULES.
- BR2_PACKAGE_PERL_DB_FILE and BR2_PACKAGE_PERL_GDBM_FILE can be
derived automatically from the package configs.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
This is still a bit RFC. I've tested in on a glibc x86_64, on a
minimal internal powerpc and a glibc ARM. I haven't tested with any
of the autobuilder configurations, but I expect it will at least be
better than what we get now...
Francois, can you check if it also runs? I've only done build tests.
Peter, if Francois confirms that the perl binary actually runs and if
he has no other concerns, then I'd commit this patch quickly and wait
for the autobuilder fallout.
package/perl/Config.in | 40 +++----------
package/perl/perl.mk | 153 ++++++++++++++++++++----------------------------
2 files changed, 71 insertions(+), 122 deletions(-)
diff --git a/package/perl/Config.in b/package/perl/Config.in
index 0642deb..b2991b0 100644
--- a/package/perl/Config.in
+++ b/package/perl/Config.in
@@ -1,12 +1,5 @@
config BR2_PACKAGE_PERL
bool "perl"
- depends on !BR2_avr32
- depends on !BR2_bfin
- depends on !BR2_sh2
- depends on !BR2_sh2a
- depends on !BR2_sh3
- depends on !BR2_sh3eb
- depends on !BR2_sh64
help
Larry Wall's Practical Extraction and Report Language
An interpreted scripting language, known among some as "Unix's Swiss
@@ -16,35 +9,18 @@ config BR2_PACKAGE_PERL
if BR2_PACKAGE_PERL
-config BR2_PACKAGE_PERL_CUSTOM_INSTALL
- bool "custom install"
- help
- Don't use the full install target
- Install only a selection of modules (like microperl).
-
config BR2_PACKAGE_PERL_MODULES
- string "additional modules"
- depends on BR2_PACKAGE_PERL_CUSTOM_INSTALL
+ string "custom module selection"
help
- List of space-separated perl modules to copy to the rootfs.
-
- Examples: constant.pm Getopt/Std.pm Time/Local.pm
+ List of space-separated perl modules (without .pm) to copy to the
+ rootfs.
- Module dependencies are not automatic so check your needs.
+ Examples: constant Getopt/Std Time/Local
-config BR2_PACKAGE_PERL_DB_FILE
- bool "DB_File"
- select BR2_PACKAGE_BERKELEYDB
- help
- Build the DB_File module.
+ Module dependencies on external libraries are not automatic so
+ check your needs.
-config BR2_PACKAGE_PERL_GDBM_FILE
- bool "GDBM_File"
- select BR2_PACKAGE_GDBM
- help
- Build the GDBM_File module.
+ Leave empty for all modules (as far as the external libraries
+ are available).
endif
-
-comment "perl requires an architecture supported by qemu"
- depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64
diff --git a/package/perl/perl.mk b/package/perl/perl.mk
index 81dff04..f3c73dd 100644
--- a/package/perl/perl.mk
+++ b/package/perl/perl.mk
@@ -12,7 +12,26 @@ PERL_LICENSE = Artistic
PERL_LICENSE_FILES = Artistic
PERL_INSTALL_STAGING = YES
-PERL_DEPENDENCIES = host-qemu
+PERL_CROSS_VERSION = 0.7
+PERL_CROSS_SITE = http://download.berlios.de/perlcross
+PERL_CROSS_SOURCE = perl-5.$(PERL_VERSION_MAJOR).0-cross-$(PERL_CROSS_VERSION).tar.gz
+
+# We use the perlcross hack to cross-compile perl. It should
+# be extracted over the perl sources, so we don't define that
+# as a separate package. Instead, it is downloaded and extracted
+# together with perl
+
+define PERL_CROSS_DOWNLOAD
+ $(call DOWNLOAD,$(PERL_CROSS_SITE)/$(PERL_CROSS_SOURCE))
+endef
+PERL_POST_DOWNLOAD_HOOKS += PERL_CROSS_DOWNLOAD
+
+define PERL_CROSS_EXTRACT
+ $(INFLATE$(suffix $(PERL_CROSS_SOURCE))) $(DL_DIR)/$(PERL_CROSS_SOURCE) | \
+ $(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(@D) $(TAR_OPTIONS) -
+endef
+PERL_POST_EXTRACT_HOOKS += PERL_CROSS_EXTRACT
+
ifeq ($(BR2_PACKAGE_BERKELEYDB),y)
PERL_DEPENDENCIES += berkeleydb
endif
@@ -20,23 +39,31 @@ ifeq ($(BR2_PACKAGE_GDBM),y)
PERL_DEPENDENCIES += gdbm
endif
-PERL_CONF_OPT = -des \
- -Dusecrosscompile \
- -Dtargetrun=$(QEMU_USER) \
- -Dqemulib=$(STAGING_DIR) \
- -Dar="$(TARGET_AR)" \
- -Dcc="$(TARGET_CC)" \
- -Dcpp="$(TARGET_CC)" \
- -Dld="$(TARGET_LD)" \
- -Dnm="$(TARGET_NM)" \
- -Dranlib="$(TARGET_RANLIB)" \
- -Dccflags="$(TARGET_CFLAGS)" \
- -Dldflags="$(TARGET_LDFLAGS) -lgcc_s -lm" \
- -Dlddlflags="-shared" \
- -Dlibc=$(STAGING_DIR)/lib/libc.so \
- -Duseshrplib \
- -Dprefix=/usr \
- -Uoptimize
+# Normally, --mode=cross should automatically do the two steps
+# below, but it doesn't work for some reason.
+PERL_HOST_CONF_OPT = \
+ --mode=buildmini \
+ --target=$(GNU_TARGET_NAME) \
+ --target-arch=$(GNU_TARGET_NAME) \
+ --set-target-name=$(GNU_TARGET_NAME)
+
+# We have to override LD, because an external multilib toolchain ld is not
+# wrapped to provide the required sysroot options. We also can't use ccache
+# because the configure script doesn't support it.
+PERL_CONF_OPT = \
+ --mode=target \
+ --target=$(GNU_TARGET_NAME) \
+ --target-tools-prefix=$(TARGET_CROSS) \
+ --prefix=/usr \
+ -Dld="$(TARGET_CC_NOCCACHE)" \
+ -A ccflags="$(TARGET_CFLAGS)" \
+ -A ldflags="$(TARGET_LDFLAGS) -lm" \
+ -A mydomain="" \
+ -A myhostname="$(BR2_TARGET_GENERIC_HOSTNAME)" \
+ -A myuname="Buildroot $(BR2_VERSION_FULL)" \
+ -A osname=linux \
+ -A osvers=$(LINUX_VERSION) \
+ -A perlamdin=root
ifeq ($(shell expr $(PERL_VERSION_MAJOR) % 2), 1)
PERL_CONF_OPT += -Dusedevel
@@ -46,93 +73,39 @@ ifneq ($(BR2_LARGEFILE),y)
PERL_CONF_OPT += -Uuselargefiles
endif
+PERL_MODULES = $(call qstrip,$(BR2_PACKAGE_PERL_MODULES))
+ifneq ($(PERL_MODULES),)
+PERL_CONF_OPT += --only-mod=$(subst $(space),$(comma),$(PERL_MODULES))
+endif
+
define PERL_CONFIGURE_CMDS
- rm -f $(@D)/config.sh
- (cd $(@D); ./Configure $(PERL_CONF_OPT))
- echo "# patched values" >>$(@D)/config.sh
- $(SED) '/^myarchname=/d' \
- -e '/^mydomain=/d' \
- -e '/^myhostname=/d' \
- -e '/^myuname=/d' \
- -e '/^osname=/d' \
- -e '/^osvers=/d' \
- -e '/^perladmin=/d' \
- $(@D)/config.sh
- echo "myarchname='$(GNU_TARGET_NAME)'" >>$(@D)/config.sh
- echo "mydomain=''" >>$(@D)/config.sh
- echo "myhostname='$(BR2_TARGET_GENERIC_HOSTNAME)'" >>$(@D)/config.sh
- echo "myuname='Buildroot $(BR2_VERSION_FULL)'" >>$(@D)/config.sh
- echo "osname='linux'" >>$(@D)/config.sh
- echo "osvers='$(BR2_LINUX_KERNEL_VERSION)'" >>$(@D)/config.sh
- echo "perladmin='root'" >>$(@D)/config.sh
- (cd $(@D); ./Configure -S)
- cp $(@D)/config.h $(@D)/xconfig.h
+ (cd $(@D); HOSTCC='$(HOSTCC_NOCACHE)' ./configure $(PERL_HOST_CONF_OPT))
+ (cd $(@D); ./configure $(PERL_CONF_OPT))
$(SED) 's/UNKNOWN-/Buildroot $(BR2_VERSION_FULL) /' $(@D)/patchlevel.h
endef
+# perlcross's miniperl_top forgets base, which is required by mktables.
+# Instead of patching, it's easier to just set PERL5LIB
define PERL_BUILD_CMDS
- echo "#!/bin/sh" > $(@D)/Cross/miniperl
- echo "$(QEMU_USER) $(@D)/miniperl \"\$$@\"" >>$(@D)/Cross/miniperl
- chmod +x $(@D)/Cross/miniperl
- PERL_MM_OPT="PERL=$(@D)/Cross/miniperl" \
- $(MAKE) -C $(@D) all
+ PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) perl modules
endef
define PERL_INSTALL_STAGING_CMDS
- $(MAKE) INSTALL_DEPENDENCE= \
- INSTALLFLAGS= \
- DESTDIR="$(STAGING_DIR)" \
- -C $(@D) install.perl
+ PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) DESTDIR="$(STAGING_DIR)" install.perl
endef
-PERL_RUN_PERL = $(QEMU_USER) $(@D)/perl -Ilib
-PERL_ARCHNAME = $(shell $(PERL_RUN_PERL) -MConfig -e "print Config->{archname}")
-PERL_LIB = $(TARGET_DIR)/usr/lib/perl5/$(PERL_VERSION)
-PERL_ARCHLIB = $(PERL_LIB)/$(PERL_ARCHNAME)
-PERL_MODS = $(call qstrip,$(BR2_PACKAGE_PERL_MODULES))
-# Minimal set of modules required for 'perl -V' to work
-PERL_ARCH_MODS = Config.pm Config_git.pl Config_heavy.pl
-PERL_BASE_MODS = strict.pm vars.pm warnings.pm warnings/register.pm
-
-define PERL_INSTALL_MODULES
- for i in $(PERL_ARCH_MODS); do \
- $(INSTALL) -m 0644 -D $(@D)/lib/$$i $(PERL_ARCHLIB)/$$i; \
- done
- for i in $(PERL_BASE_MODS); do \
- $(INSTALL) -m 0644 -D $(@D)/lib/$$i $(PERL_LIB)/$$i; \
- done
- for i in $(PERL_MODS); do \
- j=`echo $$i|cut -d : -f 1` ; \
- if [ -d $(@D)/lib/$$j ] ; then \
- cp -af $(@D)/lib/$$j $(PERL_LIB) ; \
- fi ; \
- if [ -f $(@D)/lib/$$i ] ; then \
- $(INSTALL) -m 0644 -D $(@D)/lib/$$i $(PERL_LIB)/$$i; \
- fi ; \
- done
- # Remove test files
- find $(PERL_LIB) -type f -name *.t -exec rm -f {} \;
-endef
+PERL_INSTALL_TARGET_GOALS = install.perl
+ifeq ($(BR2_HAVE_DOCUMENTATION),y)
+PERL_INSTALL_TARGET_GOALS += install.man
+endif
+
-ifeq ($(BR2_PACKAGE_PERL_CUSTOM_INSTALL),y)
-define PERL_INSTALL_TARGET_CMDS
- $(INSTALL) -m 0755 -D $(@D)/perl $(TARGET_DIR)/usr/bin/perl
- $(INSTALL) -m 0755 -D $(@D)/libperl.so $(PERL_ARCHLIB)/CORE/libperl.so
- $(PERL_INSTALL_MODULES)
-endef
-else
define PERL_INSTALL_TARGET_CMDS
- $(MAKE) INSTALL_DEPENDENCE= \
- INSTALLFLAGS=-p \
- DESTDIR="$(TARGET_DIR)" \
- -C $(@D) install.perl
- rm -f $(PERL_ARCHLIB)/CORE/*.h
- find $(PERL_ARCHLIB) -type f -name *.bs -exec rm -f {} \;
+ PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) DESTDIR="$(TARGET_DIR)" $(PERL_INSTALL_TARGET_GOALS)
endef
-endif
define PERL_CLEAN_CMDS
- -$(MAKE) -C $(@D) clean
+ -$(MAKE1) -C $(@D) clean
endef
$(eval $(generic-package))
--
tg: (3d3047f..) t/perlcross (depends on: master)
^ permalink raw reply related
* [Buildroot] no jack?
From: Peter Korsgaard @ 2012-11-08 23:47 UTC (permalink / raw)
To: buildroot
In-Reply-To: <509C2369.5060104@mind.be>
>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
Arnout> No, but it shouldn't be too difficult to integrate. Look at
Arnout> midori for an example of a package using waf as the build
Arnout> system.
>>
>> Waf is btw a pain. It seems to fail on one of the autobuilders (host
>> python issue?)
Arnout> Do you have an autobuilder ref for that? I can't find any
Arnout> midori build failures (but since there's no search function...)
Not offhand, but I'll look.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH 1/1] qextserialport : fix download and bump version
From: Peter Korsgaard @ 2012-11-08 23:33 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121108000209.223413fe@skate>
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Hi,
Sagaert> Signed-off-by: Sagaert Johan <sagaert.johan@skynet.be>
>>
>> Thanks, but it still doesn't build with a base Qt config here as it
>> tries to link with QtGui / QtNetwork, which imho doesn't make much sense
>> for a serial lib.
>>
>> Now, I know next to nothing about qmake, but it is probably related to
>> the windows version using QtGui.
>>
>> Thomas, can you take a look at it?
Thomas> I'll have a look, but I can't say when. I'll most likely be
Thomas> very busy over the next 3 weeks or so.
Ok, then I'll commit Johan's patch. It's not 100% correct, but it's
atleast better than what we have now (where download even doesn't work).
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] qextserialport : fix download and bump version
From: Peter Korsgaard @ 2012-11-08 23:31 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=35b7560a1bf9bc3a46ff9d3942fb38bc51c6e378
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Sagaert Johan <sagaert.johan@skynet.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
.../qextserialport-no-examples.patch | 17 -----------------
package/qextserialport/qextserialport.mk | 12 +++++++-----
2 files changed, 7 insertions(+), 22 deletions(-)
diff --git a/package/qextserialport/qextserialport-no-examples.patch b/package/qextserialport/qextserialport-no-examples.patch
deleted file mode 100644
index c7d2d41..0000000
--- a/package/qextserialport/qextserialport-no-examples.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Disable compilation of examples
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
-Index: qextserialport-ef4af2a2ee3f/qextserialport.pro
-===================================================================
---- qextserialport-ef4af2a2ee3f.orig/qextserialport.pro
-+++ qextserialport-ef4af2a2ee3f/qextserialport.pro
-@@ -1,7 +1,4 @@
- #
- TEMPLATE = subdirs
- CONFIG += ordered
--SUBDIRS = src \
-- examples/enumerator \
-- examples/event
--
-+SUBDIRS = src
diff --git a/package/qextserialport/qextserialport.mk b/package/qextserialport/qextserialport.mk
index 6ffb9eb..f240cda 100644
--- a/package/qextserialport/qextserialport.mk
+++ b/package/qextserialport/qextserialport.mk
@@ -4,9 +4,11 @@
#
#############################################################
-QEXTSERIALPORT_VERSION = ef4af2a2ee3f
-QEXTSERIALPORT_SITE = https://qextserialport.googlecode.com/hg/
-QEXTSERIALPORT_SITE_METHOD = hg
+QEXTSERIALPORT_VERSION = f83b4e7ca922e53
+QEXTSERIALPORT_SITE = https://qextserialport.googlecode.com/git/
+QEXTSERIALPORT_SITE_METHOD = git
+
+QEXTSERIALPORT_LICENSE = MIT
QEXTSERIALPORT_DEPENDENCIES = qt
@@ -24,12 +26,12 @@ define QEXTSERIALPORT_INSTALL_STAGING_CMDS
mkdir -p $(STAGING_DIR)/usr/include/QExtSerialPort
cp $(@D)/src/*.h $(STAGING_DIR)/usr/include/QExtSerialPort/
cp $(@D)/src/QExtSerialPort $(STAGING_DIR)/usr/include/QExtSerialPort/
- cp -a $(@D)/src/build/*.so* $(STAGING_DIR)/usr/lib/
+ cp -a $(@D)/*.so* $(STAGING_DIR)/usr/lib/
cp $(@D)/qextserialport.pc $(STAGING_DIR)/usr/lib/pkgconfig/
endef
define QEXTSERIALPORT_INSTALL_TARGET_CMDS
- cp -a $(@D)/src/build/*.so.* $(TARGET_DIR)/usr/lib
+ cp -a $(@D)/*.so.* $(TARGET_DIR)/usr/lib
endef
$(eval $(generic-package))
^ permalink raw reply related
* [Buildroot] [PATCH v3 1/2] netatalk: Add missing dependency to netatalk
From: Maxime Hadjinlian @ 2012-11-08 22:07 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352412269-11107-1-git-send-email-maxime.hadjinlian@gmail.com>
Okay, here is the real patch v2, the one I sent before this one was
the same as the real first one so don't take it into account.
Again sorry about the subject missing a v2/v3.
On Thu, Nov 8, 2012 at 11:04 PM, Maxime Hadjinlian
<maxime.hadjinlian@gmail.com> wrote:
> Netatalk need host-pkgconf, otherwise the configure script is complaining.
>
> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
> ---
> package/netatalk/netatalk.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/netatalk/netatalk.mk b/package/netatalk/netatalk.mk
> index c01e360..4aa179e 100644
> --- a/package/netatalk/netatalk.mk
> +++ b/package/netatalk/netatalk.mk
> @@ -7,7 +7,7 @@ NETATALK_VERSION = 3.0
> NETATALK_SITE = http://downloads.sourceforge.net/project/netatalk/netatalk/$(NETATALK_VERSION)
> NETATALK_SOURCE = netatalk-$(NETATALK_VERSION).tar.bz2
>
> -NETATALK_DEPENDENCIES = openssl berkeleydb libgcrypt libgpg-error
> +NETATALK_DEPENDENCIES = host-pkgconf openssl berkeleydb libgcrypt libgpg-error
> NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99"
> NETATALK_CONF_OPT += --with-cnid-cdb-backend \
> --with-bdb=$(STAGING_DIR)/usr \
> --
> 1.7.10.4
>
^ permalink raw reply
* [Buildroot] [PATCH v3 1/2] netatalk: Add missing dependency to netatalk
From: Maxime Hadjinlian @ 2012-11-08 22:04 UTC (permalink / raw)
To: buildroot
Netatalk need host-pkgconf, otherwise the configure script is complaining.
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
package/netatalk/netatalk.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/netatalk/netatalk.mk b/package/netatalk/netatalk.mk
index c01e360..4aa179e 100644
--- a/package/netatalk/netatalk.mk
+++ b/package/netatalk/netatalk.mk
@@ -7,7 +7,7 @@ NETATALK_VERSION = 3.0
NETATALK_SITE = http://downloads.sourceforge.net/project/netatalk/netatalk/$(NETATALK_VERSION)
NETATALK_SOURCE = netatalk-$(NETATALK_VERSION).tar.bz2
-NETATALK_DEPENDENCIES = openssl berkeleydb libgcrypt libgpg-error
+NETATALK_DEPENDENCIES = host-pkgconf openssl berkeleydb libgcrypt libgpg-error
NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99"
NETATALK_CONF_OPT += --with-cnid-cdb-backend \
--with-bdb=$(STAGING_DIR)/usr \
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH] add new package grantlee
From: Arnout Vandecappelle @ 2012-11-08 21:52 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1351715883-10799-1-git-send-email-mr.zoltan.gyarmati@gmail.com>
On 10/31/12 21:38, Zoltan at osuosl.org wrote:
> Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
(build-test on an internal ppc toolchain with wchar, C++, X11, Qt)
Regards,
Arnout
PS There is something wrong with your git-send-email setup: the quotes around
your full name are missing.
--
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
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox