Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCHv3 for-next 5/6] cpanminus: requires host-qemu
From: Arnout Vandecappelle @ 2012-11-28 16:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354118962-18601-1-git-send-email-arnout@mind.be>

From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>

It's still broken, but is someone wants to try it out then at least
the dependency is there.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
v3: Don't bother adding dependencies to Config.in
---
 package/cpanminus/cpanminus.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/cpanminus/cpanminus.mk b/package/cpanminus/cpanminus.mk
index d3a338b..af35e93 100644
--- a/package/cpanminus/cpanminus.mk
+++ b/package/cpanminus/cpanminus.mk
@@ -7,7 +7,7 @@
 CPANMINUS_VERSION = 1.5018
 CPANMINUS_SOURCE = miyagawa-cpanminus-$(CPANMINUS_VERSION)-0-gee6cd30.tar.gz
 CPANMINUS_SITE = https://github.com/miyagawa/cpanminus/tarball/$(CPANMINUS_VERSION)
-CPANMINUS_DEPENDENCIES = perl $(call qstrip,$(BR2_PACKAGE_CPANMINUS_NATIVE_DEPENDENCIES))
+CPANMINUS_DEPENDENCIES = host-qemu perl $(call qstrip,$(BR2_PACKAGE_CPANMINUS_NATIVE_DEPENDENCIES))
 
 CPANMINUS_RUN_PERL = $(QEMU_USER) $(STAGING_DIR)/usr/bin/perl
 CPANMINUS_ARCHNAME = $(shell $(CPANMINUS_RUN_PERL) -MConfig -e "print Config->{archname}")
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCHv3 for-next 4/6] perl: fix configure step
From: Arnout Vandecappelle @ 2012-11-28 16:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354118962-18601-1-git-send-email-arnout@mind.be>

From: Francois Perrad <fperrad@gmail.com>

Configure -A symbol=val generates a extra space in config.sh,
which causes failure like this :
    Building Module-Runtime-0.013
    Unknown OS type ' linux' - using default settings

[Arnout: use -A define:foo instead of patching config.sh]

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/perl/perl.mk |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/package/perl/perl.mk b/package/perl/perl.mk
index 0893eb5..391047d 100644
--- a/package/perl/perl.mk
+++ b/package/perl/perl.mk
@@ -55,14 +55,14 @@ PERL_CONF_OPT = \
 	--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 perladmin=root
+	-Dccflags="$(TARGET_CFLAGS)" \
+	-Dldflags="$(TARGET_LDFLAGS) -lm" \
+	-A define:mydomain="" \
+	-A define:myhostname="$(BR2_TARGET_GENERIC_HOSTNAME)" \
+	-A define:myuname="Buildroot $(BR2_VERSION_FULL)" \
+	-A define:osname=linux \
+	-A define:osvers=$(LINUX_VERSION) \
+	-A define:perladmin=root
 
 ifeq ($(shell expr $(PERL_VERSION_MAJOR) % 2), 1)
     PERL_CONF_OPT += -Dusedevel
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCHv3 for-next 3/6] perl: remove the double configure hack
From: Arnout Vandecappelle @ 2012-11-28 16:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354118962-18601-1-git-send-email-arnout@mind.be>

From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>

configure had to be called twice because with --mode=cross the
miniperl-step failed.  However, just leaving out the --mode parameter
is sufficient to make it work.  Since GNU_TARGET_NAME is always
different from the host's tuple (it has -buildroot- in it), we can
safely assume that the configure script will automatically enter
cross mode.

Also fix a type in perladmin definition.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/perl/perl.mk |   14 ++------------
 1 file changed, 2 insertions(+), 12 deletions(-)

diff --git a/package/perl/perl.mk b/package/perl/perl.mk
index b84917b..0893eb5 100644
--- a/package/perl/perl.mk
+++ b/package/perl/perl.mk
@@ -47,19 +47,10 @@ ifeq ($(BR2_PACKAGE_GDBM),y)
     PERL_DEPENDENCIES += gdbm
 endif
 
-# 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 \
@@ -71,7 +62,7 @@ PERL_CONF_OPT = \
 	-A myuname="Buildroot $(BR2_VERSION_FULL)" \
 	-A osname=linux \
 	-A osvers=$(LINUX_VERSION) \
-	-A perlamdin=root
+	-A perladmin=root
 
 ifeq ($(shell expr $(PERL_VERSION_MAJOR) % 2), 1)
     PERL_CONF_OPT += -Dusedevel
@@ -87,8 +78,7 @@ PERL_CONF_OPT += --only-mod=$(subst $(space),$(comma),$(PERL_MODULES))
 endif
 
 define PERL_CONFIGURE_CMDS
-	(cd $(@D); HOSTCC='$(HOSTCC_NOCACHE)' ./configure $(PERL_HOST_CONF_OPT))
-	(cd $(@D); ./configure $(PERL_CONF_OPT))
+	(cd $(@D); HOSTCC='$(HOSTCC_NOCACHE)' ./configure $(PERL_CONF_OPT))
 	$(SED) 's/UNKNOWN-/Buildroot $(BR2_VERSION_FULL) /' $(@D)/patchlevel.h
 endef
 
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCHv3 for-next 2/6] perl: substitute perlcross pod with perl-version-specific pod
From: Arnout Vandecappelle @ 2012-11-28 16:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354118962-18601-1-git-send-email-arnout@mind.be>

From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>

As suggested by Dan Pattison at ethertek ca.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/perl/perl.mk |   10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/package/perl/perl.mk b/package/perl/perl.mk
index f3c73dd..b84917b 100644
--- a/package/perl/perl.mk
+++ b/package/perl/perl.mk
@@ -13,8 +13,11 @@ PERL_LICENSE_FILES = Artistic
 PERL_INSTALL_STAGING = YES
 
 PERL_CROSS_VERSION = 0.7
+PERL_CROSS_BASE_VERSION = 5.$(PERL_VERSION_MAJOR).0
 PERL_CROSS_SITE    = http://download.berlios.de/perlcross
-PERL_CROSS_SOURCE  = perl-5.$(PERL_VERSION_MAJOR).0-cross-$(PERL_CROSS_VERSION).tar.gz
+PERL_CROSS_SOURCE  = perl-$(PERL_CROSS_BASE_VERSION)-cross-$(PERL_CROSS_VERSION).tar.gz
+PERL_CROSS_OLD_POD = perl$(subst .,,$(PERL_CROSS_BASE_VERSION))delta.pod
+PERL_CROSS_NEW_POD = perl$(subst .,,$(PERL_VERSION))delta.pod
 
 # We use the perlcross hack to cross-compile perl. It should
 # be extracted over the perl sources, so we don't define that
@@ -32,6 +35,11 @@ define PERL_CROSS_EXTRACT
 endef
 PERL_POST_EXTRACT_HOOKS += PERL_CROSS_EXTRACT
 
+define PERL_CROSS_SET_POD
+	$(SED) s/$(PERL_CROSS_OLD_POD)/$(PERL_CROSS_NEW_POD)/g $(@D)/Makefile
+endef
+PERL_POST_PATCH_HOOKS += PERL_CROSS_SET_POD
+
 ifeq ($(BR2_PACKAGE_BERKELEYDB),y)
     PERL_DEPENDENCIES += berkeleydb
 endif
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCHv3 for-next 1/6] perl: remove redundant patches
From: Arnout Vandecappelle @ 2012-11-28 16:09 UTC (permalink / raw)
  To: buildroot

