Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2] gstreamer: Added option to disable plugin
From: Arnout Vandecappelle @ 2012-11-24 23:51 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <98E3058E5505294895CA69F176CAD66272CE97@LEMAIL01.le.imgtec.org>

  Hi Tim,

  The whitespace in your patch is messed up by your e-mail client.  Please use
git send-email to avoid this.


On 22/11/12 14:53, Tim Sheridan wrote:
> The plugin registry can take a while to be generated when GStreamer is initialized. Turning it off speeds up GStreamer application launch times. Default behaviour is unchanged.

  Please wrap the commit message at +- 72 characters

>
> Signed-off-by: Tim Sheridan<tim.sheridan@imgtec.com>
> ---
>   package/multimedia/gstreamer/Config.in    |    9 +++++++++
>   package/multimedia/gstreamer/gstreamer.mk |    3 ++-
>   2 files changed, 11 insertions(+), 1 deletions(-)
>
> diff --git a/package/multimedia/gstreamer/Config.in b/package/multimedia/gstreamer/Config.in
> index 4d279b8..e946b18 100644
> --- a/package/multimedia/gstreamer/Config.in
> +++ b/package/multimedia/gstreamer/Config.in
> @@ -16,5 +16,14 @@ config BR2_PACKAGE_GSTREAMER_GST_DEBUG
>            in gstreamer. This has limited CPU overhead, but does
>            increase the rootfs size somewhat.
>
> +config BR2_PACKAGE_GSTREAMER_PLUGIN_REGISTRY
> +       bool "enable plugin registry"
> +       default y
> +       depends on BR2_PACKAGE_GSTREAMER
> +       help
> +         Enable support for the GStreamer plugin registry.
> +         This may increase the launch-time for a GStreamer
> +         application.

  The Config.in things should be indented with 1 tab, help text with
1 tab and 2 spaces.  Wrapping should be at 80 characters, with the tab
counting as 8 characters.

> +
>   comment "gstreamer requires a toolchain with WCHAR support"
>          depends on !BR2_USE_WCHAR
> diff --git a/package/multimedia/gstreamer/gstreamer.mk b/package/multimedia/gstreamer/gstreamer.mk
> index a9841b1..b87f029 100644
> --- a/package/multimedia/gstreamer/gstreamer.mk
> +++ b/package/multimedia/gstreamer/gstreamer.mk
> @@ -21,7 +21,8 @@ GSTREAMER_CONF_OPT = \
>                  --disable-tests \
>                  --disable-failing-tests \
>                  --disable-loadsave \
> -               $(if $(BR2_PACKAGE_GSTREAMER_GST_DEBUG),,--disable-gst-debug)
> +               $(if $(BR2_PACKAGE_GSTREAMER_GST_DEBUG),,--disable-gst-debug) \
> +               $(if
> + $(BR2_PACKAGE_GSTREAMER_PLUGIN_REGISTRY),,--disable-registry)

  No need to split this line, even if it goes over 80 characters. It's less readable
when split.


  All my comments are just whitespace-related, so:

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


  Regards,
  Arnout

>
>   GSTREAMER_DEPENDENCIES = libglib2 host-pkgconf
>
> --
> 1.7.1

-- 
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] Passing arguments to the linker when external toolchain is used.
From: Arnout Vandecappelle @ 2012-11-24 23:33 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAMJ=MEc1T6Uz2tLS3ybdp5hwv7zX15ufGYMVuAY7jOSA+U=sYg@mail.gmail.com>

On 23/11/12 14:04, Ronny Meeus wrote:
> Hello
>
> I'm using buildroot to build an environment for MIPS (Cavium).
> For this I use a 64 bit toolchain provided by Cavium as an external toolchain.
>
> My buildroot configuration is as follows:
> * Buildroot 2012.05
> * Target Architecture: MIPS (big endian)
> * Target Architecture Variant: mips 64
> * Target ABI: n32
> * glibc
>
> In my application we need to create partially linked objects that will
> be linked together in a final link step.
> I see that the correct options (ABI etc) are passed to the compiler
> via the ext-toolchain-wrapper construction, but for the linker this
> technique is not used. It is directly invoked without modifying the
> command line. If I want to create this partially linked file, I need
> to pass an extra option the linker to indicate that is needs to use
> the N32 abi (-melf32btsmipn32).

  First of all, I don't understand why ld needs any option that we normally
pass to the compiler.  Do the -march, -mtune and -mfpu options even work
in ld?

  That said, if you do need the CFLAGS, then perhaps you should use
'$(CC) -nostdlib' rather than $(LD) (and of course pass ld-specific
options using -Wl,...).

>
> To make this work, I needed to make 2 changes:
> - make the linker a link to the ext-toolchain-wrapper
> - change the ext-toolchain-wrapper so that it passes to options to the
> linker (currently the option is hardcoded but this needs to be changed
> so that the BR2_TARGET_LDFLAGS are used.

  Since not all gcc flags are supported by ld, I think it should be a
separate toolchain wrapper, specific for ld.  It can be generated from
the same source code, though (using ifdefs).


  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 33/33] sylpheed: add license info
From: Arnout Vandecappelle @ 2012-11-24 23:15 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-34-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/sylpheed/sylpheed.mk | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/package/sylpheed/sylpheed.mk b/package/sylpheed/sylpheed.mk
> index 3ac2e1e..149c2a3 100644
> --- a/package/sylpheed/sylpheed.mk
> +++ b/package/sylpheed/sylpheed.mk
> @@ -8,6 +8,8 @@ SYLPHEED_VERSION_MINOR = 0
>   SYLPHEED_VERSION = $(SYLPHEED_VERSION_MAJOR).$(SYLPHEED_VERSION_MINOR)
>   SYLPHEED_SOURCE = sylpheed-$(SYLPHEED_VERSION).tar.bz2
>   SYLPHEED_SITE = http://sylpheed.sraoss.jp/sylpheed/v$(SYLPHEED_VERSION_MAJOR)
> +SYLPHEED_LICENSE = GPLv2, except the libraries which are released under LGPLv2.1

  Both of them are +, so: GPLv2+ (executables), LGPLv2.1+ (library, attachment plugin)


  Regards,
  Arnout

> +SYLPHEED_LICENSE_FILES = COPIYNG COPYING.LIB
>
>   SYLPHEED_CONF_OPT = --disable-gtkspell --disable-gpgme
>

