Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] pkg-infra: limit -reconfigure and -rebuild actions
From: Arnout Vandecappelle @ 2012-12-14 13:49 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CA+wH294311rh_e5HP8itswfG149Or1bOoKQ_GzAymRhVPRW9eA@mail.gmail.com>

On 22/07/12 20:27, Alex Bradbury wrote:
> On 21 July 2012 17:14, Samuel Martin<s.martin49@gmail.com>  wrote:
>> Hi all,
>>
>> Here, I'll try to sum up what we talked few days ago on the IRC
>> channel, plus give my opinion about this.
>>
>> To be honest, the first time i tried these -reconfigure and -rebuild
>> targets, I was surprised they didn't behave as I would expect from
>> targets named like that, rebuilding not only the package but the
>> images too. So, I keep doing things by hands... though I understand
>> why things were implemented like this.
>
> I'm a newcomer to buildroot and was surprised by the effect of
> -reconfigure and -rebuild. I'd read about them in the slides from one
> of Tom's talks, and given their description I had assumed they would
> rebuild only the package. Reading the responses here, I can see why it
> is useful to have a target that rebuilds a single package and also
> makes the image (though really, it seems not that hard for the user to
> do another make command to build the image in that case). I would love
> to see a build target with the proposed semantics.

  A colleague of mine (again) made this remark to me today... So, will we
accept this change or not?

  Clearly it changes the behaviour, but I don't expect people will use
-rebuild or -reconfigure in scripts so it shouldn't hurt.


  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 03/20] package/usbredir: new package
From: Yann E. MORIN @ 2012-12-14 13:01 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <87mwxgiylq.fsf@dell.be.48ers.dk>

Peter, All,

On Friday 14 December 2012 13:53:37 Peter Korsgaard wrote:
> >>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
>  Yann> diff --git a/package/usbredir/Config.in b/package/usbredir/Config.in
>  Yann> new file mode 100644
>  Yann> index 0000000..8d8ac5a
>  Yann> --- /dev/null
>  Yann> +++ b/package/usbredir/Config.in
>  Yann> @@ -0,0 +1,28 @@
>  Yann> +comment "usbredir requires libusb"
>  Yann> +	depends on !BR2_PACKAGE_LIBUSB
>  Yann> +
> 
> We normally use select for libraries. Any reason to not use it here?

libusb depends on threads, and I do not want to play the game of
inheriting the dependencies of my own dependencies, and reproduce
the libffi mess.

libusb has a dependency I can not select, so I just depend on it.

>  Yann> +USBREDIR_DEPENDENCIES    += host-pkgconf
> 
> Any particular reason to not merge this line with the one above?

Probably no good reason, indeed.

Regards,
Yann E. MORIN.


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

^ permalink raw reply

* [Buildroot] [PATCH 03/20] package/usbredir: new package
From: Peter Korsgaard @ 2012-12-14 12:53 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <b6f27b8d9306f0a01bd003e2c9bdc1f5c5e87128.1355435224.git.yann.morin.1998@free.fr>

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
 Yann> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 Yann> Cc: Arnout Vandecappelle <arnout@mind.be>
 Yann> ---
 Yann>  package/Config.in            |    1 +
 Yann>  package/usbredir/Config.in   |   28 ++++++++++++++++++++++++++++
 Yann>  package/usbredir/usbredir.mk |   31 +++++++++++++++++++++++++++++++
 Yann>  3 files changed, 60 insertions(+), 0 deletions(-)
 Yann>  create mode 100644 package/usbredir/Config.in
 Yann>  create mode 100644 package/usbredir/usbredir.mk

 Yann> diff --git a/package/Config.in b/package/Config.in
 Yann> index 8edadf9..9d68581 100644
 Yann> --- a/package/Config.in
 Yann> +++ b/package/Config.in
 Yann> @@ -492,6 +492,7 @@ source "package/libupnp/Config.in"
 Yann>  source "package/libvncserver/Config.in"
 Yann>  source "package/nss-mdns/Config.in"
 Yann>  source "package/ortp/Config.in"
 Yann> +source "package/usbredir/Config.in"
 Yann>  source "package/zeromq/Config.in"
 Yann>  endmenu
 
 Yann> diff --git a/package/usbredir/Config.in b/package/usbredir/Config.in
 Yann> new file mode 100644
 Yann> index 0000000..8d8ac5a
 Yann> --- /dev/null
 Yann> +++ b/package/usbredir/Config.in
 Yann> @@ -0,0 +1,28 @@
 Yann> +comment "usbredir requires libusb"
 Yann> +	depends on !BR2_PACKAGE_LIBUSB
 Yann> +

We normally use select for libraries. Any reason to not use it here?

 Yann> +USBREDIR_VERSION         = 0.4.3
 Yann> +USBREDIR_SOURCE          = usbredir-$(USBREDIR_VERSION).tar.bz2
 Yann> +USBREDIR_SITE            = http://spice-space.org/download/usbredir
 Yann> +USBREDIR_LICENSE         = LGPLv2.1+
 Yann> +USBREDIR_LICENSE_FILES   = COPYING.LIB
 Yann> +USBREDIR_INSTALL_STAGING = YES
 Yann> +USBREDIR_DEPENDENCIES    = libusb
 Yann> +
 Yann> +USBREDIR_DEPENDENCIES    += host-pkgconf

Any particular reason to not merge this line with the one above?

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH 02/20] package/libiscsi: new package
From: Peter Korsgaard @ 2012-12-14 12:51 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <270885b540b0b51edc0b6bcd2b11264f44f35d05.1355435224.git.yann.morin.1998@free.fr>

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
 Yann> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] package/libiscsi: new package
From: Peter Korsgaard @ 2012-12-14 12:48 UTC (permalink / raw)
  To: buildroot

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

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/Config.in            |    1 +
 package/libiscsi/Config.in   |   12 ++++++++++++
 package/libiscsi/libiscsi.mk |   15 +++++++++++++++
 3 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/package/Config.in b/package/Config.in
index cad1221..dbb6704 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -466,6 +466,7 @@ source "package/libesmtp/Config.in"
 source "package/libeXosip2/Config.in"
 source "package/libfcgi/Config.in"
 source "package/libidn/Config.in"
+source "package/libiscsi/Config.in"
 source "package/liboauth/Config.in"
 source "package/libmicrohttpd/Config.in"
 source "package/neon/Config.in"
diff --git a/package/libiscsi/Config.in b/package/libiscsi/Config.in
new file mode 100644
index 0000000..f3fc29e
--- /dev/null
+++ b/package/libiscsi/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_LIBISCSI
+	bool "libiscsi"
+	select BR2_PACKAGE_POPT
+	help
+	  Libiscsi is a client-side library to implement the iSCSI protocol
+	  that can be used to access resource of an iSCSI Target.
+	  
+	  The library is fully async with regards to iscsi commands and scsi
+	  tasks, but a sync layer is also provided for ease of use for simpler
+	  applications.
+	  
+	  https://github.com/sahlberg/libiscsi  (no proper homepage)
diff --git a/package/libiscsi/libiscsi.mk b/package/libiscsi/libiscsi.mk
new file mode 100644
index 0000000..bfebd7e
--- /dev/null
+++ b/package/libiscsi/libiscsi.mk
@@ -0,0 +1,15 @@
+#############################################################
+#
+# libiscsi
+#
+#############################################################
+
+LIBISCSI_VERSION         = 1.6.0
+LIBISCSI_SOURCE          = libiscsi-$(LIBISCSI_VERSION).tar.gz
+LIBISCSI_SITE            = https://github.com/downloads/sahlberg/libiscsi
+LIBISCSI_LICENSE         = GPLv2+ LGPLv2.1+
+LIBISCSI_LICENSE_FILES   = COPYING LICENCE-GPL-2.txt LICENCE-LGPL-2.1.txt
+LIBISCSI_INSTALL_STAGING = YES
+LIBISCSI_DEPENDENCIES    = popt
+
+$(eval $(autotools-package))