From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>

Now we are using perlcross, the patches to make perl work with qemu are
redundant, so remove them.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
v2: don't remove perl-fix-Module-Build.patch [Francois Perrad]
---
 package/perl/perl-configure-qemu.patch |   53 --------------------------------
 package/perl/perl-make-ext.patch       |   24 ---------------
 package/perl/perl-mkppport.patch       |   37 ----------------------
 3 files changed, 114 deletions(-)
 delete mode 100644 package/perl/perl-configure-qemu.patch
 delete mode 100644 package/perl/perl-make-ext.patch
 delete mode 100644 package/perl/perl-mkppport.patch

diff --git a/package/perl/perl-configure-qemu.patch b/package/perl/perl-configure-qemu.patch
deleted file mode 100644
index c2d6b92..0000000
--- a/package/perl/perl-configure-qemu.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-Add qemu support
-
-see https://rt.perl.org/rt3//Public/Bug/Display.html?id=114798
-
-Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
-
-Index: b/Configure
-===================================================================
---- a/Configure
-+++ b/Configure
-@@ -2837,6 +2837,9 @@
-             ;;
-         *)  echo "Using usrinc $usrinc." >&4 ;;
- 	esac
-+	case "$targetrun" in
-+	*qemu*) targethost=dummy ;;
-+	esac
- 	case "$targethost" in
- 	'') echo "Targethost not defined." >&4; croak=y ;;
-         *)  echo "Using targethost $targethost." >&4
-@@ -2868,7 +2871,7 @@
- 	case "$targetfrom" in
- 	'') targetfrom=scp ;;
- 	esac
--    	run=$run-$targetrun
-+    	run=$run-`basename $targetrun`
-     	to=$to-$targetto
-     	from=$from-$targetfrom
- 	case "$targetdir" in
-@@ -2908,6 +2911,14 @@
- $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
- EOF
- 	    ;;
-+	*qemu*)
-+	    to=:
-+	    from=:
-+	    cat >$run <<EOF
-+#!/bin/sh
-+$targetrun -L $qemulib "\$@"
-+EOF
-+	    ;;
- 	*)  echo "Unknown targetrun '$targetrun'" >&4
- 	    exit 1
- 	    ;;
-@@ -5048,7 +5059,7 @@
- echo " ";
- echo "Checking if your compiler accepts $flag" 2>&1;
- echo "int main(void) { return 0; }" > gcctest.c;
--if $cc -O2 $flag -o gcctest gcctest.c 2>gcctest.out && ./gcctest; then
-+if $cc -O2 $flag -o gcctest gcctest.c 2>gcctest.out && $run ./gcctest; then
-     echo "Yes, it does." 2>&1;
-     if $test -s gcctest.out ; then
-         echo "But your platform does not like it:";
diff --git a/package/perl/perl-make-ext.patch b/package/perl/perl-make-ext.patch
deleted file mode 100644
index e0195e7..0000000
--- a/package/perl/perl-make-ext.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Don't use RUN with make (only for perl)
-
-Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
-
-Index: b/make_ext.pl
-===================================================================
---- a/make_ext.pl
-+++ b/make_ext.pl
-@@ -458,11 +458,13 @@
- 	# Give makefile an opportunity to rewrite itself.
- 	# reassure users that life goes on...
- 	my @args = ('config', @$pass_through);
--	system(@run, @make, @args) and print "@run @make @args failed, continuing anyway...\n";
-+#	system(@run, @make, @args) and print "@run @make @args failed, continuing anyway...\n";
-+	system(@make, @args) and print "@make @args failed, continuing anyway...\n";
-     }
-     my @targ = ($target, @$pass_through);
-     print "Making $target in $ext_dir\n at run @make @targ\n";
--    my $code = system(@run, @make, @targ);
-+#    my $code = system(@run, @make, @targ);
-+    my $code = system(@make, @targ);
-     die "Unsuccessful make($ext_dir): code=$code" if $code != 0;
- 
-     chdir $return_dir || die "Cannot cd to $return_dir: $!";
diff --git a/package/perl/perl-mkppport.patch b/package/perl/perl-mkppport.patch
deleted file mode 100644
index 97f27a2..0000000
--- a/package/perl/perl-mkppport.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Add RUN
-
-Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
-
-Index: b/mkppport
-===================================================================
---- a/mkppport
-+++ b/mkppport
-@@ -1,6 +1,7 @@
- use strict;
- use warnings;
- 
-+use Config;
- use Getopt::Long;
- use File::Spec;
- use File::Compare qw( compare );
-@@ -136,14 +137,18 @@
- #----------------------------------------------
- sub run
- {
-+  my @run = $Config{run};
-+  @run = () if not defined $run[0] or $run[0] eq '';
-   my @args = ("-I" . File::Spec->catdir((File::Spec->updir) x 2, 'lib'), @_);
-   my $run = $perl =~ m/\s/ ? qq("$perl") : $perl;
-   for (@args) {
-     $_ = qq("$_") if $^O eq 'VMS' && /^[^"]/;
-     $run .= " $_";
-   }
--  print "running $run\n";
--  system $run and die "$run failed: $?\n";
-+#  print "running $run\n";
-+#  system $run and die "$run failed: $?\n";
-+  print "running ", join(' ', @run, $run), "\n";
-+  system join(' ', @run, $run) and die "@run $run failed: $?\n";
- }
- 
- __END__
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCH v2] libpcap: fix static build
From: Thomas Petazzoni @ 2012-11-28 14:42 UTC (permalink / raw)
  To: buildroot

The libpcap package contained some interesting attempts to support a
static-only build, but it was not working:

 http://autobuild.buildroot.org/results/01038d3b970092d894d2bae80679247e65722785/build-end.log

In fact the configure.in of libpcap has provision to support
--enable-shared/--disable-shared, but the generated configure script
in the libpcap package has not been regenerated with the configure.in
changes.

So basically, enabling LIBPCAP_AUTORECONF=YES ensures that the
configure script gets generated, which brings us a working
--enable-shared / --disable-shared.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
v2: Add comment above the AUTORECONF=YES line that explains why it is
    needed.
---
 package/libpcap/libpcap.mk |   15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/package/libpcap/libpcap.mk b/package/libpcap/libpcap.mk
index 7a1d32f..d35c228 100644
--- a/package/libpcap/libpcap.mk
+++ b/package/libpcap/libpcap.mk
@@ -10,11 +10,16 @@ LIBPCAP_LICENSE = BSD-3c
 LIBPCAP_LICENSE_FILES = LICENSE
 LIBPCAP_INSTALL_STAGING = YES
 
-# doesn't have an install-strip
-LIBPCAP_INSTALL_TARGET_OPT= DESTDIR="$(TARGET_DIR)" \
-	$(if $(BR2_PREFER_STATIC_LIB),install,install-shared)
-LIBPCAP_INSTALL_STAGING_OPT= DESTDIR="$(STAGING_DIR)" install \
-	$(if $(BR2_PREFER_STATIC_LIB),,install-shared)
+# The configure.in file contains the necessary code to handle
+# --enable-shared/--disable-shared properly, but the configure script
+# bundled with the libpcap tarball is not up-to-date with the
+# configure.in file. In order to get proper handling of
+# --enable-shared/--disable-shared, which is needed when doing a
+# static library build, we autoreconfigure this package. This can be
+# removed when bumping libpcap, after checking that the bundled
+# configure script correctly handles --enable-shared/--disable-shared.
+LIBPCAP_AUTORECONF = YES
+
 LIBPCAP_DEPENDENCIES = zlib \
 	$(if $(BR2_PACKAGE_LIBUSB),libusb)
 LIBPCAP_CONF_ENV = ac_cv_linux_vers=2 \
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH] binutils: not available for the target on AArch64
From: Thomas Petazzoni @ 2012-11-28 14:36 UTC (permalink / raw)
  To: buildroot