-- 
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 22/33] libmad: add license info
From: Arnout Vandecappelle @ 2012-11-24 23:08 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-23-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/libmad/libmad.mk | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/package/libmad/libmad.mk b/package/libmad/libmad.mk
> index 6999b66..1ce52ec 100644
> --- a/package/libmad/libmad.mk
> +++ b/package/libmad/libmad.mk
> @@ -8,6 +8,8 @@ LIBMAD_VERSION = 0.15.1b
>   LIBMAD_SITE = http://downloads.sourceforge.net/project/mad/libmad/$(LIBMAD_VERSION)
>   LIBMAD_INSTALL_STAGING = YES
>   LIBMAD_LIBTOOL_PATCH = NO
> +LIBMAD_LICENSE = GPLv2

  It's GPLv2+


  Regards,
  Arnout

> +LIBMAD_LICENSE_FILES = COPYING
>
>   define LIBMAD_PREVENT_AUTOMAKE
>   	# Prevent automake from running.

-- 
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 23/33] scons: add license info
From: Arnout Vandecappelle @ 2012-11-24 23:06 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-24-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>

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


  Regards,
  Arnout

> ---
>   package/scons/scons.mk | 3 +++
>   1 file changed, 3 insertions(+)
>
> diff --git a/package/scons/scons.mk b/package/scons/scons.mk
> index 45f2e1e..92cfe93 100644
> --- a/package/scons/scons.mk
> +++ b/package/scons/scons.mk
> @@ -1,6 +1,9 @@
>   SCONS_VERSION = 2.0.1
>   SCONS_SOURCE = scons-$(SCONS_VERSION).tar.gz
>   SCONS_SITE = http://downloads.sourceforge.net/project/scons/scons/$(SCONS_VERSION)
> +SCONS_LICENSE = MIT
> +SCONS_LICENSE_FILES = LICENSE.txt
> +
>   HOST_SCONS_DEPENDENCIES = $(NEED_PYTHON2)
>
>   define HOST_SCONS_BUILD_CMDS

-- 
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 24/33] efl packages: add license info
From: Arnout Vandecappelle @ 2012-11-24 23:04 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-25-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
[snip]
> diff --git a/package/efl/libedje/libedje.mk b/package/efl/libedje/libedje.mk
> index 8b4814e..f768dba 100644
> --- a/package/efl/libedje/libedje.mk
> +++ b/package/efl/libedje/libedje.mk
> @@ -7,6 +7,9 @@
>   LIBEDJE_VERSION = 1.1.0
>   LIBEDJE_SOURCE = edje-$(LIBEDJE_VERSION).tar.bz2
>   LIBEDJE_SITE =  http://download.enlightenment.org/releases/
> +LIBEDJE_LICENSE = epp binary is licensed under GPLv2, everything else is licensed under BSD-2c

  Although I'm OK with verbose license text, I think this is a bit too much.
How about: "GPLv2+ (epp binary), BSD-2c (everything else)"

  Note that it's GPLv2+

> +LIBEDJE_LICENSE_FILES = COPYING
> +
>   LIBEDJE_INSTALL_STAGING = YES
>
>   LIBEDJE_DEPENDENCIES = host-pkgconf lua libeina libeet libecore libevas \
[snip]
> diff --git a/package/efl/libembryo/libembryo.mk b/package/efl/libembryo/libembryo.mk
> index 5484ccf..6f66b10 100644
> --- a/package/efl/libembryo/libembryo.mk
> +++ b/package/efl/libembryo/libembryo.mk
> @@ -7,6 +7,9 @@
>   LIBEMBRYO_VERSION = 1.1.0
>   LIBEMBRYO_SOURCE = embryo-$(LIBEMBRYO_VERSION).tar.bz2
>   LIBEMBRYO_SITE = http://download.enlightenment.org/releases/
> +LIBEMBRYO_LICENSE = source containing the ITB CompuPhase copyright are released as-is  and the others are licensed under BSD-2c

  Again a bit too verbose.  I think the following should be sufficient:
"BSD-2c, Embryo license"

> +LIBEMBRYO_LICENSE_FILES = COPYING
> +
>   LIBEMBRYO_INSTALL_STAGING = YES
>
>   LIBEMBRYO_DEPENDENCIES = host-pkgconf libeina
> diff --git a/package/efl/libethumb/libethumb.mk b/package/efl/libethumb/libethumb.mk
> index 92e4c83..785fb28 100644
> --- a/package/efl/libethumb/libethumb.mk
> +++ b/package/efl/libethumb/libethumb.mk
> @@ -7,6 +7,9 @@
>   LIBETHUMB_VERSION = 0.1.1.65643
>   LIBETHUMB_SOURCE = ethumb-$(LIBETHUMB_VERSION).tar.bz2
>   LIBETHUMB_SITE = http://download.enlightenment.org/snapshots/2011-11-28
> +LIBETHUMB_LICENSE = LGPLv2.1

  LGPLv2.1+


  Regards,
  Arnout

> +LIBETHUMB_LICENSE_FILES = COPYING
> +
>   LIBETHUMB_INSTALL_STAGING = YES
>
>   LIBETHUMB_DEPENDENCIES = libeina libevas libecore libedje host-libedje
> diff --git a/package/efl/libevas/libevas.mk b/package/efl/libevas/libevas.mk
> index 594db60..402aa48 100644
> --- a/package/efl/libevas/libevas.mk
> +++ b/package/efl/libevas/libevas.mk
> @@ -7,6 +7,9 @@
>   LIBEVAS_VERSION = 1.1.0
>   LIBEVAS_SOURCE = evas-$(LIBEVAS_VERSION).tar.bz2
>   LIBEVAS_SITE = http://download.enlightenment.org/releases/
> +LIBEVAS_LICENSE = BSD-2c
> +LIBEVAS_LICENSE_FILES = COPYING
> +
>   LIBEVAS_INSTALL_STAGING = YES
>
>   LIBEVAS_DEPENDENCIES = host-pkgconf zlib libeina freetype