^ permalink raw reply related

* [Buildroot] [PATCH 01/20] package/vde2: new package
From: Peter Korsgaard @ 2012-12-14 12:13 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1f7225d5ca0a09c835187bbfea4eb4ce1b6eb121.1355435224.git.yann.morin.1998@free.fr>

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> VDE is an ethernet compliant virtual network that can be
 Yann> spawned over a set of physical computer over the Internet.

 Yann> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
 Yann> Cc: Arnout Vandecappelle <arnout@mind.be>
 Yann> ---
 Yann>  package/Config.in      |    1 +
 Yann>  package/vde2/Config.in |   10 ++++++++++
 Yann>  package/vde2/vde2.mk   |   36 ++++++++++++++++++++++++++++++++++++
 Yann>  3 files changed, 47 insertions(+), 0 deletions(-)
 Yann>  create mode 100644 package/vde2/Config.in
 Yann>  create mode 100644 package/vde2/vde2.mk

 Yann> diff --git a/package/Config.in b/package/Config.in
 Yann> index cad1221..2345b4b 100644
 Yann> --- a/package/Config.in
 Yann> +++ b/package/Config.in
 Yann> @@ -672,6 +672,7 @@ source "package/ttcp/Config.in"
 Yann>  source "package/udpcast/Config.in"
 Yann>  source "package/ulogd/Config.in"
 Yann>  source "package/ushare/Config.in"
 Yann> +source "package/vde2/Config.in"
 Yann>  source "package/vpnc/Config.in"
 Yann>  source "package/vsftpd/Config.in"
 Yann>  source "package/vtun/Config.in"
 Yann> diff --git a/package/vde2/Config.in b/package/vde2/Config.in
 Yann> new file mode 100644
 Yann> index 0000000..f344d67
 Yann> --- /dev/null
 Yann> +++ b/package/vde2/Config.in
 Yann> @@ -0,0 +1,10 @@
 Yann> +config BR2_PACKAGE_VDE2
 Yann> +	bool "vde2"
 Yann> +	help
 Yann> +	  VDE is an ethernet compliant virtual network that can be
 Yann> +	  spawned over a set of physical computers over the Internet.
 Yann> +	  VDE is part of the virtualsquare project.
 Yann> +	  
 Yann> +	  http://vde.sourceforge.net/
 Yann> +	  
 Yann> +	  Note: only the libraries are installed.

Wouldn't it then make more sense to put it under Libraries ->
Networking?

A quick test build seems to show that it needs C++ support:

checking whether the C++ compiler works... no
configure: error: in `/home/peko/source/buildroot/vdetest/build/vde2-2.3.2':
configure: error: C++ compiler cannot create executables
See `config.log' for more details

I don't see any C++ source files though, so it's probably better to drop
AC_PROG_CXX from configure.ac

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH] gettext: bump to version 0.18.1.1
From: Peter Korsgaard @ 2012-12-14 11:02 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355428977-8297-1-git-send-email-gustavo@zacarias.com.ar>

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] gettext: bump to version 0.18.1.1
From: Peter Korsgaard @ 2012-12-14 11:02 UTC (permalink / raw)
  To: buildroot

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

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/gettext/Config.in                          |    3 +
 package/gettext/gettext-disable-tests.patch        |   37 -----
 .../gettext/gettext-uclibc-sched_param-def.patch   |   20 +++
 package/gettext/gettext.mk                         |   12 ++-
 package/gettext/libdir-la.patch                    |  154 --------------------
 5 files changed, 34 insertions(+), 192 deletions(-)

diff --git a/package/gettext/Config.in b/package/gettext/Config.in
index ee7d8cb..a97b835 100644
--- a/package/gettext/Config.in
+++ b/package/gettext/Config.in
@@ -16,6 +16,9 @@ config BR2_PACKAGE_GETTEXT
 config BR2_PACKAGE_GETTEXT_TOOLS
 	bool "Install gettext tools"
 	depends on BR2_PACKAGE_GETTEXT
+	depends on BR2_USE_MMU # fork()
+	depends on BR2_LARGEFILE
+	select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
 	help
 	  This option allows to install the complete gettext suite in
 	  the target filesystem. This is typically not useful for