Fixes:

  http://autobuild.buildroot.org/results/74082860f607cbd857654e9504f5f7e7ae47c0ac/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/binutils/Config.in |    1 +
 package/oprofile/Config.in |    1 +
 2 files changed, 2 insertions(+)

diff --git a/package/binutils/Config.in b/package/binutils/Config.in
index 6480370..38d519a 100644
--- a/package/binutils/Config.in
+++ b/package/binutils/Config.in
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_BINUTILS
 	bool "binutils"
 	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
+	depends on !BR2_aarch64
 	help
 	  Install binutils on the target
 
diff --git a/package/oprofile/Config.in b/package/oprofile/Config.in
index 562c910..8c881d1 100644
--- a/package/oprofile/Config.in
+++ b/package/oprofile/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_OPROFILE
 	select BR2_PACKAGE_POPT
 	select BR2_PACKAGE_BINUTILS
 	depends on BR2_INSTALL_LIBSTDCPP
+	depends on !BR2_aarch64 # binutils
 	help
 	  OProfile is a system-wide profiler for Linux systems,
 	  capable of profiling all running code at low overhead.
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH] flex: fix build for nommu systems
From: Gustavo Zacarias @ 2012-11-28 14:35 UTC (permalink / raw)
  To: buildroot

The flex binary uses fork() so it breaks on !MMU builds.
Since we usually don't require flex in the target and the common
scenario is that we just want libfl in staging reverse the options so
that BR2_PACKAGE_FLEX just builds and install libfl.a and change the
LIBFL option to BR2_PACKAGE_FLEX_BINARY to install the binary in the
target.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/flex/Config.in        |   10 +++++-----
 package/flex/flex.mk          |   26 +++++++++-----------------
 package/gob2/Config.in        |    1 -
 package/ipsec-tools/Config.in |    1 -
 package/libcue/Config.in      |    1 -
 package/linux-pam/Config.in   |    1 -
 package/radvd/Config.in       |    1 -
 7 files changed, 14 insertions(+), 27 deletions(-)

diff --git a/package/flex/Config.in b/package/flex/Config.in
index b10eb00..adef468 100644
--- a/package/flex/Config.in
+++ b/package/flex/Config.in
@@ -6,10 +6,10 @@ config BR2_PACKAGE_FLEX
 
 	  http://www.gnu.org/software/flex/
 
-config BR2_PACKAGE_FLEX_LIBFL
-	bool "Install libfl.a under staging_dir/usr/lib"
-	default y
+config BR2_PACKAGE_FLEX_BINARY
+	bool "Install tool in the target"
+	# needs fork()
+	depends on BR2_USE_MMU
 	depends on BR2_PACKAGE_FLEX
 	help
-	  Install libfl.a under staging_dir/usr/lib for further development
-	  on a host machine.
+	  Install the flex binary tool in the target filesystem.
diff --git a/package/flex/flex.mk b/package/flex/flex.mk
index 2599cdc..19b6ef2 100644
--- a/package/flex/flex.mk
+++ b/package/flex/flex.mk
@@ -16,30 +16,22 @@ FLEX_DEPENDENCIES = \
 # we don't have a host-gettext/libintl
 HOST_FLEX_DEPENDENCIES =
 
-# lex -> flex
-define FLEX_INSTALL_LEX
-	cd $(TARGET_DIR)/usr/bin && ln -snf flex lex
+ifeq ($(BR2_PACKAGE_FLEX_BINARY),)
+define FLEX_DISABLE_PROGRAM
+	$(SED) 's/^bin_PROGRAMS.*//' $(@D)/Makefile.in
 endef
 
-define FLEX_UNINSTALL_LEX
-	-rm $(TARGET_DIR)/usr/bin/lex
-endef
+FLEX_POST_EXTRACT_HOOKS += FLEX_DISABLE_PROGRAM
 
-FLEX_POST_INSTALL_HOOKS += FLEX_INSTALL_LEX
-FLEX_POST_CLEAN_HOOKS += FLEX_UNINSTALL_LEX
+else
 
-# libfl installation
-ifeq ($(BR2_PACKAGE_FLEX_LIBFL),y)
-define FLEX_INSTALL_LIBFL
-	install -D $(FLEX_DIR)/libfl.a $(STAGING_DIR)/usr/lib/libfl.a
+# lex -> flex
+define FLEX_INSTALL_LEX
+	cd $(TARGET_DIR)/usr/bin && ln -snf flex lex
 endef
 
-define FLEX_UNINSTALL_LIBFL
-	-rm $(STAGING_DIR)/lib/libfl.a
-endef
+FLEX_POST_INSTALL_HOOKS += FLEX_INSTALL_LEX
 
-FLEX_POST_INSTALL_HOOKS += FLEX_INSTALL_LIBFL
-FLEX_POST_CLEAN_HOOKS += FLEX_UNINSTALL_LIBFL
 endif
 
 $(eval $(autotools-package))
diff --git a/package/gob2/Config.in b/package/gob2/Config.in
index cbe30d6..4a09c41 100644
--- a/package/gob2/Config.in
+++ b/package/gob2/Config.in
@@ -5,7 +5,6 @@ config BR2_PACKAGE_GOB2
 	depends on BR2_USE_MMU
 	select BR2_PACKAGE_LIBGLIB2
 	select BR2_PACKAGE_FLEX
-	select BR2_PACKAGE_FLEX_LIBFL
 	select BR2_PACKAGE_BISON
 	help
 	  GOB (GTK+ Object Builder) is a preprocessor which simplifies
diff --git a/package/ipsec-tools/Config.in b/package/ipsec-tools/Config.in
index 6f6dc37..06a5a56 100644
--- a/package/ipsec-tools/Config.in
+++ b/package/ipsec-tools/Config.in
@@ -2,7 +2,6 @@ config BR2_PACKAGE_IPSEC_TOOLS
 	bool "ipsec-tools"
 	select BR2_PACKAGE_OPENSSL
 	select BR2_PACKAGE_FLEX
-	select BR2_PACKAGE_FLEX_LIBFL
 	help
 	  This package is required to support IPSec for Linux 2.6+
 
diff --git a/package/libcue/Config.in b/package/libcue/Config.in
index e5e2e16..6121746 100644
--- a/package/libcue/Config.in
+++ b/package/libcue/Config.in
@@ -1,7 +1,6 @@
 config BR2_PACKAGE_LIBCUE
 	bool "libcue"
 	select BR2_PACKAGE_FLEX
-	select BR2_PACKAGE_FLEX_LIBFL
 	help
 	  CUE Sheet Parser Library
 
diff --git a/package/linux-pam/Config.in b/package/linux-pam/Config.in
index 7cfd814..7a4ae94 100644
--- a/package/linux-pam/Config.in
+++ b/package/linux-pam/Config.in
@@ -2,7 +2,6 @@ config BR2_PACKAGE_LINUX_PAM
 	bool "linux-pam"
 	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
 	select BR2_PACKAGE_FLEX