-- 
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 25/33] fluxbox: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:48 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-26-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/fluxbox/fluxbox.mk | 3 +++
>   1 file changed, 3 insertions(+)
>
> diff --git a/package/fluxbox/fluxbox.mk b/package/fluxbox/fluxbox.mk
> index bb34379..d8f2723 100644
> --- a/package/fluxbox/fluxbox.mk
> +++ b/package/fluxbox/fluxbox.mk
> @@ -7,6 +7,9 @@
>   FLUXBOX_VERSION = 1.3.2
>   FLUXBOX_SOURCE = fluxbox-$(FLUXBOX_VERSION).tar.bz2
>   FLUXBOX_SITE = http://downloads.sourceforge.net/project/fluxbox/fluxbox/$(FLUXBOX_VERSION)
> +FLUXBOX_LICENSE = as-is
> +FLUXBOX_LICENSE_FILES = COPYING
> +

  It's a MIT license.


  Regards,
  Arnout

>   FLUXBOX_AUTORECONF = YES
>   FLUXBOX_CONF_OPT = --x-includes=$(STAGING_DIR)/usr/include/X11 \
>   		   --x-libraries=$(STAGING_DIR)/usr/lib \

-- 
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 26/33] igh-ethercat: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:46 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-27-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/igh-ethercat/igh-ethercat.mk | 4 ++++
>   1 file changed, 4 insertions(+)
>
> diff --git a/package/igh-ethercat/igh-ethercat.mk b/package/igh-ethercat/igh-ethercat.mk
> index 9182f76..d37b6d3 100644
> --- a/package/igh-ethercat/igh-ethercat.mk
> +++ b/package/igh-ethercat/igh-ethercat.mk
> @@ -1,6 +1,10 @@
>   IGH_ETHERCAT_VERSION = 1.5.1
>   IGH_ETHERCAT_SITE    = http://etherlab.org/download/ethercat/
>   IGH_ETHERCAT_SOURCE  = ethercat-$(IGH_ETHERCAT_VERSION).tar.bz2
> +# According to the README file IgH EtherCAT master is licensed under GPLv2,
> +# while the source-tree contains a copy of the GPLv2 and one of the LGPLv3
> +IGH_ETHERCAT_LICENSE = GPLv2
> +IGH_ETHERCAT_LICENSE_FILES = COPYING COPYING.LESSER

  The library is under LGPLv2.1. I guess they included the LGPLv3 by
accident.


  Regards,
  Arnout

>
>   IGH_ETHERCAT_DEPENDENCIES    = linux
>   IGH_ETHERCAT_INSTALL_STAGING = YES

-- 
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 27/33] imagemagick: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:42 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-28-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>

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

  Regards,
  Arnout

> ---
>   package/imagemagick/imagemagick.mk | 3 +++
>   1 file changed, 3 insertions(+)
>
> diff --git a/package/imagemagick/imagemagick.mk b/package/imagemagick/imagemagick.mk
> index 365a073..725e529 100644
> --- a/package/imagemagick/imagemagick.mk
> +++ b/package/imagemagick/imagemagick.mk
> @@ -11,6 +11,9 @@ IMAGEMAGICK_SOURCE = ImageMagick-$(IMAGEMAGICK_VERSION).tar.bz2
>   # available, which is annoying. Use an alternate site that keeps all
>   # older versions.
>   IMAGEMAGICK_SITE = ftp://ftp.nluug.nl/pub/ImageMagick/
> +IMAGEMAGICK_LICENSE = Apache-v2
> +IMAGEMAGICK_LICENSE_FILES = LICENSE
> +
>   IMAGEMAGICK_INSTALL_STAGING = YES
>   IMAGEMAGICK_AUTORECONF = YES
>

-- 
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 29/33] ltp-testsuite: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:41 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-30-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/ltp-testsuite/ltp-testsuite.mk | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/package/ltp-testsuite/ltp-testsuite.mk b/package/ltp-testsuite/ltp-testsuite.mk
> index c6b34f0..72d3a08 100644
> --- a/package/ltp-testsuite/ltp-testsuite.mk
> +++ b/package/ltp-testsuite/ltp-testsuite.mk
> @@ -6,5 +6,7 @@
>   LTP_TESTSUITE_VERSION = 20101031
>   LTP_TESTSUITE_SOURCE  = ltp-full-$(LTP_TESTSUITE_VERSION).bz2
>   LTP_TESTSUITE_SITE    = http://downloads.sourceforge.net/project/ltp/LTP%20Source/ltp-$(LTP_TESTSUITE_VERSION)
> +LTP_TESTSUITE_LICENSE = GPLv2
> +LTP_TESTSUITE_LICENSE_FILES = COPYING

  Parts are GPLv2 and parts are GPLv2+, so I'd put both.

  Regards,
  Arnout

>
>   $(eval $(autotools-package))

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

^ permalink raw reply

* [Buildroot] [PATCH 30/33] matchbox packages: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:37 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-31-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/matchbox/matchbox-common/matchbox-common.mk                   | 3 +++
>   package/matchbox/matchbox-desktop/matchbox-desktop.mk                 | 3 +++
>   package/matchbox/matchbox-fakekey/matchbox-fakekey.mk                 | 3 +++
>   package/matchbox/matchbox-keyboard/matchbox-keyboard.mk               | 3 +++
>   package/matchbox/matchbox-lib/matchbox-lib.mk                         | 3 +++
>   package/matchbox/matchbox-panel/matchbox-panel.mk                     | 3 +++
>   package/matchbox/matchbox-startup-monitor/matchbox-startup-monitor.mk | 3 +++
>   package/matchbox/matchbox-wm/matchbox-wm.mk                           | 3 +++
>   8 files changed, 24 insertions(+)
>
> diff --git a/package/matchbox/matchbox-common/matchbox-common.mk b/package/matchbox/matchbox-common/matchbox-common.mk
> index 993590c..2909f27 100644
> --- a/package/matchbox/matchbox-common/matchbox-common.mk
> +++ b/package/matchbox/matchbox-common/matchbox-common.mk
> @@ -7,6 +7,9 @@ MATCHBOX_COMMON_VERSION_MAJOR = 0.9
>   MATCHBOX_COMMON_VERSION = $(MATCHBOX_COMMON_VERSION_MAJOR).1
>   MATCHBOX_COMMON_SOURCE = matchbox-common-$(MATCHBOX_COMMON_VERSION).tar.bz2
>   MATCHBOX_COMMON_SITE = http://projects.o-hand.com/matchbox/sources/matchbox-common/$(MATCHBOX_COMMON_VERSION_MAJOR)
> +MATCHBOX_COMMON_LICENSE = GPLv2

  As far as I can see, all files say 'or later', so it should
be GPLv2+.  And this is for all matchbox-xxx packages.

  Regards,
  Arnout