diff --git a/package/gettext/gettext-disable-tests.patch b/package/gettext/gettext-disable-tests.patch
deleted file mode 100644
index eded261..0000000
--- a/package/gettext/gettext-disable-tests.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Disable gettext tests that require threads
-
-gettext fails to build with a toolchain with no threads support just
-because some gettext tests (that aren't used in Buildroot) require
-threads. We therefore disable the build of such tests.
-
-Since the change in Makefile.in is simple, we also make it in this
-patch, which avoids the need to autoreconf the gettext package.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
-Index: b/gettext-tools/Makefile.am
-===================================================================
---- a/gettext-tools/Makefile.am
-+++ b/gettext-tools/Makefile.am
-@@ -20,7 +20,7 @@
- AUTOMAKE_OPTIONS = 1.5 gnu no-dependencies
- ACLOCAL_AMFLAGS = -I m4 -I ../gettext-runtime/m4 -I ../autoconf-lib-link/m4 -I ../m4 -I gnulib-m4 -I libgettextpo/gnulib-m4
- 
--SUBDIRS = doc intl gnulib-lib libgrep libuniname src libgettextpo po projects misc man m4 tests examples
-+SUBDIRS = doc intl gnulib-lib libgrep libuniname src libgettextpo po projects misc man m4 examples
- 
- EXTRA_DIST = misc/DISCLAIM
- MOSTLYCLEANFILES = core *.stackdump
-Index: b/gettext-tools/Makefile.in
-===================================================================
---- a/gettext-tools/Makefile.in
-+++ b/gettext-tools/Makefile.in
-@@ -484,7 +484,7 @@
- top_srcdir = @top_srcdir@
- AUTOMAKE_OPTIONS = 1.5 gnu no-dependencies
- ACLOCAL_AMFLAGS = -I m4 -I ../gettext-runtime/m4 -I ../autoconf-lib-link/m4 -I ../m4 -I gnulib-m4 -I libgettextpo/gnulib-m4
--SUBDIRS = doc intl gnulib-lib libgrep libuniname src libgettextpo po projects misc man m4 tests examples
-+SUBDIRS = doc intl gnulib-lib libgrep libuniname src libgettextpo po projects misc man m4 examples
- 
- # Allow users to use "gnulib-tool --update".
- 
diff --git a/package/gettext/gettext-uclibc-sched_param-def.patch b/package/gettext/gettext-uclibc-sched_param-def.patch
new file mode 100644
index 0000000..4e39278
--- /dev/null
+++ b/package/gettext/gettext-uclibc-sched_param-def.patch
@@ -0,0 +1,20 @@
+uclibc defines __GLIBC__ but it does not expose struct shed_param as much as glibc
+and is not needed too per standard. gnulib attempts to use it but we have to account
+for it because in this case uclibc does not behave like glibc.
+
+-Khem
+
+http://bugs.gentoo.org/336484
+http://bugs.gentoo.org/323377
+
+--- gettext/gettext-tools/gnulib-lib/spawn.in.h
++++ gettext/gettext-tools/gnulib-lib/spawn.in.h
+@@ -31,7 +31,7 @@
+ 
+ /* Get definitions of 'struct sched_param' and 'sigset_t'.
+    But avoid namespace pollution on glibc systems.  */
+-#ifndef __GLIBC__
++#if !defined __GLIBC__ || defined __UCLIBC__
+ # include <sched.h>
+ # include <signal.h>
+ #endif
diff --git a/package/gettext/gettext.mk b/package/gettext/gettext.mk
index 74f5218..77881d3 100644
--- a/package/gettext/gettext.mk
+++ b/package/gettext/gettext.mk
@@ -3,14 +3,18 @@
 # gettext
 #
 #############################################################
-GETTEXT_VERSION = 0.16.1
+
+GETTEXT_VERSION = 0.18.1.1
 GETTEXT_SITE = $(BR2_GNU_MIRROR)/gettext
 GETTEXT_INSTALL_STAGING = YES
 GETTEXT_LICENSE = GPLv2+
 GETTEXT_LICENSE_FILES = COPYING
 
+GETTEXT_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
+
 GETTEXT_CONF_OPT += \
 	--disable-libasprintf \
+	--disable-acl \
 	--disable-openmp \
 	--disable-rpath \
 	--disable-java \
@@ -34,6 +38,12 @@ ifeq ($(BR2_PACKAGE_GETTEXT_TOOLS),)
 define GETTEXT_INSTALL_TARGET_CMDS
 	cp -dpf $(STAGING_DIR)/usr/lib/libintl*.so* $(TARGET_DIR)/usr/lib/
 endef
+# Ditch the tools since they're off and pull other dependencies
+define GETTEXT_DISABLE_TOOLS
+	$(SED) 's/runtime gettext-tools/runtime/' $(@D)/Makefile.in
+endef
 endif # GETTEXT_TOOLS = n
 
+GETTEXT_POST_PATCH_HOOKS += GETTEXT_DISABLE_TOOLS
+
 $(eval $(autotools-package))
diff --git a/package/gettext/libdir-la.patch b/package/gettext/libdir-la.patch
deleted file mode 100644
index d5076c1..0000000
--- a/package/gettext/libdir-la.patch
+++ /dev/null
@@ -1,154 +0,0 @@
---- gettext-0.14.6/autoconf-lib-link/build-aux/ltmain.sh.orig	2007-01-13 14:33:23.000000000 -0700
-+++ gettext-0.14.6/autoconf-lib-link/build-aux/ltmain.sh	2007-01-13 14:35:10.000000000 -0700
-@@ -234,8 +234,9 @@
- 	# line option must be used.
- 	if test -z "$tagname"; then
- 	  $echo "$modename: unable to infer tagged configuration"
--	  $echo "$modename: specify a tag with \`--tag'" 1>&2
--	  exit $EXIT_FAILURE
-+	  $echo "$modename: defaulting to \`CC'"
-+	  $echo "$modename: if this is not correct, specify a tag with \`--tag'"
-+#	  exit $EXIT_FAILURE
- #        else
- #          $echo "$modename: using $tagname tagged configuration"
- 	fi
-@@ -2324,8 +2325,14 @@
- 	    absdir="$abs_ladir"
- 	    libdir="$abs_ladir"
- 	  else
--	    dir="$libdir"
--	    absdir="$libdir"
-+            # Adding 'libdir' from the .la file to our library search paths
-+            # breaks crosscompilation horribly.  We cheat here and don't add
-+            # it, instead adding the path where we found the .la.  -CL
-+	    dir="$abs_ladir"
-+	    absdir="$abs_ladir"
-+	    libdir="$abs_ladir"
-+	    #dir="$libdir"
-+	    #absdir="$libdir"
- 	  fi
- 	  test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
- 	else
-@@ -2800,6 +2807,16 @@
- 		esac
- 		if grep "^installed=no" $deplib > /dev/null; then
- 		  path="$absdir/$objdir"
-+#		This interferes with crosscompilation. -CL
-+#		else
-+#		  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
-+#		  if test -z "$libdir"; then
-+#		    $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
-+#		    exit 1
-+#		  fi
-+#		  if test "$absdir" != "$libdir"; then
-+#		    $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
-+#		  fi
- 		else
- 		  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
- 		  if test -z "$libdir"; then
-@@ -5210,6 +5227,10 @@
- 	    # Replace all uninstalled libtool libraries with the installed ones
- 	    newdependency_libs=
- 	    for deplib in $dependency_libs; do
-+              # Replacing uninstalled with installed can easily break crosscompilation,
-+              # since the installed path is generally the wrong architecture.  -CL
-+              newdependency_libs="$newdependency_libs $deplib"
-+              continue
- 	      case $deplib in
- 	      *.la)
- 		name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
-@@ -5528,10 +5549,13 @@
- 	  # At present, this check doesn't affect windows .dll's that
- 	  # are installed into $libdir/../bin (currently, that works fine)
- 	  # but it's something to keep an eye on.
--	  if test "$inst_prefix_dir" = "$destdir"; then
--	    $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
--	    exit $EXIT_FAILURE
--	  fi
-+	  #
-+	  # This breaks install into our staging area.  -PB
-+	  # 
-+	  # if test "$inst_prefix_dir" = "$destdir"; then
-+	  #   $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
-+	  #   exit $EXIT_FAILURE
-+	  # fi
- 
- 	  if test -n "$inst_prefix_dir"; then
- 	    # Stick the inst_prefix_dir data into the link command.
---- gettext-0.14.6/build-aux/ltmain.sh.orig	2005-05-20 15:03:38.000000000 -0600
-+++ gettext-0.14.6/build-aux/ltmain.sh	2007-01-13 14:34:27.000000000 -0700
-@@ -234,8 +234,9 @@
- 	# line option must be used.
- 	if test -z "$tagname"; then
- 	  $echo "$modename: unable to infer tagged configuration"
--	  $echo "$modename: specify a tag with \`--tag'" 1>&2
--	  exit $EXIT_FAILURE
-+	  $echo "$modename: defaulting to \`CC'"
-+	  $echo "$modename: if this is not correct, specify a tag with \`--tag'"
-+#	  exit $EXIT_FAILURE
- #        else
- #          $echo "$modename: using $tagname tagged configuration"
- 	fi
-@@ -2324,8 +2325,14 @@
- 	    absdir="$abs_ladir"
- 	    libdir="$abs_ladir"
- 	  else
--	    dir="$libdir"
--	    absdir="$libdir"
-+            # Adding 'libdir' from the .la file to our library search paths
-+            # breaks crosscompilation horribly.  We cheat here and don't add
-+            # it, instead adding the path where we found the .la.  -CL
-+	    dir="$abs_ladir"
-+	    absdir="$abs_ladir"
-+	    libdir="$abs_ladir"
-+	    #dir="$libdir"
-+	    #absdir="$libdir"
- 	  fi
- 	  test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
- 	else
-@@ -2800,6 +2807,16 @@
- 		esac
- 		if grep "^installed=no" $deplib > /dev/null; then
- 		  path="$absdir/$objdir"
-+#		This interferes with crosscompilation. -CL
-+#		else
-+#		  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
-+#		  if test -z "$libdir"; then
-+#		    $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
-+#		    exit 1
-+#		  fi
-+#		  if test "$absdir" != "$libdir"; then
-+#		    $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
-+#		  fi
- 		else
- 		  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
- 		  if test -z "$libdir"; then
-@@ -5210,6 +5227,10 @@
- 	    # Replace all uninstalled libtool libraries with the installed ones
- 	    newdependency_libs=
- 	    for deplib in $dependency_libs; do
-+              # Replacing uninstalled with installed can easily break crosscompilation,
-+              # since the installed path is generally the wrong architecture.  -CL
-+              newdependency_libs="$newdependency_libs $deplib"
-+              continue
- 	      case $deplib in
- 	      *.la)
- 		name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
-@@ -5528,10 +5549,13 @@
- 	  # At present, this check doesn't affect windows .dll's that
- 	  # are installed into $libdir/../bin (currently, that works fine)
- 	  # but it's something to keep an eye on.
--	  if test "$inst_prefix_dir" = "$destdir"; then
--	    $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
--	    exit $EXIT_FAILURE
--	  fi
-+	  #
-+	  # This breaks install into our staging area.  -PB
-+	  # 
-+	  # if test "$inst_prefix_dir" = "$destdir"; then
-+	  #   $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
-+	  #   exit $EXIT_FAILURE
-+	  # fi
- 
- 	  if test -n "$inst_prefix_dir"; then
- 	    # Stick the inst_prefix_dir data into the link command.