-	select BR2_PACKAGE_FLEX_LIBFL
 	depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR)
 	help
 	  A Security Framework that Provides Authentication for Applications
diff --git a/package/radvd/Config.in b/package/radvd/Config.in
index d0d9d70..98dbae2 100644
--- a/package/radvd/Config.in
+++ b/package/radvd/Config.in
@@ -3,7 +3,6 @@ config BR2_PACKAGE_RADVD
 	# libdaemon uses fork()
 	depends on BR2_USE_MMU
 	select BR2_PACKAGE_FLEX
-	select BR2_PACKAGE_FLEX_LIBFL
 	select BR2_PACKAGE_LIBDAEMON
 	depends on BR2_INET_IPV6
 	help
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] [git commit branch/next] package: add gd package
From: Baruch Siach @ 2012-11-28 14:12 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <87lidlzunw.fsf@dell.be.48ers.dk>

Hi Peter,

On Wed, Nov 28, 2012 at 06:09:07AM -0800, Peter Korsgaard wrote:
> >>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:
> 
> Hi,
> 
>  >> +GD_TOOLS_                         	+= gdlib-config
> 
>  Baruch> Shouldn't this be 'GD_TOOLS_y'?
> 
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_ANNOTATE)	+= annotate
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_BDFTOGD)	+= bdftogd
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_GD2COPYPAL)	+= gd2copypal
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_GD2TOGIF)	+= gd2togif
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_GD2TOPNG)	+= gd2topng
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_GDCMPGIF)	+= gdcmpgif
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_GDPARTTOPNG)	+= gdparttopng
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_GDTOPNG)	+= gdtopng
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_GIFTOGD2)	+= giftogd2
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_PNGTOGD)	+= pngtogd
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_PNGTOGD2)	+= pngtogd2
>  >> +GD_TOOLS_$(BR2_PACKAGE_GD_WEBPNG)	+= webpng
>  >> +
>  >> +define GD_REMOVE_TOOLS
>  >> +	rm -f $(addprefix $(TARGET_DIR)/usr/bin/,$(GD_TOOLS_))
> 
>  Baruch> And here.
> 
> No - The makefile installs everything, so I need to remove all programs
> NOT enabled (and gdlib-config is never needed).

I see. I got confused by the inverted logic. Thanks for the explanation.

baruch

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

^ permalink raw reply

* [Buildroot] [git commit branch/next] package: add gd package
From: Peter Korsgaard @ 2012-11-28 14:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121128052616.GA29377@sapphire.tkos.co.il>

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

Hi,

 >> +GD_TOOLS_                         	+= gdlib-config

 Baruch> Shouldn't this be 'GD_TOOLS_y'?

 >> +GD_TOOLS_$(BR2_PACKAGE_GD_ANNOTATE)	+= annotate
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_BDFTOGD)	+= bdftogd
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_GD2COPYPAL)	+= gd2copypal
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_GD2TOGIF)	+= gd2togif
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_GD2TOPNG)	+= gd2topng
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_GDCMPGIF)	+= gdcmpgif
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_GDPARTTOPNG)	+= gdparttopng
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_GDTOPNG)	+= gdtopng
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_GIFTOGD2)	+= giftogd2
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_PNGTOGD)	+= pngtogd
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_PNGTOGD2)	+= pngtogd2
 >> +GD_TOOLS_$(BR2_PACKAGE_GD_WEBPNG)	+= webpng
 >> +
 >> +define GD_REMOVE_TOOLS
 >> +	rm -f $(addprefix $(TARGET_DIR)/usr/bin/,$(GD_TOOLS_))

 Baruch> And here.

No - The makefile installs everything, so I need to remove all programs
NOT enabled (and gdlib-config is never needed).

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] Problem building libglib2
From: Thomas Petazzoni @ 2012-11-28 13:31 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAE21AQquyvDfegH5f8FebeE8LFTnOY3r75Yuy6ZpWs72uD80MQ@mail.gmail.com>

Dear Charles Manning,

On Wed, 28 Nov 2012 14:37:46 +1300, Charles Manning wrote:

> I'm a buildroot newbie and am trying to figure out what went wrong
> here.

This looks odd. Could you give us your Buildroot .config and tell us
the Buildroot version you're using?

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] [PATCH 2/2] libdaemon: needs mmu
From: Gustavo Zacarias @ 2012-11-28 13:24 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354109043-12022-1-git-send-email-gustavo@zacarias.com.ar>

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/avahi/Config.in     |    2 ++
 package/ifplugd/Config.in   |    2 ++
 package/libdaemon/Config.in |    2 ++
 package/nss-mdns/Config.in  |    2 ++
 package/radvd/Config.in     |    2 ++
 5 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/package/avahi/Config.in b/package/avahi/Config.in
index 8ba33d5..e2f8c53 100644
--- a/package/avahi/Config.in
+++ b/package/avahi/Config.in
@@ -1,5 +1,7 @@
 config BR2_PACKAGE_AVAHI
 	bool "avahi"
+	# libdaemon uses fork()
+	depends on BR2_USE_MMU
 	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
 	help
 	  Avahi is a system which facilitates service
diff --git a/package/ifplugd/Config.in b/package/ifplugd/Config.in
index 0311ad7..cbb5128 100644
--- a/package/ifplugd/Config.in
+++ b/package/ifplugd/Config.in
@@ -1,5 +1,7 @@
 config BR2_PACKAGE_IFPLUGD
 	bool "ifplugd"
+	# libdaemon uses fork()
+	depends on BR2_USE_MMU
 	select BR2_PACKAGE_LIBDAEMON
 	help
 	  Ifplugd is a daemon which will automatically configure your
diff --git a/package/libdaemon/Config.in b/package/libdaemon/Config.in
index 6943263..bfcedc1 100644
--- a/package/libdaemon/Config.in
+++ b/package/libdaemon/Config.in
@@ -1,5 +1,7 @@
 config BR2_PACKAGE_LIBDAEMON
 	bool "libdaemon"
+	# needs fork()
+	depends on BR2_USE_MMU
 	help
 	  libdaemon is a lightweight C library that eases the
 	  writing of UNIX daemons.
diff --git a/package/nss-mdns/Config.in b/package/nss-mdns/Config.in
index 485cfcd..1df0ce4 100644
--- a/package/nss-mdns/Config.in
+++ b/package/nss-mdns/Config.in
@@ -1,5 +1,7 @@
 config BR2_PACKAGE_NSS_MDNS
 	bool "nss-mdns"
+	# libdaemon->avahi uses fork()
+	depends on BR2_USE_MMU
 	depends on BR2_TOOLCHAIN_EXTERNAL_GLIBC || BR2_TOOLCHAIN_CTNG_eglibc || BR2_TOOLCHAIN_CTNG_glibc
 	depends on BR2_PACKAGE_AVAHI_DAEMON
 	help
diff --git a/package/radvd/Config.in b/package/radvd/Config.in
index 90c1fd4..d0d9d70 100644
--- a/package/radvd/Config.in
+++ b/package/radvd/Config.in
@@ -1,5 +1,7 @@
 config BR2_PACKAGE_RADVD
 	bool "radvd"