[snip]
-- 
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 28/33] imlib2: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:29 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-29-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/imlib2/imlib2.mk | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/package/imlib2/imlib2.mk b/package/imlib2/imlib2.mk
> index 3c6c473..52d80df 100644
> --- a/package/imlib2/imlib2.mk
> +++ b/package/imlib2/imlib2.mk
> @@ -6,6 +6,9 @@
>   IMLIB2_VERSION = 1.4.5
>   IMLIB2_SOURCE = imlib2-$(IMLIB2_VERSION).tar.bz2
>   IMLIB2_SITE = http://downloads.sourceforge.net/project/enlightenment/imlib2-src/$(IMLIB2_VERSION)/
> +IMLIB2_LICENSE = as-is
> +IMLIB2_LICENSE_FILES = COPYING

  I think we'll have to call this 'imlib2 license'.  'as-is' is too meaningless
if you ask me.  The license resembles MIT a bit, but the requirement of public
acknowledgement diverges too much to still call it MIT-like.

  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 31/33] owl-linux: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:20 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353543503-8952-32-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:18, Samuel Martin wrote:
>
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> ---
>   package/owl-linux/owl-linux.mk | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/package/owl-linux/owl-linux.mk b/package/owl-linux/owl-linux.mk
> index 0a111c8..e5846a4 100644
> --- a/package/owl-linux/owl-linux.mk
> +++ b/package/owl-linux/owl-linux.mk
> @@ -5,6 +5,8 @@
>   #############################################################
>   OWL_LINUX_VERSION = 1.0.7
>   OWL_LINUX_SITE = http://linux.hd-wireless.se/pub/Linux/DownloadDrivers
> +OWL_LINUX_LICENSE = as-is
> +OWL_LINUX_LICENSE_FILES = LICENSE

  The way I read this license, it's PROPRIETARY.  The 'as-is' is just a
warranty disclaimer.  The only reference to copyright is "All rights
reserved" - i.e., you're not allowed to copy it (or even compile it).

  This means you should also set OWL_LINUX_REDISTRIBUTE = NO.

  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 32/33] rrdtool: add license info
From: Arnout Vandecappelle @ 2012-11-24 20:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAHXCMM+pc8K8BUG7TcVBr5Q+-LYy2KLFNSgs7vkPTsOhLsVptA@mail.gmail.com>

On 22/11/12 11:07, Samuel Martin wrote:
> Hi Baruch, all,
>
> 2012/11/22 Baruch Siach<baruch@tkos.co.il>:
> > Hi Samuel,
> >
> > On Thu, Nov 22, 2012 at 01:18:22AM +0100, Samuel Martin wrote:
> >>
> >> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
> >> ---
> >>   package/rrdtool/rrdtool.mk | 3 +++
> >>   1 file changed, 3 insertions(+)
> >>
> >> diff --git a/package/rrdtool/rrdtool.mk b/package/rrdtool/rrdtool.mk
> >> index 8799a85..4392b50 100644
> >> --- a/package/rrdtool/rrdtool.mk
> >> +++ b/package/rrdtool/rrdtool.mk
> >> @@ -6,6 +6,9 @@
> >>
> >>   RRDTOOL_VERSION = 1.2.30
> >>   RRDTOOL_SITE = http://oss.oetiker.ch/rrdtool/pub
> >> +RRDTOOL_LICENSE = GPLv2+ with FLOSS license exceptions as explained in COPYRIGHT
> >> +RRDTOOL_LICENSE_FILES = COPYING
> >
> > Shouldn't COPYRIGHT also be listed with the license files?
> The Copyright file just tells us "wrt the license, you can do that and
> that, but not that with this software",
> with some real use case.
>
> Shall we consider as part of the license files?

  Since you refer to it in the RRDTOOL_LICENSE, yes the COPYRIGHT file
should be included.

  Note that "GPLv2+ with exceptions" is probably enough, since the
user should anyway look at COPYRIGHT to find out the details.

  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] Qt mouse, keyboard, touchscreen
From: Stephan Hoffmann @ 2012-11-24  9:51 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353748764.40553.YahooMailNeo@web164602.mail.gq1.yahoo.com>

Am 24.11.2012 10:19, schrieb Zoran Djordjevic:
> Thanks to helpful information you provided, I managed to built
> simple Qt application on my ARM board and it works - meaning
> I got some window and some simple effect inside. I am using
> framebuffer so started program with -qws option.
> However mouse, keyboard and touchscreen are dead. In fact they
> are probably visible by kernel (ts_calibrate and ts_test for example,
> works OK and cat /dev/input/event0 shows "usuall" garbage on
> terminal) however I don't know how to start them to work with Qt.
> I successfully started them earlier while using TinyX and GTK, by
> simply quoting them with xinit command parameters.
> But don't know how to do the same with Qt.
Hi,

there are two things to consider:

1. Check if there are drivers enabled in buildroot config. The default
configuration does not include any drivers. I stepped in this trap when
I started to use QT.

BTW: Shouldn't we change this to some useful default?

2. QT needs environment variables to configure input devices.

http://doc.qt.digia.com/4.7/qt-embedded-envvars.html

Hope this helps

Stephan

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


-- 
reLinux     -    Stephan Hoffmann
Am Schmidtgrund 124    50765 K?ln
Tel. +49.221.95595-19    Fax: -64
www.reLinux.de     sho at reLinux.de


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121124/f72e0df2/attachment.html>

^ permalink raw reply

* [Buildroot] Qt mouse, keyboard, touchscreen
From: Zoran Djordjevic @ 2012-11-24  9:19 UTC (permalink / raw)
  To: buildroot

Thanks to helpful information you provided, I managed to built
simple Qt application on my ARM board and it works - meaning
I got some window and some simple effect inside. I am using 
framebuffer so started program with?-qws option.
However mouse, keyboard and touchscreen are dead. In fact they 
are probably visible by kernel (ts_calibrate and ts_test for example,
works OK and cat /dev/input/event0 shows "usuall" garbage on 
terminal) however I don't know how to start them to work with Qt.
I successfully started them earlier?while using TinyX and GTK, by
simply quoting them?with xinit command parameters.
But don't know how to do the same with Qt.
?
Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121124/9db2df41/attachment.html>

^ permalink raw reply

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


Hello,

On 2012-11-23, 138 random build tests have been done and
submitted on autobuild.buildroot.net.
 97 builds have been successful
 41 builds have failed

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

Build bbc1a580fc4ecd7a40a86dfd98716614b64b76fa
==============================================