^ permalink raw reply related

* [Buildroot] [git commit] gpsd: needs threads
From: Peter Korsgaard @ 2012-12-14 10:36 UTC (permalink / raw)
  To: buildroot

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

Fixes
http://autobuild.buildroot.net/results/05925389ac2531307f23bf5f5f3a83a5a97301bf/

[Peter: move above BR2_PACKAGE_GPSD]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/gpsd/Config.in |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/package/gpsd/Config.in b/package/gpsd/Config.in
index 69f63f9..b26cf07 100644
--- a/package/gpsd/Config.in
+++ b/package/gpsd/Config.in
@@ -1,7 +1,11 @@
+comment "gpsd needs a toolchain with thread support"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS
+
 config BR2_PACKAGE_GPSD
 	bool "gpsd"
 	# Uses fork()
 	depends on BR2_USE_MMU
+	depends on BR2_TOOLCHAIN_HAS_THREADS
 	help
 	  gpsd is a service daemon that monitors one or more GPSes or AIS
 	  receivers attached to a host computer through serial or USB ports,

^ permalink raw reply related

* [Buildroot] [PATCH] gpsd: needs threads
From: Peter Korsgaard @ 2012-12-14 10:35 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355480711-12089-1-git-send-email-gustavo@zacarias.com.ar>

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Fixes
 Gustavo> http://autobuild.buildroot.net/results/05925389ac2531307f23bf5f5f3a83a5a97301bf/

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

 Gustavo> diff --git a/package/gpsd/Config.in b/package/gpsd/Config.in
 Gustavo> index 69f63f9..35e535b 100644
 Gustavo> --- a/package/gpsd/Config.in
 Gustavo> +++ b/package/gpsd/Config.in
 Gustavo> @@ -2,6 +2,7 @@ config BR2_PACKAGE_GPSD
 Gustavo>  	bool "gpsd"
 Gustavo>  	# Uses fork()
 Gustavo>  	depends on BR2_USE_MMU
 Gustavo> +	depends on BR2_TOOLCHAIN_HAS_THREADS
 Gustavo>  	help
 Gustavo>  	  gpsd is a service daemon that monitors one or more GPSes or AIS
 Gustavo>  	  receivers attached to a host computer through serial or USB ports,
 Gustavo> @@ -12,6 +13,10 @@ config BR2_PACKAGE_GPSD
 
 Gustavo>  	  http://gpsd.berlios.de/
 
 Gustavo> +
 Gustavo> +comment "gpsd needs a toolchain with thread support"
 Gustavo> +	depends on !BR2_TOOLCHAIN_HAS_THREADS
 Gustavo> +

Menuconfig has a bug which causes suboptions to not be indented if
there's a comment before them, so the comment needs to go either above
BR2_PACKAGE_GPSD or below all the sub options.

Committed with that fixed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH] gpsd: needs threads
From: Gustavo Zacarias @ 2012-12-14 10:25 UTC (permalink / raw)
  To: buildroot

Fixes
http://autobuild.buildroot.net/results/05925389ac2531307f23bf5f5f3a83a5a97301bf/

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

diff --git a/package/gpsd/Config.in b/package/gpsd/Config.in
index 69f63f9..35e535b 100644
--- a/package/gpsd/Config.in
+++ b/package/gpsd/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_GPSD
 	bool "gpsd"
 	# Uses fork()
 	depends on BR2_USE_MMU
+	depends on BR2_TOOLCHAIN_HAS_THREADS
 	help
 	  gpsd is a service daemon that monitors one or more GPSes or AIS
 	  receivers attached to a host computer through serial or USB ports,
@@ -12,6 +13,10 @@ config BR2_PACKAGE_GPSD
 
 	  http://gpsd.berlios.de/
 
+
+comment "gpsd needs a toolchain with thread support"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS
+
 config BR2_PACKAGE_GPSD_DEVICES
 	string "Where to look for GPSes"
 	default "/dev/ttyS1"
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] Getting It into Compact Flash
From: Ted Wood @ 2012-12-14  9:10 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50CA4A8F.1050002@mind.be>

> >
> >  For an initrd, you should use a cpio filesystem rather than ext2:
> >
> >- ext2 adds overhead that is completely unnecessary for a ramdisk;
> >
> >- if you use anything else than static device management, the devtmps 
> >will not be mounted automatically by the kernel; the cpio filesystem 
> >adds a /init script that mounts it for you.
> >
> >  I thought this was now clearly explained in the manual, is it not?
> >

There is no reference to either cpio or devtmps in the manual.

^ permalink raw reply

* [Buildroot] [git commit] package/qemu: fix host-qemu variable names
From: Peter Korsgaard @ 2012-12-14  7:54 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAB0FRssD6gVDPgm2gjRHy_zgkCfjiB0thSb3-DpJGXTbMv97gQ@mail.gmail.com>

>>>>> "Fran?ois" == Fran?ois Perrad <francois.perrad@gadz.org> writes:

 Fran?ois> 2012/12/14 Peter Korsgaard <jacmet@sunsite.dk>:
 >> commit: http://git.buildroot.net/buildroot/commit/?id=6f7884c81461bdb35ff47da9cd84c8a8ca5d57cb
 >> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
 >> 
 >> With the upcoming introduction of qemu-on-target, we need to properly
 >> separate the variables used for the host qemu, from the variables
 >> used for the target qemu.
 >> 

 Fran?ois> you've missed the last line of qemu.mk :
 Fran?ois>  # variable used by other packages
 Fran?ois> -QEMU_USER = $(HOST_DIR)/usr/bin/qemu-$(QEMU_ARCH)
 Fran?ois> +QEMU_USER = $(HOST_DIR)/usr/bin/qemu-$(HOST_QEMU_ARCH)

Ahh yes, I'll fix that - Thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] qemu: fix QEMU_USER variable
From: Peter Korsgaard @ 2012-12-14  7:53 UTC (permalink / raw)
  To: buildroot

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

Reported-by: Fran??ois Perrad <francois.perrad@gadz.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/qemu/qemu.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 3c01102..8d07807 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -89,4 +89,4 @@ endef
 $(eval $(host-generic-package))
 
 # variable used by other packages