+	# libdaemon uses fork()
+	depends on BR2_USE_MMU
 	select BR2_PACKAGE_FLEX
 	select BR2_PACKAGE_FLEX_LIBFL
 	select BR2_PACKAGE_LIBDAEMON
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] [PATCH 1/2] hiawatha: needs mmu
From: Gustavo Zacarias @ 2012-11-28 13:24 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/hiawatha/Config.in b/package/hiawatha/Config.in
index 431a9fa..ac0aa10 100644
--- a/package/hiawatha/Config.in
+++ b/package/hiawatha/Config.in
@@ -1,5 +1,7 @@
 config BR2_PACKAGE_HIAWATHA
 	bool "hiawatha"
+	# needs fork()
+	depends on BR2_USE_MMU
 	help
 	  Hiawatha is a webserver for Unix and has been built with
 	  security in mind. This resulted in a highly secure
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] [git commit branch/next] package: add gd package
From: Thomas Petazzoni @ 2012-11-28 13:06 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121128052616.GA29377@sapphire.tkos.co.il>

Dear Baruch Siach,

On Wed, 28 Nov 2012 07:26:17 +0200, Baruch Siach wrote:

> On Tue, Nov 27, 2012 at 11:21:06AM -0800, Peter Korsgaard wrote:
> 
> [...]
> 
> > +GD_TOOLS_                         	+= gdlib-config
> 
> Shouldn't this be 'GD_TOOLS_y'?

No, the idea is to have all tools to be kept in GD_TOOLS_y and all
tools to be removed in GD_TOOLS_. Since we always want to remove
gdlib-config from the target, we unconditionally add it to GD_TOOLS_.

> > +define GD_REMOVE_TOOLS
> > +	rm -f $(addprefix $(TARGET_DIR)/usr/bin/,$(GD_TOOLS_))
> 
> And here.

No, that's correct. GD_TOOLS_ is the list of things to be removed.

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 > To integrate pycrypto into Buildroot
From: Thomas Petazzoni @ 2012-11-28 13:02 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <07407110F438184D9D87521726FF42D41F64FE15@M357PRD1.ad.bcc.qld.gov.au>

Dear Noel Roberts,

On Wed, 28 Nov 2012 05:05:29 +0000, Noel Roberts wrote:

> This patch allows Buildroot to cross compile the crypto libraries
> needed for python integration, enabling good cryptographic support
> within Python.

Good. The part adding the package in package/Config.in is missing.

> This is my first patch submission - please advise me, if I need to
> rework anything.

Could you use git send-email to send your patch?

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] Qt mouse, keyboard, touchscreen
From: Thomas Petazzoni @ 2012-11-28 13:00 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354102604.50307.YahooMailNeo@web164602.mail.gq1.yahoo.com>

Dear Zoran Djordjevic,

On Wed, 28 Nov 2012 03:36:44 -0800 (PST), Zoran Djordjevic wrote:
> I've tried patch, you submitted, and then make qt-reconfigure and

qt-reconfigure will not re-extract the source code and apply the
patches, so it is not appropriate. If you want to rebuild a package
from scratch, including extracting the package and applying the
patches, do:

	make qt-dirclean

> receive strange error about include folders. Same error I had 
> earlier when trying with deleting stamp files (when added some
> options regarding Qt in Buildroot's menuconfig), and in that case 
> I had to do make clean all. But if I do so, now, I think I will loose my 
> patched files (am I right ?)

If you made changes to output/build/<something>/, yes, you will loose
your changes. But you shouldn't be making any change in
output/build/<something>/

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] Qt mouse, keyboard, touchscreen
From: Zoran Djordjevic @ 2012-11-28 11:36 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121127163037.3f619184@skate>