Status         : NOK
Failure reason : host-python-2.7.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 01:12:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/bbc1a580fc4ecd7a40a86dfd98716614b64b76fa/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bbc1a580fc4ecd7a40a86dfd98716614b64b76fa/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bbc1a580fc4ecd7a40a86dfd98716614b64b76fa/config
Defconfig      : http://autobuild.buildroot.net/results/bbc1a580fc4ecd7a40a86dfd98716614b64b76fa/defconfig

Build d6de5fe4fcb8b06e1d60905d48b0fcb4702826c2
==============================================

Status         : NOK
Failure reason : squid-3.2.3
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 01:54:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/d6de5fe4fcb8b06e1d60905d48b0fcb4702826c2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d6de5fe4fcb8b06e1d60905d48b0fcb4702826c2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d6de5fe4fcb8b06e1d60905d48b0fcb4702826c2/config
Defconfig      : http://autobuild.buildroot.net/results/d6de5fe4fcb8b06e1d60905d48b0fcb4702826c2/defconfig

Build b63bb84ef1e0803740850666096e4ceced90f395
==============================================

Status         : NOK
Failure reason : pcsc-lite-1.8.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 04:13:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/b63bb84ef1e0803740850666096e4ceced90f395/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b63bb84ef1e0803740850666096e4ceced90f395/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b63bb84ef1e0803740850666096e4ceced90f395/config
Defconfig      : http://autobuild.buildroot.net/results/b63bb84ef1e0803740850666096e4ceced90f395/defconfig

Build 5a1e74f44ba16d40a1a069aba1fe98ca461f07f0
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 04:33:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/5a1e74f44ba16d40a1a069aba1fe98ca461f07f0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5a1e74f44ba16d40a1a069aba1fe98ca461f07f0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5a1e74f44ba16d40a1a069aba1fe98ca461f07f0/config
Defconfig      : http://autobuild.buildroot.net/results/5a1e74f44ba16d40a1a069aba1fe98ca461f07f0/defconfig

Build 4ea10c970327f7f9f1bf13bbe8559c736574d955
==============================================

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

Build 80277dbf5123bd31ede5f0983475af42eafe6f29
==============================================

Status         : NOK
Failure reason : netatalk-3.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 04:54:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/80277dbf5123bd31ede5f0983475af42eafe6f29/build-end.log
Complete log   : http://autobuild.buildroot.net/results/80277dbf5123bd31ede5f0983475af42eafe6f29/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/80277dbf5123bd31ede5f0983475af42eafe6f29/config
Defconfig      : http://autobuild.buildroot.net/results/80277dbf5123bd31ede5f0983475af42eafe6f29/defconfig

Build ea43c7b7734ec903f012796ab24685bb0c8a0d99
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 04:55:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/ea43c7b7734ec903f012796ab24685bb0c8a0d99/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ea43c7b7734ec903f012796ab24685bb0c8a0d99/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ea43c7b7734ec903f012796ab24685bb0c8a0d99/config
Defconfig      : http://autobuild.buildroot.net/results/ea43c7b7734ec903f012796ab24685bb0c8a0d99/defconfig

Build c6250e533a2b1a5ca522026c8932617e8b2db8e7
==============================================

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

Build 819410fc4dbe0581487c8deace014d28ee93ad59
==============================================

Status         : NOK
Failure reason : kexec-2.0.3
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 06:34:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/819410fc4dbe0581487c8deace014d28ee93ad59/build-end.log
Complete log   : http://autobuild.buildroot.net/results/819410fc4dbe0581487c8deace014d28ee93ad59/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/819410fc4dbe0581487c8deace014d28ee93ad59/config
Defconfig      : http://autobuild.buildroot.net/results/819410fc4dbe0581487c8deace014d28ee93ad59/defconfig

Build 4bfd1b565f50ff96a77e7aec02db1380b495241a
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 06:40:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/4bfd1b565f50ff96a77e7aec02db1380b495241a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4bfd1b565f50ff96a77e7aec02db1380b495241a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4bfd1b565f50ff96a77e7aec02db1380b495241a/config
Defconfig      : http://autobuild.buildroot.net/results/4bfd1b565f50ff96a77e7aec02db1380b495241a/defconfig

Build de8bff4d6c04de575112a7d47f4ac72002266054
==============================================

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

Build 09b9b7c9307c4d6732600f929191f874ce59c2d2
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 07:54:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/09b9b7c9307c4d6732600f929191f874ce59c2d2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/09b9b7c9307c4d6732600f929191f874ce59c2d2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/09b9b7c9307c4d6732600f929191f874ce59c2d2/config
Defconfig      : http://autobuild.buildroot.net/results/09b9b7c9307c4d6732600f929191f874ce59c2d2/defconfig

Build 996b11580f2bac33ffb427c82940552977f5489e
==============================================

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

Build 5cbee89d3a7080a35044cad41efc9a24bdaec310
==============================================

Status         : NOK
Failure reason : ffmpeg-0.8.12
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 09:45:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=36d36f0de19bd5f23453dc1391f83843f9042849
End of log     : http://autobuild.buildroot.net/results/5cbee89d3a7080a35044cad41efc9a24bdaec310/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5cbee89d3a7080a35044cad41efc9a24bdaec310/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5cbee89d3a7080a35044cad41efc9a24bdaec310/config
Defconfig      : http://autobuild.buildroot.net/results/5cbee89d3a7080a35044cad41efc9a24bdaec310/defconfig

Build 00761a5c88f2219197a13a1313bbfb4e243ab1e4
==============================================

Status         : NOK
Failure reason : squid-3.2.3
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 14:21:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/00761a5c88f2219197a13a1313bbfb4e243ab1e4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/00761a5c88f2219197a13a1313bbfb4e243ab1e4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/00761a5c88f2219197a13a1313bbfb4e243ab1e4/config
Defconfig      : http://autobuild.buildroot.net/results/00761a5c88f2219197a13a1313bbfb4e243ab1e4/defconfig

Build f0de066beb77a77666335b57344c3f2f9552ed1e
==============================================

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

Build b452189223b15af9349a0e53fade2677aa58331a
==============================================

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

Build 73b33edefef619a38eb9d719ef6146a5a5fef7d7
==============================================