-QEMU_USER = $(HOST_DIR)/usr/bin/qemu-$(QEMU_ARCH)
+QEMU_USER = $(HOST_DIR)/usr/bin/qemu-$(HOST_QEMU_ARCH)

^ permalink raw reply related

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


Hello,

On 2012-12-13, 162 random build tests have been done and
submitted on autobuild.buildroot.net.
 108 builds have been successful
 54 builds have failed

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

Build e51bf1b0f7d1ed1419d55ccfb1ef586e7589c780
==============================================

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

Build 4173aa0cba80533b79c2b457206ae49ff78507b6
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 00:15:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/4173aa0cba80533b79c2b457206ae49ff78507b6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4173aa0cba80533b79c2b457206ae49ff78507b6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4173aa0cba80533b79c2b457206ae49ff78507b6/config
Defconfig      : http://autobuild.buildroot.net/results/4173aa0cba80533b79c2b457206ae49ff78507b6/defconfig

Build 7c2b4a23af160e1561d5109cc3eedc9fe5e8b80a
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 00:25:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/7c2b4a23af160e1561d5109cc3eedc9fe5e8b80a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7c2b4a23af160e1561d5109cc3eedc9fe5e8b80a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7c2b4a23af160e1561d5109cc3eedc9fe5e8b80a/config
Defconfig      : http://autobuild.buildroot.net/results/7c2b4a23af160e1561d5109cc3eedc9fe5e8b80a/defconfig

Build 52bf8a2f3201e217ef098dd2a4f8ff8e9dc2566b
==============================================

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

Build b8538b70ce12e8eb5169fd84bf20f35c627e8ce3
==============================================

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

Build cea59ba553273564f46a5e08ceffe4234856dbd4
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : sh4a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 02:27:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/cea59ba553273564f46a5e08ceffe4234856dbd4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cea59ba553273564f46a5e08ceffe4234856dbd4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cea59ba553273564f46a5e08ceffe4234856dbd4/config
Defconfig      : http://autobuild.buildroot.net/results/cea59ba553273564f46a5e08ceffe4234856dbd4/defconfig

Build 485d0fe4045e9816e470a470abc553264bc3972b
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 02:31:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/485d0fe4045e9816e470a470abc553264bc3972b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/485d0fe4045e9816e470a470abc553264bc3972b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/485d0fe4045e9816e470a470abc553264bc3972b/config
Defconfig      : http://autobuild.buildroot.net/results/485d0fe4045e9816e470a470abc553264bc3972b/defconfig

Build 25d29cf7b2c5b74e23d0f796f6a2b87846f6189a
==============================================

Status         : NOK
Failure reason : util-linux-2.20.1
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 02:51:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/25d29cf7b2c5b74e23d0f796f6a2b87846f6189a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/25d29cf7b2c5b74e23d0f796f6a2b87846f6189a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/25d29cf7b2c5b74e23d0f796f6a2b87846f6189a/config
Defconfig      : http://autobuild.buildroot.net/results/25d29cf7b2c5b74e23d0f796f6a2b87846f6189a/defconfig

Build d99ed1cac1072ff77fcbe245732e7422a572f37b
==============================================

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

Build 30cb44fbd9c15b91f7da26deed0d7583ed36a667
==============================================

Status         : NOK
Failure reason : acl-2.2.51
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 03:49:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/30cb44fbd9c15b91f7da26deed0d7583ed36a667/build-end.log
Complete log   : http://autobuild.buildroot.net/results/30cb44fbd9c15b91f7da26deed0d7583ed36a667/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/30cb44fbd9c15b91f7da26deed0d7583ed36a667/config
Defconfig      : http://autobuild.buildroot.net/results/30cb44fbd9c15b91f7da26deed0d7583ed36a667/defconfig

Build 05925389ac2531307f23bf5f5f3a83a5a97301bf
==============================================

Status         : NOK
Failure reason : gpsd-3.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 03:51:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/05925389ac2531307f23bf5f5f3a83a5a97301bf/build-end.log
Complete log   : http://autobuild.buildroot.net/results/05925389ac2531307f23bf5f5f3a83a5a97301bf/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/05925389ac2531307f23bf5f5f3a83a5a97301bf/config
Defconfig      : http://autobuild.buildroot.net/results/05925389ac2531307f23bf5f5f3a83a5a97301bf/defconfig

Build 4ae651eb64189f3ebad7e7ca904441feecb1bb81
==============================================

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

Build 0b027007f6ca93071f66ce1fc718a2650d8ecec5
==============================================

Status         : NOK
Failure reason : python-2.7.3
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 05:06:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/0b027007f6ca93071f66ce1fc718a2650d8ecec5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0b027007f6ca93071f66ce1fc718a2650d8ecec5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0b027007f6ca93071f66ce1fc718a2650d8ecec5/config
Defconfig      : http://autobuild.buildroot.net/results/0b027007f6ca93071f66ce1fc718a2650d8ecec5/defconfig

Build dbd5028e8faa2804ad87b3d5636dfa887737f274
==============================================

Status         : NOK
Failure reason : bzip2-1.0.6
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 05:07:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/dbd5028e8faa2804ad87b3d5636dfa887737f274/build-end.log
Complete log   : http://autobuild.buildroot.net/results/dbd5028e8faa2804ad87b3d5636dfa887737f274/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/dbd5028e8faa2804ad87b3d5636dfa887737f274/config
Defconfig      : http://autobuild.buildroot.net/results/dbd5028e8faa2804ad87b3d5636dfa887737f274/defconfig

Build a64e557b040a77fdf0687b5cc96c68aa9a4d6134
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 07:49:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/a64e557b040a77fdf0687b5cc96c68aa9a4d6134/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a64e557b040a77fdf0687b5cc96c68aa9a4d6134/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a64e557b040a77fdf0687b5cc96c68aa9a4d6134/config
Defconfig      : http://autobuild.buildroot.net/results/a64e557b040a77fdf0687b5cc96c68aa9a4d6134/defconfig

Build 18edaadb84bbf6f2f7a266aefa435c402df5f357
==============================================

Status         : NOK
Failure reason : qt-4.8.3
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 08:22:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/18edaadb84bbf6f2f7a266aefa435c402df5f357/build-end.log
Complete log   : http://autobuild.buildroot.net/results/18edaadb84bbf6f2f7a266aefa435c402df5f357/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/18edaadb84bbf6f2f7a266aefa435c402df5f357/config
Defconfig      : http://autobuild.buildroot.net/results/18edaadb84bbf6f2f7a266aefa435c402df5f357/defconfig

Build 96530b599c17e57a1a4996c3e05a4e8941327a00
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 08:35:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/96530b599c17e57a1a4996c3e05a4e8941327a00/build-end.log
Complete log   : http://autobuild.buildroot.net/results/96530b599c17e57a1a4996c3e05a4e8941327a00/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/96530b599c17e57a1a4996c3e05a4e8941327a00/config
Defconfig      : http://autobuild.buildroot.net/results/96530b599c17e57a1a4996c3e05a4e8941327a00/defconfig

Build 1eb6b8e6078a179918767b15fb24972dbf63c084
==============================================

Status         : NOK
Failure reason : directfb-1.4.17
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 08:37:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/1eb6b8e6078a179918767b15fb24972dbf63c084/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1eb6b8e6078a179918767b15fb24972dbf63c084/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1eb6b8e6078a179918767b15fb24972dbf63c084/config
Defconfig      : http://autobuild.buildroot.net/results/1eb6b8e6078a179918767b15fb24972dbf63c084/defconfig