I've tried patch, you submitted, and then make qt-reconfigure and
receive strange error about include folders. Same error I had 
earlier when trying with deleting stamp files (when added some
options regarding Qt in Buildroot's menuconfig), and in that case 
I had to do make clean all. But if I do so, now, I think I will loose my 
patched files (am I right ?)
What to do then ? 
?

________________________________
 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: Zoran Djordjevic <djdjdjole@yahoo.com> 
Cc: Stephan Hoffmann <sho@relinux.de>; "buildroot at busybox.net" <buildroot@busybox.net> 
Sent: Tuesday, November 27, 2012 4:30 PM
Subject: Re: [Buildroot] Qt mouse, keyboard, touchscreen
  
Dear Zoran Djordjevic,

On Mon, 26 Nov 2012 23:46:15 -0800 (PST), Zoran Djordjevic wrote:

> My /dev/input node has event0, event1, mouse0 and mice.
> When I give: export QWS_MOUSE_PROTO=tslib:/dev/input/event0, 
> touch screen works fine. However, tried different options for
> USB?mouse, and neither one works (cat /dev/input/mouse0 or mice gives
> terminal "garbage"). Regarding keyboard, I gave: export
> QWS_KEYBOARD=linuxinput:/dev/input/event1 Keyboard (USB)?does work,
> but from that moment my terminal connected keyboard (via COM port) -
> doesn't work (Ctrl-C). When exiting application, I can't give
> commands via terminal. Any help ? 

Apply the attached patch to Qt.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121128/99be9bad/attachment.html>

^ permalink raw reply

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


Hello,

On 2012-11-27, 141 random build tests have been done and
submitted on autobuild.buildroot.net.
 99 builds have been successful
 42 builds have failed

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

Build 692ba721f42f7d1dbef7b93fbb5adea61ae77d11
==============================================

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

Build 0bf06ee7c4364bd127816e3f6fa8231bb76d5e6d
==============================================

Status         : NOK
Failure reason : gpsd-3.7
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 01:10:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/0bf06ee7c4364bd127816e3f6fa8231bb76d5e6d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0bf06ee7c4364bd127816e3f6fa8231bb76d5e6d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0bf06ee7c4364bd127816e3f6fa8231bb76d5e6d/config
Defconfig      : http://autobuild.buildroot.net/results/0bf06ee7c4364bd127816e3f6fa8231bb76d5e6d/defconfig

Build 7a309c9cc8e0598c7f3bd217f335155f1adcb79c
==============================================

Status         : NOK
Failure reason : dropbear-2012.55
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 01:27:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/7a309c9cc8e0598c7f3bd217f335155f1adcb79c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7a309c9cc8e0598c7f3bd217f335155f1adcb79c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7a309c9cc8e0598c7f3bd217f335155f1adcb79c/config
Defconfig      : http://autobuild.buildroot.net/results/7a309c9cc8e0598c7f3bd217f335155f1adcb79c/defconfig

Build 10a1d2750dcd1a26d4bd50e1abbf80f8dbb0150e
==============================================

Status         : NOK
Failure reason : ortp-0.20.0
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 01:56:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/10a1d2750dcd1a26d4bd50e1abbf80f8dbb0150e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/10a1d2750dcd1a26d4bd50e1abbf80f8dbb0150e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/10a1d2750dcd1a26d4bd50e1abbf80f8dbb0150e/config
Defconfig      : http://autobuild.buildroot.net/results/10a1d2750dcd1a26d4bd50e1abbf80f8dbb0150e/defconfig

Build 0c84977b966661621195df6ff89989cc7c46eacf
==============================================

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

Build 3e712b81947be06812e48bf310e121e634027009
==============================================

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

Build 31d1c341668eeb00fecb60f9cd521a4d2123d873
==============================================

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

Build 0946f1a89ec65fe750b391f370aa2795c2bef3ac
==============================================

Status         : NOK
Failure reason : can-utils-836d3cc0122ce31a1b732d369cbd27b690c3110f
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 03:13:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/0946f1a89ec65fe750b391f370aa2795c2bef3ac/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0946f1a89ec65fe750b391f370aa2795c2bef3ac/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0946f1a89ec65fe750b391f370aa2795c2bef3ac/config
Defconfig      : http://autobuild.buildroot.net/results/0946f1a89ec65fe750b391f370aa2795c2bef3ac/defconfig

Build 840ec0682f889bf474671e352caf5e6381d820b3
==============================================

Status         : NOK
Failure reason : squid-3.2.3
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 04:34:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/840ec0682f889bf474671e352caf5e6381d820b3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/840ec0682f889bf474671e352caf5e6381d820b3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/840ec0682f889bf474671e352caf5e6381d820b3/config
Defconfig      : http://autobuild.buildroot.net/results/840ec0682f889bf474671e352caf5e6381d820b3/defconfig

Build 53f20fb91023c5c3f2ad505eaea2c94b9bcd16dd
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-27 04:42:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/53f20fb91023c5c3f2ad505eaea2c94b9bcd16dd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/53f20fb91023c5c3f2ad505eaea2c94b9bcd16dd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/53f20fb91023c5c3f2ad505eaea2c94b9bcd16dd/config
Defconfig      : http://autobuild.buildroot.net/results/53f20fb91023c5c3f2ad505eaea2c94b9bcd16dd/defconfig

Build 8c84849b360d0f983a37b7cce6716050a6515d44
==============================================

Status         : NOK
Failure reason : matchbox-lib-1.9
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 04:43:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/8c84849b360d0f983a37b7cce6716050a6515d44/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8c84849b360d0f983a37b7cce6716050a6515d44/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8c84849b360d0f983a37b7cce6716050a6515d44/config
Defconfig      : http://autobuild.buildroot.net/results/8c84849b360d0f983a37b7cce6716050a6515d44/defconfig

Build 0d345e497778de4aadce5c86875a9fb4d5d131c8
==============================================

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

Build f346afde303aee7be301603c87dfd60bc4065435
==============================================

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

Build ba86da09e9650186509e506bca36e4273022f3b4
==============================================

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

Build de14eba75a9a49abc8449a14fa2f78baab85e452
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 06:51:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/de14eba75a9a49abc8449a14fa2f78baab85e452/build-end.log
Complete log   : http://autobuild.buildroot.net/results/de14eba75a9a49abc8449a14fa2f78baab85e452/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/de14eba75a9a49abc8449a14fa2f78baab85e452/config
Defconfig      : http://autobuild.buildroot.net/results/de14eba75a9a49abc8449a14fa2f78baab85e452/defconfig

Build 5d1dd1fb873c2894d6423a3196fcd3801b81d637
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-27 08:41:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/5d1dd1fb873c2894d6423a3196fcd3801b81d637/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5d1dd1fb873c2894d6423a3196fcd3801b81d637/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5d1dd1fb873c2894d6423a3196fcd3801b81d637/config
Defconfig      : http://autobuild.buildroot.net/results/5d1dd1fb873c2894d6423a3196fcd3801b81d637/defconfig

Build c9e9f3f3e6c4d4c2e2093d7991bbff4cd2897da4
==============================================

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

Build d63fdc05b95acd99161babc5a160ede3e52ec34f
==============================================

Status         : NOK
Failure reason : netatalk-3.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 10:12:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/d63fdc05b95acd99161babc5a160ede3e52ec34f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d63fdc05b95acd99161babc5a160ede3e52ec34f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d63fdc05b95acd99161babc5a160ede3e52ec34f/config
Defconfig      : http://autobuild.buildroot.net/results/d63fdc05b95acd99161babc5a160ede3e52ec34f/defconfig

Build ce13c1e1eed8518299696a2b9cb474b7c375c35d
==============================================

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

Build 473a8f5773c8cdd95cd14db1d0631c3f09dbe1e7
==============================================

Status         : NOK
Failure reason : directfb-1.4.17
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 11:38:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/473a8f5773c8cdd95cd14db1d0631c3f09dbe1e7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/473a8f5773c8cdd95cd14db1d0631c3f09dbe1e7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/473a8f5773c8cdd95cd14db1d0631c3f09dbe1e7/config
Defconfig      : http://autobuild.buildroot.net/results/473a8f5773c8cdd95cd14db1d0631c3f09dbe1e7/defconfig

Build 6cceb457c76eb7b0fa65931b7ba5d9073c9a029a
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 12:24:15
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/6cceb457c76eb7b0fa65931b7ba5d9073c9a029a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6cceb457c76eb7b0fa65931b7ba5d9073c9a029a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6cceb457c76eb7b0fa65931b7ba5d9073c9a029a/config
Defconfig      : http://autobuild.buildroot.net/results/6cceb457c76eb7b0fa65931b7ba5d9073c9a029a/defconfig

Build f6413c5addbf5049c0a25c3cc58f934f207f6f6b
==============================================

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

Build 28ecc5d062dbf51c04e298e20f6ecdd1666a8064
==============================================

Status         : NOK
Failure reason : ffmpeg-0.8.12
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 13:53:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/28ecc5d062dbf51c04e298e20f6ecdd1666a8064/build-end.log
Complete log   : http://autobuild.buildroot.net/results/28ecc5d062dbf51c04e298e20f6ecdd1666a8064/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/28ecc5d062dbf51c04e298e20f6ecdd1666a8064/config
Defconfig      : http://autobuild.buildroot.net/results/28ecc5d062dbf51c04e298e20f6ecdd1666a8064/defconfig

Build 758d699d7cfd53b67df76d8567f00318bde11f68
==============================================

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

Build e5e80020d82ddcff80fbaf6ee2be9225717cdcb3
==============================================

Status         : NOK
Failure reason : ltrace-0.6.0
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 13:55:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/e5e80020d82ddcff80fbaf6ee2be9225717cdcb3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e5e80020d82ddcff80fbaf6ee2be9225717cdcb3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e5e80020d82ddcff80fbaf6ee2be9225717cdcb3/config
Defconfig      : http://autobuild.buildroot.net/results/e5e80020d82ddcff80fbaf6ee2be9225717cdcb3/defconfig

Build 3e8e57e1a119cc04c7e658a860f56b2df7bd434e
==============================================

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

Build 37fbd467803fbd166764b72d15569e82eea0f813
==============================================

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

Build 3d79e0977cb1dfa04f155ab897f0675888082d58
==============================================

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

Build dcd80336364417009eb8576f478408d89b2bd366
==============================================

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

Build 08aea0d2f39d714f351041333bad284b9ef59b51
==============================================

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

Build 2cc04b0a77226e79ba65eb0fe21ebb286bc7878e
==============================================

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

Build d4fd6021219963dd357a5c027d39f4144078b0cd
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 15:45:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/d4fd6021219963dd357a5c027d39f4144078b0cd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d4fd6021219963dd357a5c027d39f4144078b0cd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d4fd6021219963dd357a5c027d39f4144078b0cd/config
Defconfig      : http://autobuild.buildroot.net/results/d4fd6021219963dd357a5c027d39f4144078b0cd/defconfig

Build 56d53a4d7a708fd51673c94a2d32ddc99614b7f5
==============================================

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

Build cd71721b9c70d20d874a67a1d99b4e08b5eeb427
==============================================

Status         : NOK
Failure reason : qt-4.8.3
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 17:51:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/cd71721b9c70d20d874a67a1d99b4e08b5eeb427/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cd71721b9c70d20d874a67a1d99b4e08b5eeb427/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cd71721b9c70d20d874a67a1d99b4e08b5eeb427/config
Defconfig      : http://autobuild.buildroot.net/results/cd71721b9c70d20d874a67a1d99b4e08b5eeb427/defconfig

Build b1e9c3777ce274e9893f623f523ef699fc1d25e4
==============================================

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

Build 69bf6ab75bdef0c54d0cb0567d6e6b82183d2e3b
==============================================

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

Build 16d79facc4905989e77e726bdeed2c4a463272fd
==============================================

Status         : NOK
Failure reason : connman-1.8
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 19:21:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/16d79facc4905989e77e726bdeed2c4a463272fd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/16d79facc4905989e77e726bdeed2c4a463272fd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/16d79facc4905989e77e726bdeed2c4a463272fd/config
Defconfig      : http://autobuild.buildroot.net/results/16d79facc4905989e77e726bdeed2c4a463272fd/defconfig

Build 342cd2bedd1d66ee1b581ede40f3e7d421b55e59
==============================================

Status         : NOK
Failure reason : host-python-2.7.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-27 19:27:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/342cd2bedd1d66ee1b581ede40f3e7d421b55e59/build-end.log
Complete log   : http://autobuild.buildroot.net/results/342cd2bedd1d66ee1b581ede40f3e7d421b55e59/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/342cd2bedd1d66ee1b581ede40f3e7d421b55e59/config
Defconfig      : http://autobuild.buildroot.net/results/342cd2bedd1d66ee1b581ede40f3e7d421b55e59/defconfig

Build b9ee0cf67d6871b784f39e8576138e9341498673
==============================================

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

Build 3edd4d522aadd7710934c2b115a2d52d7c27a0de
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-27 20:29:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3bdbe9abb90de0262832d5d545f239fa41fb0e91
End of log     : http://autobuild.buildroot.net/results/3edd4d522aadd7710934c2b115a2d52d7c27a0de/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3edd4d522aadd7710934c2b115a2d52d7c27a0de/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3edd4d522aadd7710934c2b115a2d52d7c27a0de/config
Defconfig      : http://autobuild.buildroot.net/results/3edd4d522aadd7710934c2b115a2d52d7c27a0de/defconfig

Build f38e6dbaadf65f8e99165dea0378cb59bd71ddf3
==============================================

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

Build 22734272fc6182a206c3d53765991134c697fd4a
==============================================

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



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [git commit branch/next] package: add gd package
From: Baruch Siach @ 2012-11-28  5:26 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121128011244.B677B8F461@busybox.osuosl.org>

Hi Peter,

On Tue, Nov 27, 2012 at 11:21:06AM -0800, Peter Korsgaard wrote:

[...]

> +GD_TOOLS_                         	+= gdlib-config

Shouldn't this be 'GD_TOOLS_y'?

> +GD_TOOLS_$(BR2_PACKAGE_GD_ANNOTATE)	+= annotate
> +GD_TOOLS_$(BR2_PACKAGE_GD_BDFTOGD)	+= bdftogd
> +GD_TOOLS_$(BR2_PACKAGE_GD_GD2COPYPAL)	+= gd2copypal
> +GD_TOOLS_$(BR2_PACKAGE_GD_GD2TOGIF)	+= gd2togif
> +GD_TOOLS_$(BR2_PACKAGE_GD_GD2TOPNG)	+= gd2topng
> +GD_TOOLS_$(BR2_PACKAGE_GD_GDCMPGIF)	+= gdcmpgif
> +GD_TOOLS_$(BR2_PACKAGE_GD_GDPARTTOPNG)	+= gdparttopng
> +GD_TOOLS_$(BR2_PACKAGE_GD_GDTOPNG)	+= gdtopng
> +GD_TOOLS_$(BR2_PACKAGE_GD_GIFTOGD2)	+= giftogd2
> +GD_TOOLS_$(BR2_PACKAGE_GD_PNGTOGD)	+= pngtogd
> +GD_TOOLS_$(BR2_PACKAGE_GD_PNGTOGD2)	+= pngtogd2
> +GD_TOOLS_$(BR2_PACKAGE_GD_WEBPNG)	+= webpng
> +
> +define GD_REMOVE_TOOLS
> +	rm -f $(addprefix $(TARGET_DIR)/usr/bin/,$(GD_TOOLS_))

And here.

> +endef

baruch

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

^ permalink raw reply

* [Buildroot] PATCH > To integrate pycrypto into Buildroot
From: Noel Roberts @ 2012-11-28  5:05 UTC (permalink / raw)
  To: buildroot


This patch allows Buildroot to cross compile the crypto libraries needed for python integration, enabling good cryptographic support within Python.

This is my first patch submission - please advise me, if I need to rework anything.

[Below is the original developer?s permission for inclusion]

Regards
Noel

From: Dwayne Litzenberger [mailto:dlitz at dlitz.net]
Sent: Wednesday, 28 November 2012 9:01 AM
To: Noel Roberts
Subject: Re: Including pycrypto in Buildroot

You don't need my permission. Go nuts!

Out of curiosity, what uses PyCryptoin buildroot?

Noel Roberts <Noel.Roberts at brisbane.qld.gov.au<mailto:Noel.Roberts@brisbane.qld.gov.au>> wrote:
Good day

Would you object to me submitting a patch to buildroot, to allow the inclusion of pycrypto within the buildroot environment?

Regards
Noel


**************************************************** This message has passed through an insecure network. Please direct all enquiries to the message author. ****************************************************

**************************************************** This message has passed through an insecure network. Please direct all enquiries to the message author. ****************************************************

****************************************************
This message has passed through an insecure network.
Please direct all enquiries to the message author.
****************************************************
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121128/5d0f509c/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Adding-pyCrypto-functionality-in-Buildroot.patch
Type: application/octet-stream
Size: 1759 bytes
Desc: 0001-Adding-pyCrypto-functionality-in-Buildroot.patch
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121128/5d0f509c/attachment.obj>

^ permalink raw reply

* [Buildroot] Problem building libglib2
From: Charles Manning @ 2012-11-28  1:37 UTC (permalink / raw)
  To: buildroot

Hello

I'm a buildroot newbie and am trying to figure out what went wrong here.

make[5]: Entering directory
`/opt/buildroot/buildroot/output/build/libglib2-2.30.3/gobject'
  CCLD   libgobject-2.0.la
/opt/buildroot/buildroot/output/host/opt/ext-toolchain/bin/../lib/gcc/arm-none-linux-gnueabi/4.6.3/../../../../arm-none-linux-gnueabi/bin/ld:
skipping incompatible /lib/libpthread.so.0 when searching for
/lib/libpthread.so.0
/opt/buildroot/buildroot/output/host/opt/ext-toolchain/bin/../lib/gcc/arm-none-linux-gnueabi/4.6.3/../../../../arm-none-linux-gnueabi/bin/ld:
cannot find /lib/libpthread.so.0
/opt/buildroot/buildroot/output/host/opt/ext-toolchain/bin/../lib/gcc/arm-none-linux-gnueabi/4.6.3/../../../../arm-none-linux-gnueabi/bin/ld:
skipping incompatible /usr/lib/libpthread_nonshared.a when searching
for /usr/lib/libpthread_nonshared.a
/opt/buildroot/buildroot/output/host/opt/ext-toolchain/bin/../lib/gcc/arm-none-linux-gnueabi/4.6.3/../../../../arm-none-linux-gnueabi/bin/ld:
cannot find /usr/lib/libpthread_nonshared.a
collect2: ld returned 1 exit status
make[5]: *** [libgobject-2.0.la] Error 1
make[5]: Leaving directory
`/opt/buildroot/buildroot/output/build/libglib2-2.30.3/gobject'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory
`/opt/buildroot/buildroot/output/build/libglib2-2.30.3/gobject'
make[3]: *** [all] Error 2
make[3]: Leaving directory
`/opt/buildroot/buildroot/output/build/libglib2-2.30.3/gobject'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory
`/opt/buildroot/buildroot/output/build/libglib2-2.30.3'
make[1]: *** [all] Error 2
make[1]: Leaving directory
`/opt/buildroot/buildroot/output/build/libglib2-2.30.3'
make: *** [/opt/buildroot/buildroot/output/build/libglib2-2.30.3/.stamp_built]
Error 2


As far as I can tell, this failed building libglib because various
files were missing. For example  /lib/libpthread.so.0.

However if I look in staging, that file exists:

charles at charles-laptop:/opt/buildroot/buildroot$ ls -al
output/staging/lib/libp*
-rwxr-xr-x 1 charles charles  19467 2012-05-29 00:41
output/staging/lib/libpcprofile.so
-rwxr-xr-x 1 charles charles 144489 2012-05-29 00:41
output/staging/lib/libpthread-2.15.so
lrwxrwxrwx 1 charles charles     18 2012-11-28 12:03
output/staging/lib/libpthread.so.0 -> libpthread-2.15.so
charles at charles-laptop:/opt/buildroot/buildroot$

So... please help the newbie....

Thanks

Charles

^ permalink raw reply

* [Buildroot] [PATCH for-next 1/3] toolchain-external: add Linaro 2012.11
From: Peter Korsgaard @ 2012-11-28  1:12 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354025223-14474-1-git-send-email-thomas.petazzoni@free-electrons.com>

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Committed series to next, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] toolchain-external: on ARM, show comment about the availability of Linaro toolchains
From: Peter Korsgaard @ 2012-11-28  1:11 UTC (permalink / raw)
  To: buildroot

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