Status         : NOK
Failure reason : xstroke-0.6
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 14:58:17
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/73b33edefef619a38eb9d719ef6146a5a5fef7d7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/73b33edefef619a38eb9d719ef6146a5a5fef7d7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/73b33edefef619a38eb9d719ef6146a5a5fef7d7/config
Defconfig      : http://autobuild.buildroot.net/results/73b33edefef619a38eb9d719ef6146a5a5fef7d7/defconfig

Build f642cff9e6fffc92d3d72c58bc6dab9f6217bb8b
==============================================

Status         : NOK
Failure reason : bzip2-1.0.6
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 15:00:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/f642cff9e6fffc92d3d72c58bc6dab9f6217bb8b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f642cff9e6fffc92d3d72c58bc6dab9f6217bb8b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f642cff9e6fffc92d3d72c58bc6dab9f6217bb8b/config
Defconfig      : http://autobuild.buildroot.net/results/f642cff9e6fffc92d3d72c58bc6dab9f6217bb8b/defconfig

Build d56e647605aa526270f2d862ca3fbd1cc3babce6
==============================================

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

Build 0e5f44ec06044920ddad448beadfc560b9b59dac
==============================================

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

Build fed63017d0a4f6b19373592b5daaa9f5a4aa5e51
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 16:24:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/fed63017d0a4f6b19373592b5daaa9f5a4aa5e51/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fed63017d0a4f6b19373592b5daaa9f5a4aa5e51/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fed63017d0a4f6b19373592b5daaa9f5a4aa5e51/config
Defconfig      : http://autobuild.buildroot.net/results/fed63017d0a4f6b19373592b5daaa9f5a4aa5e51/defconfig

Build 62104328ff1b40a4f609aefb1d4f34226231daef
==============================================

Status         : NOK
Failure reason : host-python-2.7.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 16:31:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/62104328ff1b40a4f609aefb1d4f34226231daef/build-end.log
Complete log   : http://autobuild.buildroot.net/results/62104328ff1b40a4f609aefb1d4f34226231daef/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/62104328ff1b40a4f609aefb1d4f34226231daef/config
Defconfig      : http://autobuild.buildroot.net/results/62104328ff1b40a4f609aefb1d4f34226231daef/defconfig

Build 11ce0bd6e4c76eaa201d9ea215e328eeb09c5737
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 16:38:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/11ce0bd6e4c76eaa201d9ea215e328eeb09c5737/build-end.log
Complete log   : http://autobuild.buildroot.net/results/11ce0bd6e4c76eaa201d9ea215e328eeb09c5737/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/11ce0bd6e4c76eaa201d9ea215e328eeb09c5737/config
Defconfig      : http://autobuild.buildroot.net/results/11ce0bd6e4c76eaa201d9ea215e328eeb09c5737/defconfig

Build 2ca8e73f83e7f9aba6412d4992c2311e7d394413
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 17:53:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/2ca8e73f83e7f9aba6412d4992c2311e7d394413/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2ca8e73f83e7f9aba6412d4992c2311e7d394413/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2ca8e73f83e7f9aba6412d4992c2311e7d394413/config
Defconfig      : http://autobuild.buildroot.net/results/2ca8e73f83e7f9aba6412d4992c2311e7d394413/defconfig

Build c32712d491a67fa955bd6f84a29a998cee0a7f7a
==============================================

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

Build 02c2f4df771aacb374bed5184ae126346b384301
==============================================

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

Build 595e3e1bb6eda5aba4bce9e10f99a61a98ba4090
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 18:41:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/595e3e1bb6eda5aba4bce9e10f99a61a98ba4090/build-end.log
Complete log   : http://autobuild.buildroot.net/results/595e3e1bb6eda5aba4bce9e10f99a61a98ba4090/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/595e3e1bb6eda5aba4bce9e10f99a61a98ba4090/config
Defconfig      : http://autobuild.buildroot.net/results/595e3e1bb6eda5aba4bce9e10f99a61a98ba4090/defconfig

Build d1a1b58d495f817c1cacb49bf5f362ae9133aaed
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 18:47:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/d1a1b58d495f817c1cacb49bf5f362ae9133aaed/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d1a1b58d495f817c1cacb49bf5f362ae9133aaed/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d1a1b58d495f817c1cacb49bf5f362ae9133aaed/config
Defconfig      : http://autobuild.buildroot.net/results/d1a1b58d495f817c1cacb49bf5f362ae9133aaed/defconfig

Build 91f65ccb77859f54ee08ef62907488022c2a5ef3
==============================================

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

Build f94af34e58e1932aa6169e80bcb6f35adcb127ea
==============================================

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

Build e961a05e56450aba0d527b90e1b24e2df233e4c3
==============================================

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

Build 38d9409724a87d84b3bd7735d9c56213b72d2ebb
==============================================

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

Build d0c296d5c09638f324e460676043fcf1092d5868
==============================================

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

Build 237aaf7b036a98867de1df47d39d01ec4137efd3
==============================================

Status         : NOK
Failure reason : directfb-1.4.17
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-23 21:22:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bf5d51717ba4988d41c2e86157b95b08b26f379b
End of log     : http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3/config
Defconfig      : http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3/defconfig

Build b8f0ce705d9cb8088398c1b31fa5fad64938a48f
==============================================

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

Build e09b9e765b9a520866a40c2f5d17a68daa0c5ccd
==============================================

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

Build 1cd123e51f2a88228306b7cd42c18471d267e0a8
==============================================

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

Build 57cf8932d9c9ca2745e22c6d439720c82071d232
==============================================

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

Build f7487a8fb7ebfeeafa9bec99700bfcf2f1db33b2
==============================================

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

Build 8f3608d0c98883fffd6483aee8b57eadc2dbcc6c
==============================================

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



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [git commit] directfb: needs threads support
From: Peter Korsgaard @ 2012-11-23 21:01 UTC (permalink / raw)
  To: buildroot

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

Fixes http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/directfb/Config.in                   |    4 ++++
 package/multimedia/gst-plugins-bad/Config.in |    1 +
 2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/package/directfb/Config.in b/package/directfb/Config.in
index 47f9fea..a184568 100644
--- a/package/directfb/Config.in
+++ b/package/directfb/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_DIRECTFB
 	bool "directfb"
+	depends on BR2_TOOLCHAIN_HAS_THREADS
 	select BR2_PACKAGE_FREETYPE
 	select BR2_PACKAGE_ZLIB
 	help
@@ -107,3 +108,6 @@ config BR2_PACKAGE_DIRECTB_TESTS
 	bool "build directfb tests"
 
 endif # BR2_PACKAGE_DIRECTFB