Build c43b1d8f38c1c1eb1a3b80c45494cb0482cb6ee0
==============================================

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

Build c1567a118705fdd8093c125aac4d350429820f55
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-13 09:23:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=2a26c4e17e0f0bb0c5952352bcdfffdde86005ce
End of log     : http://autobuild.buildroot.net/results/c1567a118705fdd8093c125aac4d350429820f55/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c1567a118705fdd8093c125aac4d350429820f55/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c1567a118705fdd8093c125aac4d350429820f55/config
Defconfig      : http://autobuild.buildroot.net/results/c1567a118705fdd8093c125aac4d350429820f55/defconfig

Build 4b367e77f356bd874ed8a429de8bef52b805d7ef
==============================================

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

Build 791d761631d586209f87505325fea213fea6437c
==============================================

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

Build bbdbe8c864da681810c519199b8190a1e4c40eb5
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 11:26:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/bbdbe8c864da681810c519199b8190a1e4c40eb5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bbdbe8c864da681810c519199b8190a1e4c40eb5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bbdbe8c864da681810c519199b8190a1e4c40eb5/config
Defconfig      : http://autobuild.buildroot.net/results/bbdbe8c864da681810c519199b8190a1e4c40eb5/defconfig

Build fe0fadd4f86a5e1bfb9ec51ece1a170f2aada193
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 12:35:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/fe0fadd4f86a5e1bfb9ec51ece1a170f2aada193/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fe0fadd4f86a5e1bfb9ec51ece1a170f2aada193/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fe0fadd4f86a5e1bfb9ec51ece1a170f2aada193/config
Defconfig      : http://autobuild.buildroot.net/results/fe0fadd4f86a5e1bfb9ec51ece1a170f2aada193/defconfig

Build 14678547dc795b41a2d53822dc49b19832495b54
==============================================

Status         : NOK
Failure reason : gnupg-1.4.12
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 12:49:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/14678547dc795b41a2d53822dc49b19832495b54/build-end.log
Complete log   : http://autobuild.buildroot.net/results/14678547dc795b41a2d53822dc49b19832495b54/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/14678547dc795b41a2d53822dc49b19832495b54/config
Defconfig      : http://autobuild.buildroot.net/results/14678547dc795b41a2d53822dc49b19832495b54/defconfig

Build d9f9bdccb4e96c03ebf1d6b6085a1f191fc244c9
==============================================

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

Build e7dff1e431060ed6b913308345667a48a68c65f6
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 13:13:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/e7dff1e431060ed6b913308345667a48a68c65f6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e7dff1e431060ed6b913308345667a48a68c65f6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e7dff1e431060ed6b913308345667a48a68c65f6/config
Defconfig      : http://autobuild.buildroot.net/results/e7dff1e431060ed6b913308345667a48a68c65f6/defconfig

Build fbdffbfe1fe179d7e26d0aeb70979f817f7c8fe4
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-13 13:19:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/fbdffbfe1fe179d7e26d0aeb70979f817f7c8fe4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fbdffbfe1fe179d7e26d0aeb70979f817f7c8fe4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fbdffbfe1fe179d7e26d0aeb70979f817f7c8fe4/config
Defconfig      : http://autobuild.buildroot.net/results/fbdffbfe1fe179d7e26d0aeb70979f817f7c8fe4/defconfig

Build 3d445d57e63cb6092cb157f3b5386f3542d399eb
==============================================

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

Build 732667a668bba0910c5bb8ee75b5bd701fd2a360
==============================================

Status         : NOK
Failure reason : m4-1.4.16
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 13:57:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/732667a668bba0910c5bb8ee75b5bd701fd2a360/build-end.log
Complete log   : http://autobuild.buildroot.net/results/732667a668bba0910c5bb8ee75b5bd701fd2a360/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/732667a668bba0910c5bb8ee75b5bd701fd2a360/config
Defconfig      : http://autobuild.buildroot.net/results/732667a668bba0910c5bb8ee75b5bd701fd2a360/defconfig

Build 7a9b5923c3831cc6c456c18ba264c67fb0a7d220
==============================================

Status         : NOK
Failure reason : valgrind-3.7.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 14:30:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/7a9b5923c3831cc6c456c18ba264c67fb0a7d220/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7a9b5923c3831cc6c456c18ba264c67fb0a7d220/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7a9b5923c3831cc6c456c18ba264c67fb0a7d220/config
Defconfig      : http://autobuild.buildroot.net/results/7a9b5923c3831cc6c456c18ba264c67fb0a7d220/defconfig

Build 61826a163d4a6a2f785ae9be5a60dccdd6b8e482
==============================================

Status         : NOK
Failure reason : libnspr-4.8.7
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 14:30:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/61826a163d4a6a2f785ae9be5a60dccdd6b8e482/build-end.log
Complete log   : http://autobuild.buildroot.net/results/61826a163d4a6a2f785ae9be5a60dccdd6b8e482/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/61826a163d4a6a2f785ae9be5a60dccdd6b8e482/config
Defconfig      : http://autobuild.buildroot.net/results/61826a163d4a6a2f785ae9be5a60dccdd6b8e482/defconfig

Build 3345c081bbd40af86a54f914770c02e03f11e788
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 14:45:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/3345c081bbd40af86a54f914770c02e03f11e788/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3345c081bbd40af86a54f914770c02e03f11e788/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3345c081bbd40af86a54f914770c02e03f11e788/config
Defconfig      : http://autobuild.buildroot.net/results/3345c081bbd40af86a54f914770c02e03f11e788/defconfig

Build 90da849522936686dca8fe9adf78955480b006bd
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 14:48:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/90da849522936686dca8fe9adf78955480b006bd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/90da849522936686dca8fe9adf78955480b006bd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/90da849522936686dca8fe9adf78955480b006bd/config
Defconfig      : http://autobuild.buildroot.net/results/90da849522936686dca8fe9adf78955480b006bd/defconfig

Build 2ffcaf8ec52dd7c2edafc3b0da867b798a472ad6
==============================================

Status         : NOK
Failure reason : imagemagick-6.7.8-8
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 16:31:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/2ffcaf8ec52dd7c2edafc3b0da867b798a472ad6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2ffcaf8ec52dd7c2edafc3b0da867b798a472ad6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2ffcaf8ec52dd7c2edafc3b0da867b798a472ad6/config
Defconfig      : http://autobuild.buildroot.net/results/2ffcaf8ec52dd7c2edafc3b0da867b798a472ad6/defconfig

Build 319716844c953e8f9a00b32cea846e07baa7c31c
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 16:38:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/319716844c953e8f9a00b32cea846e07baa7c31c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/319716844c953e8f9a00b32cea846e07baa7c31c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/319716844c953e8f9a00b32cea846e07baa7c31c/config
Defconfig      : http://autobuild.buildroot.net/results/319716844c953e8f9a00b32cea846e07baa7c31c/defconfig

Build b054afdca5c7e631af2517b9a7e2c001cfaf279e
==============================================

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

Build 81c69c8caf92236fc0433e823a5435b222f022b5
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 16:56:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/81c69c8caf92236fc0433e823a5435b222f022b5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/81c69c8caf92236fc0433e823a5435b222f022b5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/81c69c8caf92236fc0433e823a5435b222f022b5/config
Defconfig      : http://autobuild.buildroot.net/results/81c69c8caf92236fc0433e823a5435b222f022b5/defconfig

Build c7ad633927fc522c71e8b4d2715c0a31981f72e4
==============================================

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