On ARM, Linaro external toolchains are only visible if the user
selects Cortex-A8 or Cortex-A9. Therefore, we add a comment that tells
the user that the Linaro toolchains are only available under those
conditions.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 toolchain/toolchain-external/Config.in |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
index 469c283..4fe605d 100644
--- a/toolchain/toolchain-external/Config.in
+++ b/toolchain/toolchain-external/Config.in
@@ -54,6 +54,10 @@ config BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_09
 
 	  To use this toolchain, you must disable soft float usage.
 
+comment "Linaro toolchains available for Cortex-A{8,9}"
+	depends on BR2_arm
+	depends on !BR2_cortex_a8 && !BR2_cortex_a9
+
 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203
 	bool "Sourcery CodeBench ARM 2012.03"
 	depends on BR2_arm

^ permalink raw reply related

* [Buildroot] [git commit branch/next] toolchain-external: on ARM, show comment about the availability of Linaro toolchains
From: Peter Korsgaard @ 2012-11-28  1:11 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=90f763c77d2316c2fdefa1301e96d5b31376e2cf
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/next

On ARM, Linaro external toolchains are only visible if the user
selects Cortex-A8 or Cortex-A9. Therefore, we add a comment that tells
the user that the Linaro toolchains are only available under those
conditions.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 toolchain/toolchain-external/Config.in |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
index 469c283..4fe605d 100644
--- a/toolchain/toolchain-external/Config.in
+++ b/toolchain/toolchain-external/Config.in
@@ -54,6 +54,10 @@ config BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_09
 
 	  To use this toolchain, you must disable soft float usage.
 