+
+comment "directfb needs a toolchain with thread support"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/multimedia/gst-plugins-bad/Config.in b/package/multimedia/gst-plugins-bad/Config.in
index 7784ad7..d87aec4 100644
--- a/package/multimedia/gst-plugins-bad/Config.in
+++ b/package/multimedia/gst-plugins-bad/Config.in
@@ -262,6 +262,7 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CURL
 config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DIRECTFB
 	bool "directfb"
 	select BR2_PACKAGE_DIRECTFB
+	depends on BR2_TOOLCHAIN_HAS_THREADS
 
 config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB
 	bool "dvb"

^ permalink raw reply related

* [Buildroot] [PATCH for-2012.11 0/5] Introduce errors for legacy API
From: Arnout Vandecappelle @ 2012-11-23 14:59 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <87wqxn5cu6.fsf@dell.be.48ers.dk>

On 15/11/12 12:23, Peter Korsgaard wrote:
> >>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind)<arnout@mind.be>  writes:
[snip]
>   Arnout>   Config options that are no longer supported are moved to
>   Arnout>  Config.in.legacy.  When any of these is selected in an old
>   Arnout>  .config file, a comment will appear to warn the user of it, and
>   Arnout>  it is possible to see which option caused the error in the new
>   Arnout>  'Check legacy' menu.  Unselecting that menuconfig disables all
>   Arnout>  the legacy options in one go.
>
> Is there ever any use case for not checking for legacy stuff?

  Maybe not. Easy enough to remove the condition around the check.

> I like it, the only problem is that the legacy warnings are shown as
> options when they are really warnings/instructions to the user about
> what has changed/what needs to get fixed.
>
> I played around with making the options hidden and instead display a
> comment when it is selected - E.G:
>
> config BR2_PACKAGE_LIBINTL
>     bool
>     select BR2_LEGACY
>     select BR2_PACKAGE_GETTEXT
>
> config BR2_PACKAGE_LIBINTL
>     bool
>     select BR2_LEGACY
>     select BR2_PACKAGE_GETTEXT
>
> if BR2_PACKAGE_LIBINTL
> comment "libintl is now installed by selecting"
> comment "BR2_PACKAGE_GETTEXT. This now only installs the"
> comment "library, not the executables."
> endif
>
> The syntax is not so nice as kconfig doesn't support multi line
> comments, but OK. More importantly, hidden symbols like
> BR2_PACKAGE_LIBINTL seems to be ignored when the .config is read (which
> is what we normally want so they can be disabled again) so this only
> works when a custom package selects BR2_PACKAGE_LIBINTL, not if the user
> has manually enabled it.

  I see this as a major problem.  I think most use cases in the Config.in
will be for user-selectable options that are no longer available, like
BR2_PACKAGE_GETTEXT_STATIC and BR2_PACKAGE_INPUT_TOOLS_EVTEST.
BR2_PACKAGE_LIBINTL is one that is normally used in select statements,
but that's a bit exceptional.

  In addition, if they are blind options, they will just disappear after running
silentoldconfig.  The comment will get printed, but who will see that between
all the other output?

>
> Anybody with a better idea?
>
>   Arnout>   If any such option remains, 'make' will fail immediately with
>   Arnout>  a message that legacy options are still selected.  However, if
>   Arnout>  BR2_DEPRECATED is selected, that error message is suppressed.
>
> Would it make sense to still warn (but not halt) when DEPRECATED is
> enabled?

  The problem with warnings is that we produce so much output that they'll
just be hidden. They would make sense if an error follows soon after. But
in all likelihood, if an error follows, it will be much further down.

  [snip]

  So, is there still anything that I should change?

  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] Passing arguments to the linker when external toolchain is used.
From: Ronny Meeus @ 2012-11-23 13:04 UTC (permalink / raw)
  To: buildroot

Hello

I'm using buildroot to build an environment for MIPS (Cavium).
For this I use a 64 bit toolchain provided by Cavium as an external toolchain.

My buildroot configuration is as follows:
* Buildroot 2012.05
* Target Architecture: MIPS (big endian)
* Target Architecture Variant: mips 64
* Target ABI: n32
* glibc

In my application we need to create partially linked objects that will
be linked together in a final link step.
I see that the correct options (ABI etc) are passed to the compiler
via the ext-toolchain-wrapper construction, but for the linker this
technique is not used. It is directly invoked without modifying the
command line. If I want to create this partially linked file, I need
to pass an extra option the linker to indicate that is needs to use
the N32 abi (-melf32btsmipn32).