Build 3858b7b4ca80f234ed5c8ab601c9798fa92b89a3
==============================================

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

Build 8288a14155d6e899ea9706563b1d1ba98749474b
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 18:09:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/8288a14155d6e899ea9706563b1d1ba98749474b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8288a14155d6e899ea9706563b1d1ba98749474b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8288a14155d6e899ea9706563b1d1ba98749474b/config
Defconfig      : http://autobuild.buildroot.net/results/8288a14155d6e899ea9706563b1d1ba98749474b/defconfig

Build a68f5b8ea85bce1cb2ab6e1db62b7d2027b5a68b
==============================================

Status         : NOK
Failure reason : berkeleydb-5.3.21
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 18:31:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/a68f5b8ea85bce1cb2ab6e1db62b7d2027b5a68b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a68f5b8ea85bce1cb2ab6e1db62b7d2027b5a68b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a68f5b8ea85bce1cb2ab6e1db62b7d2027b5a68b/config
Defconfig      : http://autobuild.buildroot.net/results/a68f5b8ea85bce1cb2ab6e1db62b7d2027b5a68b/defconfig

Build 82add0f98bb365c3d5cce2cb5029675c339521c5
==============================================

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

Build 214ab23d5ceae960179918a3f17629bf69ffcb5c
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 20:13:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/214ab23d5ceae960179918a3f17629bf69ffcb5c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/214ab23d5ceae960179918a3f17629bf69ffcb5c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/214ab23d5ceae960179918a3f17629bf69ffcb5c/config
Defconfig      : http://autobuild.buildroot.net/results/214ab23d5ceae960179918a3f17629bf69ffcb5c/defconfig

Build 044aee09b0a0fe11b7f5f4afb9f2fb8643c77770
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 20:14:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/044aee09b0a0fe11b7f5f4afb9f2fb8643c77770/build-end.log
Complete log   : http://autobuild.buildroot.net/results/044aee09b0a0fe11b7f5f4afb9f2fb8643c77770/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/044aee09b0a0fe11b7f5f4afb9f2fb8643c77770/config
Defconfig      : http://autobuild.buildroot.net/results/044aee09b0a0fe11b7f5f4afb9f2fb8643c77770/defconfig

Build 30bd8be03707bfc953c6c0a5cfabc90a0c274d4b
==============================================

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

Build cf4672429facb5e62b8a911e476d867b816bbac0
==============================================

Status         : NOK
Failure reason : gettext-0.16.1
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 20:26:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/cf4672429facb5e62b8a911e476d867b816bbac0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cf4672429facb5e62b8a911e476d867b816bbac0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cf4672429facb5e62b8a911e476d867b816bbac0/config
Defconfig      : http://autobuild.buildroot.net/results/cf4672429facb5e62b8a911e476d867b816bbac0/defconfig

Build 3df4e4a23cb1571e1121aa9880c75af9b0064d3d
==============================================

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

Build 5963d35b8933c452b8574c964e407c23a5d0412f
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 20:45:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/5963d35b8933c452b8574c964e407c23a5d0412f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5963d35b8933c452b8574c964e407c23a5d0412f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5963d35b8933c452b8574c964e407c23a5d0412f/config
Defconfig      : http://autobuild.buildroot.net/results/5963d35b8933c452b8574c964e407c23a5d0412f/defconfig

Build 2d35bf3f3b4d2563294171a773d1961ab214cde9
==============================================

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

Build 5055ae94a6540f7dd20775dfd7a4525271be9fae
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 21:46:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/5055ae94a6540f7dd20775dfd7a4525271be9fae/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5055ae94a6540f7dd20775dfd7a4525271be9fae/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5055ae94a6540f7dd20775dfd7a4525271be9fae/config
Defconfig      : http://autobuild.buildroot.net/results/5055ae94a6540f7dd20775dfd7a4525271be9fae/defconfig

Build c470d2540aa44cf5e3b2debec13e067ecb008ffe
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-13 22:12:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/c470d2540aa44cf5e3b2debec13e067ecb008ffe/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c470d2540aa44cf5e3b2debec13e067ecb008ffe/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c470d2540aa44cf5e3b2debec13e067ecb008ffe/config
Defconfig      : http://autobuild.buildroot.net/results/c470d2540aa44cf5e3b2debec13e067ecb008ffe/defconfig

Build 0e5d9d7bfb00808f94da6e0022bf4d619e00ce65
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 22:47:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/0e5d9d7bfb00808f94da6e0022bf4d619e00ce65/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0e5d9d7bfb00808f94da6e0022bf4d619e00ce65/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0e5d9d7bfb00808f94da6e0022bf4d619e00ce65/config
Defconfig      : http://autobuild.buildroot.net/results/0e5d9d7bfb00808f94da6e0022bf4d619e00ce65/defconfig

Build 252fe7219e416116c76ed1dc3ac8eee72027bf54
==============================================

Status         : NOK
Failure reason : util-linux-2.20.1
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-13 23:02:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log     : http://autobuild.buildroot.net/results/252fe7219e416116c76ed1dc3ac8eee72027bf54/build-end.log
Complete log   : http://autobuild.buildroot.net/results/252fe7219e416116c76ed1dc3ac8eee72027bf54/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/252fe7219e416116c76ed1dc3ac8eee72027bf54/config
Defconfig      : http://autobuild.buildroot.net/results/252fe7219e416116c76ed1dc3ac8eee72027bf54/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [git commit] package/qemu: fix host-qemu variable names
From: François Perrad @ 2012-12-14  7:01 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121213235339.E8BC99A1F2@busybox.osuosl.org>

2012/12/14 Peter Korsgaard <jacmet@sunsite.dk>:
> commit: http://git.buildroot.net/buildroot/commit/?id=6f7884c81461bdb35ff47da9cd84c8a8ca5d57cb
> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
>
> With the upcoming introduction of qemu-on-target, we need to properly
> separate the variables used for the host qemu, from the variables
> used for the target qemu.
>

you've missed the last line of qemu.mk :
 # variable used by other packages
-QEMU_USER = $(HOST_DIR)/usr/bin/qemu-$(QEMU_ARCH)
+QEMU_USER = $(HOST_DIR)/usr/bin/qemu-$(HOST_QEMU_ARCH)

Fran?ois

> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Cc: Francois Perrad <fperrad@gmail.com>
> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
> ---
>  package/qemu/qemu.mk |   25 ++++++++++++++-----------
>  1 files changed, 14 insertions(+), 11 deletions(-)
>
> diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
> index 790d34f..81cd79f 100644
> --- a/package/qemu/qemu.mk
> +++ b/package/qemu/qemu.mk
> @@ -13,7 +13,10 @@ QEMU_LICENSE_FILES = COPYING COPYING.LIB
>  #       the non-(L)GPL license texts are specified in the affected
>  #       individual source files.
>
> -QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
> +#-------------------------------------------------------------
> +# Host-qemu
> +
> +HOST_QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
>
>  #       BR ARCH         qemu
>  #       -------         ----
> @@ -44,20 +47,20 @@ QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
>  #       sh64            not supported
>  #       sparc           sparc
>
> -QEMU_ARCH = $(ARCH)
> -ifeq ($(QEMU_ARCH),i486)
> -    QEMU_ARCH = i386
> +HOST_QEMU_ARCH = $(ARCH)
> +ifeq ($(HOST_QEMU_ARCH),i486)
> +    HOST_QEMU_ARCH = i386
>  endif
> -ifeq ($(QEMU_ARCH),i586)
> -    QEMU_ARCH = i386
> +ifeq ($(HOST_QEMU_ARCH),i586)
> +    HOST_QEMU_ARCH = i386
>  endif
> -ifeq ($(QEMU_ARCH),i686)
> -    QEMU_ARCH = i386
> +ifeq ($(HOST_QEMU_ARCH),i686)
> +    HOST_QEMU_ARCH = i386
>  endif
> -ifeq ($(QEMU_ARCH),powerpc)
> -    QEMU_ARCH = ppc
> +ifeq ($(HOST_QEMU_ARCH),powerpc)
> +    HOST_QEMU_ARCH = ppc
>  endif
> -HOST_QEMU_TARGETS=$(QEMU_ARCH)-linux-user
> +HOST_QEMU_TARGETS=$(HOST_QEMU_ARCH)-linux-user
>
>  define HOST_QEMU_CONFIGURE_CMDS
>         (cd $(@D); $(HOST_CONFIGURE_OPTS) ./configure   \
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply

* [Buildroot] Pass CFLAGS when building kernel
From: Woody Wu @ 2012-12-14  4:45 UTC (permalink / raw)
  To: buildroot

Hi, list

I want to enalbe pr_debug in kernel building, that means I have to to
define CFLAGS as something like CFLAGS += DEBUG when building kernel.

How should I do this with buildroot? Thanks

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

^ permalink raw reply

* [Buildroot] [git commit] dbus: fix build on microblaze
From: Peter Korsgaard @ 2012-12-14  0:23 UTC (permalink / raw)
  To: buildroot

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

Fixes http://autobuild.buildroot.net/results/5963d35b8933c452b8574c964e407c23a5d0412f

The microblaze toolchain has sys/inotify.h, but doesn't provide inotify_rm_*
functions, so disable inotify support.

Also disable the legacy dnotify support (which is used when inotify support
is disabled) as it has bitrotten upstream and no longer builds.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/dbus/dbus.mk |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/package/dbus/dbus.mk b/package/dbus/dbus.mk
index b7cc378..ec42874 100644
--- a/package/dbus/dbus.mk
+++ b/package/dbus/dbus.mk
@@ -18,11 +18,16 @@ DBUS_CONF_OPT = --with-dbus-user=dbus \
 		--disable-xml-docs \
 		--disable-doxygen-docs \
 		--disable-static \
-		--enable-dnotify \
+		--disable-dnotify \
 		--localstatedir=/var \
 		--with-system-socket=/var/run/dbus/system_bus_socket \
 		--with-system-pid-file=/var/run/messagebus.pid
 
+ifeq ($(BR2_microblaze),y)
+# microblaze toolchain doesn't provide inotify_rm_* but does have sys/inotify.h
+DBUS_CONF_OPT += --disable-inotify
+endif
+
 ifeq ($(BR2_DBUS_EXPAT),y)
 DBUS_CONF_OPT += --with-xml=expat
 DBUS_DEPENDENCIES += expat

^ permalink raw reply related

* [Buildroot] builroot-2012.11.tar.bz2: CVS control directory left in toolchain/elf2flt/elf2flt
From: Willy Lambert @ 2012-12-14  0:08 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50CA4E6E.6000507@wanadoo.fr>

2012/12/13 Thierry Bultel <thierry.bultel@wanadoo.fr>:
> Le 13/12/2012 22:47, Peter Korsgaard a ?crit :
>
>>>>>>> "Thierry" == Thierry Bultel <thierry.bultel@wanadoo.fr> writes:
>>
>>
>> Hi,
>>
>>   Thierry> Actually I am not using it either.  The CVS dir came in
>>   Thierry> conflict with my versioning system and that is how I noticed
>>   Thierry> it.
>>
>> You're using CVS in 2012? Really? ;)
>>
> It is awesome, sometimes, to notice how people like to stay with what they
> have, even when there is better elsewhere ;0)
>

This is called Love :D

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

^ permalink raw reply

* [Buildroot] [PATCH] qt: fix qconfig configure parameter
From: Peter Korsgaard @ 2012-12-14  0:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1336425264-29060-1-git-send-email-fhunleth@troodon-software.com>

>>>>> "Frank" == Frank Hunleth <fhunleth@troodon-software.com> writes:

 Frank> The Qt configure option for specifying a custom qconfig.h
 Frank> file changed from -config to -qconfig. This makes the
 Frank> corresponding change in qt.mk.

Committed, thanks - And sorry for the slow response.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] qt: fix qconfig configure parameter
From: Peter Korsgaard @ 2012-12-14  0:04 UTC (permalink / raw)
  To: buildroot

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

The Qt configure option for specifying a custom qconfig.h
file changed from -config to -qconfig. This makes the
corresponding change in qt.mk.

Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/qt/qt.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/qt/qt.mk b/package/qt/qt.mk
index be0808d..b09d0ed 100644
--- a/package/qt/qt.mk
+++ b/package/qt/qt.mk
@@ -24,7 +24,7 @@ endif
 QT_CONFIG_FILE=$(call qstrip,$(BR2_PACKAGE_QT_CONFIG_FILE))
 
 ifneq ($(QT_CONFIG_FILE),)
-QT_CONFIGURE_OPTS += -config buildroot
+QT_CONFIGURE_OPTS += -qconfig buildroot
 endif
 
 QT_CFLAGS = $(TARGET_CFLAGS)

^ permalink raw reply related

* [Buildroot] [PATCH 4/4] package/qemu: bump version
From: Peter Korsgaard @ 2012-12-13 23:54 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <b868ae7c3562ef5dd3b7027f28dc7f0ebba3b440.1355434710.git.yann.morin.1998@free.fr>

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> Bump QEMU to 1.2.1.
 Yann> Note: 1.3.0 is out now, but ./configure has changed a bit, and there are
 Yann> new dependencies, so the bump to 1.3.0 is postponed for a litle while...

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] package/qemu: bump version
From: Peter Korsgaard @ 2012-12-13 23:53 UTC (permalink / raw)
  To: buildroot

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

Bump QEMU to 1.2.1.

Note: 1.3.0 is out now, but ./configure has changed a bit, and there are
new dependencies, so the bump to 1.3.0 is postponed for a litle while...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Francois Perrad <fperrad@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/qemu/qemu.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 2c0dbde..3c01102 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-QEMU_VERSION = 1.2.0
+QEMU_VERSION = 1.2.1
 QEMU_SOURCE = qemu-$(QEMU_VERSION).tar.bz2
 QEMU_SITE = http://wiki.qemu.org/download
 QEMU_LICENSE = GPLv2 LGPLv2.1 MIT BSD-3c BSD-2c Others/BSD-1c

^ permalink raw reply related

* [Buildroot] [PATCH 2/4] package/qemu: fix host dependencies
From: Peter Korsgaard @ 2012-12-13 23:53 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <f3379896be4cbb7b0c1348fb207ecd6696702842.1355434710.git.yann.morin.1998@free.fr>

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> 'host-*' packages should depends on other 'host-*' packages,
 Yann> not on target packages.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH 1/4] package/qemu: fix host-qemu variable names
From: Peter Korsgaard @ 2012-12-13 23:52 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <ef84613fdc32788b96df51eb2c074c547424ac9c.1355434710.git.yann.morin.1998@free.fr>

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> With the upcoming introduction of qemu-on-target, we need to properly
 Yann> separate the variables used for the host qemu, from the variables
 Yann> used for the target qemu.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply


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