+comment "Linaro toolchains available for Cortex-A{8,9}"
+	depends on BR2_arm
+	depends on !BR2_cortex_a8 && !BR2_cortex_a9
+
 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203
 	bool "Sourcery CodeBench ARM 2012.03"
 	depends on BR2_arm

^ permalink raw reply related

* [Buildroot] [git commit] toolchain-external: remove Linaro 2012.08
From: Peter Korsgaard @ 2012-11-28  1:11 UTC (permalink / raw)
  To: buildroot

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

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 toolchain/toolchain-external/Config.in   |   18 ------------------
 toolchain/toolchain-external/ext-tool.mk |    3 ---
 2 files changed, 0 insertions(+), 21 deletions(-)

diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
index 56630fa..469c283 100644
--- a/toolchain/toolchain-external/Config.in
+++ b/toolchain/toolchain-external/Config.in
@@ -54,23 +54,6 @@ config BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_09
 
 	  To use this toolchain, you must disable soft float usage.
 
-config BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_08
-	bool "Linaro 2012.08"
-	depends on BR2_arm
-	depends on BR2_cortex_a8 || BR2_cortex_a9
-	select BR2_TOOLCHAIN_EXTERNAL_GLIBC
-	select BR2_TOOLCHAIN_HAS_NATIVE_RPC
-	select BR2_INSTALL_LIBSTDCPP
-	help
-	  Linaro toolchain for the ARM architecture. It uses Linaro
-	  GCC 2012.08 (based on gcc 4.7), Linaro GDB 2012.06 (based on
-	  GDB 7.4), eglibc 2.15. It generates code that runs on all
-	  Cortex-A profile devices, but tuned for the Cortex-A9. The
-	  code generated is Thumb 2, with the hard floating point
-	  calling convention, and uses the VFPv3-D16 FPU instructions.
-
-	  To use this toolchain, you must disable soft float usage.
-
 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203
 	bool "Sourcery CodeBench ARM 2012.03"
 	depends on BR2_arm
@@ -641,7 +624,6 @@ config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX
 
 config BR2_TOOLCHAIN_EXTERNAL_PREFIX
 	string
-	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_08
 	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_09
 	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_10
 	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_11
diff --git a/toolchain/toolchain-external/ext-tool.mk b/toolchain/toolchain-external/ext-tool.mk
index d98fcc6..4429480 100644
--- a/toolchain/toolchain-external/ext-tool.mk
+++ b/toolchain/toolchain-external/ext-tool.mk
@@ -184,9 +184,6 @@ TOOLCHAIN_EXTERNAL_SOURCE=arm-2011.09-70-arm-none-linux-gnueabi-i686-pc-linux-gn
 else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203),y)
 TOOLCHAIN_EXTERNAL_SITE=http://sourcery.mentor.com/public/gnu_toolchain/arm-none-linux-gnueabi/
 TOOLCHAIN_EXTERNAL_SOURCE=arm-2012.03-57-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2
-else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_08),y)
-TOOLCHAIN_EXTERNAL_SITE=https://launchpad.net/linaro-toolchain-binaries/trunk/2012.08/+download/
-TOOLCHAIN_EXTERNAL_SOURCE=gcc-linaro-arm-linux-gnueabihf-2012.08-20120827_linux.tar.bz2
 else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_09),y)
 TOOLCHAIN_EXTERNAL_SITE=https://launchpad.net/linaro-toolchain-binaries/trunk/2012.09/+download/
 TOOLCHAIN_EXTERNAL_SOURCE=gcc-linaro-arm-linux-gnueabihf-2012.09-20120921_linux.tar.bz2

^ permalink raw reply related


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