To make this work, I needed to make 2 changes:
- make the linker a link to the ext-toolchain-wrapper
- change the ext-toolchain-wrapper so that it passes to options to the
linker (currently the option is hardcoded but this needs to be changed
so that the BR2_TARGET_LDFLAGS are used.
Both changes are shown below.

Please comment on whether this approach is the correct one or is there
a better alternative available.

$ hg diff toolchain/toolchain-external/ext-toolchain-wrapper.c
diff --git a/toolchain/toolchain-external/ext-toolchain-wrapper.c
b/toolchain/toolchain-external/ext-toolchain-wrapper.c
--- a/toolchain/toolchain-external/ext-toolchain-wrapper.c
+++ b/toolchain/toolchain-external/ext-toolchain-wrapper.c
@@ -19,7 +19,7 @@

 static char path[PATH_MAX] = BR_CROSS_PATH;

-static char *predef_args[] = {
+static char *predef_args_cc[] = {
        path,
        "--sysroot", BR_SYSROOT,
 #ifdef BR_ARCH
@@ -48,6 +48,11 @@ static char *predef_args[] = {
 #endif
 };

+static char *predef_args_lnk[] = {
+       path,
+       "-melf32btsmipn32",
+};
+
 static const char *get_basename(const char *name)
 {
        const char *base;
@@ -64,16 +69,24 @@ static const char *get_basename(const ch
 int main(int argc, char **argv)
 {
        char **args, **cur;
+       char **predef_args = predef_args_cc;
+       int size_args = sizeof(predef_args_cc);

-       cur = args = malloc(sizeof(predef_args) + (sizeof(char *) * argc));
+       if (strcmp(argv[0]+strlen(argv[0])-3,"-ld") == 0) {
+               predef_args = predef_args_lnk;
+               size_args = sizeof(predef_args_lnk);
+       }
+
+       cur = args = malloc(size_args + (sizeof(char *) * argc));
        if (args == NULL) {
                perror(__FILE__ ": malloc");
                return 2;
        }

        /* start with predefined args */
-       memcpy(cur, predef_args, sizeof(predef_args));
-       cur += sizeof(predef_args) / sizeof(predef_args[0]);
+       memcpy(cur, predef_args, size_args);
+       cur += size_args / sizeof(predef_args[0]);

        /* append forward args */
        memcpy(cur, &argv[1], sizeof(char *) * (argc - 1));


diff --git a/toolchain/toolchain-external/ext-tool.mk
b/toolchain/toolchain-external/ext-tool.mk
--- a/toolchain/toolchain-external/ext-tool.mk
+++ b/toolchain/toolchain-external/ext-tool.mk
@@ -440,7 +440,7 @@ endif
        for i in $(TOOLCHAIN_EXTERNAL_CROSS)*; do \
                base=$${i##*/}; \
                case "$$base" in \
-               *cc|*cc-*|*++|*++-*|*cpp) \
+               *cc|*cc-*|*++|*++-*|*cpp|*ld) \
                        ln -sf $(@F) $$base; \
                        ;; \
                *) \

---
Ronny

^ permalink raw reply

* [Buildroot] [PATCH] AVR32: fix libusb build
From: Peter Korsgaard @ 2012-11-23  9:48 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50AF457A.8000305@free-electrons.com>

>>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes:

Hi,

 Maxime> Fixes most of the recent avr32 breakages, such as
 Maxime> http://autobuild.buildroot.org/results/f418b6c0b026891c27467f61444b6eac8c105681
 Maxime> or
 Maxime> http://autobuild.buildroot.org/results/1a9e571998bc0a40822dca84267abbdd969bab5e
 >> 
 >> Committed, thanks. Does this mean we can revert 2424cc6 (libhid: disable
 >> on avr32)?

 Maxime> Yes, from the build logs, it looks like it was the same error, so this
 Maxime> patch should fix it as well.

Ok, will revert - Thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] Revert "libhid: disable on avr32"
From: Peter Korsgaard @ 2012-11-23  9:47 UTC (permalink / raw)
  To: buildroot

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

This reverts commit 2424cc6783bbfb542f08cf1985b8c9ef18282161.

Now that we have a timerfd fix for libusb, this can be reverted.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/libhid/Config.in |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/package/libhid/Config.in b/package/libhid/Config.in
index bd1cfcb..093b98f 100644
--- a/package/libhid/Config.in
+++ b/package/libhid/Config.in
@@ -1,7 +1,6 @@
 config BR2_PACKAGE_LIBHID
 	bool "libhid"
 	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
-	depends on !BR2_avr32 # timerfd not in uClibc-0.9.31
 	select BR2_PACKAGE_LIBUSB
 	select BR2_PACKAGE_LIBUSB_COMPAT
 	help
@@ -10,4 +9,4 @@ config BR2_PACKAGE_LIBHID
 	  http://libhid.alioth.debian.org
 
 comment "libhid needs a toolchain with thread support"
-	depends on !BR2_TOOLCHAIN_HAS_THREADS && !BR2_avr32
+	depends on !BR2_TOOLCHAIN_HAS_THREADS

^ permalink raw reply related

* [Buildroot] [PATCH] AVR32: fix libusb build
From: Maxime Ripard @ 2012-11-23  9:44 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <874nkgfyhp.fsf@dell.be.48ers.dk>

Le 23/11/2012 10:40, Peter Korsgaard a ?crit :
>>>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes:
> 
>  Maxime> The libc of the avr32 toolchains seem to lack the timerfd-associated
>  Maxime> functions.
> 
>  Maxime> Pass --disable-timerfd to libusb configure script when building for
>  Maxime> avr32.
> 
>  Maxime> Fixes most of the recent avr32 breakages, such as
>  Maxime> http://autobuild.buildroot.org/results/f418b6c0b026891c27467f61444b6eac8c105681
>  Maxime> or
>  Maxime> http://autobuild.buildroot.org/results/1a9e571998bc0a40822dca84267abbdd969bab5e
> 
> Committed, thanks. Does this mean we can revert 2424cc6 (libhid: disable
> on avr32)?

Yes, from the build logs, it looks like it was the same error, so this
patch should fix it as well.

Maxime

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

^ permalink raw reply

* [Buildroot] [PATCH] AVR32: fix libusb build
From: Peter Korsgaard @ 2012-11-23  9:40 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353662196-3350-1-git-send-email-maxime.ripard@free-electrons.com>

>>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes:

 Maxime> The libc of the avr32 toolchains seem to lack the timerfd-associated
 Maxime> functions.

 Maxime> Pass --disable-timerfd to libusb configure script when building for
 Maxime> avr32.

 Maxime> Fixes most of the recent avr32 breakages, such as
 Maxime> http://autobuild.buildroot.org/results/f418b6c0b026891c27467f61444b6eac8c105681
 Maxime> or
 Maxime> http://autobuild.buildroot.org/results/1a9e571998bc0a40822dca84267abbdd969bab5e

Committed, thanks. Does this mean we can revert 2424cc6 (libhid: disable
on avr32)?

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] AVR32: fix libusb build
From: Peter Korsgaard @ 2012-11-23  9:40 UTC (permalink / raw)
  To: buildroot

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

The libc of the avr32 toolchains seem to lack the timerfd-associated
functions.

Pass --disable-timerfd to libusb configure script when building for
avr32.

Fixes most of the recent avr32 breakages, such as
http://autobuild.buildroot.org/results/f418b6c0b026891c27467f61444b6eac8c105681
or
http://autobuild.buildroot.org/results/1a9e571998bc0a40822dca84267abbdd969bab5e

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/libusb/libusb.mk |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/package/libusb/libusb.mk b/package/libusb/libusb.mk
index 06a1485..fc2f10b 100644
--- a/package/libusb/libusb.mk
+++ b/package/libusb/libusb.mk
@@ -11,5 +11,9 @@ LIBUSB_LICENSE_FILES = COPYING
 LIBUSB_DEPENDENCIES = host-pkgconf
 LIBUSB_INSTALL_STAGING = YES
 
+ifeq ($(BR2_avr32),y)
+LIBUSB_CONF_OPT += --disable-timerfd
+endif
+
 $(eval $(autotools-package))
 $(eval $(host-autotools-package))

^ 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