Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] libseccomp: Remove the use of /proc when installing pc files
From: Peter Korsgaard @ 2012-12-18  9:27 UTC (permalink / raw)
  To: buildroot

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

Fixes http://autobuild.buildroot.org/results/d9e12bb0f5b2df9064adf3772bcf479b51d72468

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 ...omp-0001-use-system-headers-from-sysroot.patch} |    0
 ...eccomp-0002-Remove-the-dependency-on-proc.patch |   42 ++++++++++++++++++++
 2 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/package/libseccomp/libseccomp-use-system-headers-from-sysroot.patch b/package/libseccomp/libseccomp-0001-use-system-headers-from-sysroot.patch
similarity index 100%
rename from package/libseccomp/libseccomp-use-system-headers-from-sysroot.patch
rename to package/libseccomp/libseccomp-0001-use-system-headers-from-sysroot.patch
diff --git a/package/libseccomp/libseccomp-0002-Remove-the-dependency-on-proc.patch b/package/libseccomp/libseccomp-0002-Remove-the-dependency-on-proc.patch
new file mode 100644
index 0000000..82ae44a
--- /dev/null
+++ b/package/libseccomp/libseccomp-0002-Remove-the-dependency-on-proc.patch
@@ -0,0 +1,42 @@
+From 58c34ae1343e2a452e08cd160936a231bcdb67a1 Mon Sep 17 00:00:00 2001
+From: Maxime Ripard <maxime.ripard@free-electrons.com>
+Date: Tue, 18 Dec 2012 09:57:47 +0100
+Subject: [PATCH] Remove the dependency on /proc
+
+The Makefile relied on a broken logic for the INSTALL_PC_MACRO.
+It was used like this: $(INSTALL_PC_MACRO) file.
+
+The INSTALL_PC_MACRO was then expanded with a trailing sharp, to pass
+the name of the file to install as a comment at the end of the command.
+
+And then, to retrieve the file to copy, it used the $NF variable of awk
+on the /proc/self/cmdline file to happily reinvent the argument
+mechanism.
+
+This patch removes of this crazy stuff by using the -t option of
+install, that keeps the same calling convention.
+
+Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
+---
+ macros.mk |    5 ++---
+ 1 file changed, 2 insertions(+), 3 deletions(-)
+
+diff --git a/macros.mk b/macros.mk
+index 6162900..eb61ead 100644
+--- a/macros.mk
++++ b/macros.mk
+@@ -150,9 +150,8 @@ endif
+ INSTALL_PC_MACRO += \
+ 		$(INSTALL) -o $(INSTALL_OWNER) -g $(INSTALL_GROUP) \
+ 			-d "$(INSTALL_LIB_DIR)/pkgconfig"; \
+-		$(INSTALL) -o $(INSTALL_OWNER) -g $(INSTALL_GROUP) -m 0644 \
+-			"$$(cat /proc/$$$$/cmdline | awk '{print $$(NF)}')" \
+-			"$(INSTALL_LIB_DIR)/pkgconfig"; \#
++		$(INSTALL) -t -o $(INSTALL_OWNER) -g $(INSTALL_GROUP) -m 0644 \
++			"$(INSTALL_LIB_DIR)/pkgconfig"
+ 
+ ifeq ($(V),0)
+ 	INSTALL_INC_MACRO = @echo " INSTALL $^ ($(INSTALL_INC_DIR))";
+-- 
+1.7.9.5
+

^ permalink raw reply related

* [Buildroot] allyespackageconfig build on ARM/Linaro
From: Peter Korsgaard @ 2012-12-18  9:24 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121218100954.2d59c70f@skate>

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

 Thomas> Hello,
 Thomas> Following Arnout's comment suggesting to try a allyespackageconfig
 Thomas> build on ARM with a Linaro external toolchain (to complement Arnout
 Thomas> excellent work on allyespackageconfig testing for x86-64), I did this
 Thomas> test yesterday and I have now have the results.

Great, thanks.

 Thomas> Here are my notes:

 Thomas>  * I've disabled JamVM and Classpath, because my testing chroot does
 Thomas>    not have javac. So those packages are not tested.

 Thomas>  * mplayer failed to build, so I had to disable it, and also disable
 Thomas>    libplayer, which was selecting mplayer. The mplayer build failure is
 Thomas>    FPU related:

Sounds related to the mplayer/fpu discussion we had fairly recently.


 Thomas>  * ltp-testsuite fails to build (build failures already seen with the
 Thomas>    autobuilders):

 Thomas> common.c: In function 'create_net_namespace':
 Thomas> common.c:64:17: error: 'CLONE_NEWNS' undeclared (first use in this function)
 Thomas> common.c:64:17: note: each undeclared identifier is reported only once for each function it appears in
 Thomas> common.c: In function 'child_fn':
 Thomas> common.c:124:11: error: 'CLONE_NEWNS' undeclared (first use in this function)
 Thomas> common.c:127:11: error: 'CLONE_FS' undeclared (first use in this function)

Odd, CLONE_NEWNS has existing for many years and common.c seems to
include sched.h


 Thomas>  * pcmanfm failed to build:

 Thomas> /home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: fm-desktop.o: undefined reference to symbol 'XSendEvent'
 Thomas> /home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: note: 'XSendEvent' is defined in DSO /home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libX11.so.6 so try adding it to the linker command line
 Thomas> /home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libX11.so.6: could not read symbols: Invalid operation
 Thomas> collect2: error: ld returned 1 exit status
 Thomas> make[4]: *** [pcmanfm] Error 1

Strange about all these linker issues.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH] libseccomp: Remove the use of /proc when installing pc files
From: Thomas Petazzoni @ 2012-12-18  9:24 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355822075-25703-1-git-send-email-maxime.ripard@free-electrons.com>



On Tue, 18 Dec 2012 10:14:35 +0100, Maxime Ripard wrote:
> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>

This patch fixes
http://autobuild.buildroot.org/results/d9e12bb0f5b2df9064adf3772bcf479b51d72468/build-end.log

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

^ permalink raw reply

* [Buildroot] [PATCH] libseccomp: Remove the use of /proc when installing pc files
From: Maxime Ripard @ 2012-12-18  9:14 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
---
 ...omp-0001-use-system-headers-from-sysroot.patch} |    0
 ...eccomp-0002-Remove-the-dependency-on-proc.patch |   42 ++++++++++++++++++++
 2 files changed, 42 insertions(+)
 rename package/libseccomp/{libseccomp-use-system-headers-from-sysroot.patch => libseccomp-0001-use-system-headers-from-sysroot.patch} (100%)
 create mode 100644 package/libseccomp/libseccomp-0002-Remove-the-dependency-on-proc.patch

diff --git a/package/libseccomp/libseccomp-use-system-headers-from-sysroot.patch b/package/libseccomp/libseccomp-0001-use-system-headers-from-sysroot.patch
similarity index 100%
rename from package/libseccomp/libseccomp-use-system-headers-from-sysroot.patch
rename to package/libseccomp/libseccomp-0001-use-system-headers-from-sysroot.patch
diff --git a/package/libseccomp/libseccomp-0002-Remove-the-dependency-on-proc.patch b/package/libseccomp/libseccomp-0002-Remove-the-dependency-on-proc.patch
new file mode 100644
index 0000000..82ae44a
--- /dev/null
+++ b/package/libseccomp/libseccomp-0002-Remove-the-dependency-on-proc.patch
@@ -0,0 +1,42 @@
+From 58c34ae1343e2a452e08cd160936a231bcdb67a1 Mon Sep 17 00:00:00 2001
+From: Maxime Ripard <maxime.ripard@free-electrons.com>
+Date: Tue, 18 Dec 2012 09:57:47 +0100
+Subject: [PATCH] Remove the dependency on /proc
+
+The Makefile relied on a broken logic for the INSTALL_PC_MACRO.
+It was used like this: $(INSTALL_PC_MACRO) file.
+
+The INSTALL_PC_MACRO was then expanded with a trailing sharp, to pass
+the name of the file to install as a comment at the end of the command.
+
+And then, to retrieve the file to copy, it used the $NF variable of awk
+on the /proc/self/cmdline file to happily reinvent the argument
+mechanism.
+
+This patch removes of this crazy stuff by using the -t option of
+install, that keeps the same calling convention.
+
+Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
+---
+ macros.mk |    5 ++---
+ 1 file changed, 2 insertions(+), 3 deletions(-)
+
+diff --git a/macros.mk b/macros.mk
+index 6162900..eb61ead 100644
+--- a/macros.mk
++++ b/macros.mk
+@@ -150,9 +150,8 @@ endif
+ INSTALL_PC_MACRO += \
+ 		$(INSTALL) -o $(INSTALL_OWNER) -g $(INSTALL_GROUP) \
+ 			-d "$(INSTALL_LIB_DIR)/pkgconfig"; \
+-		$(INSTALL) -o $(INSTALL_OWNER) -g $(INSTALL_GROUP) -m 0644 \
+-			"$$(cat /proc/$$$$/cmdline | awk '{print $$(NF)}')" \
+-			"$(INSTALL_LIB_DIR)/pkgconfig"; \#
++		$(INSTALL) -t -o $(INSTALL_OWNER) -g $(INSTALL_GROUP) -m 0644 \
++			"$(INSTALL_LIB_DIR)/pkgconfig"
+ 
+ ifeq ($(V),0)
+ 	INSTALL_INC_MACRO = @echo " INSTALL $^ ($(INSTALL_INC_DIR))";
+-- 
+1.7.9.5
+
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] buildroot at FOSDEM
From: Thomas Petazzoni @ 2012-12-18  9:10 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <ac6d1334-7549-4547-9e31-27df02cf7178@zimbra2.corp.accelance.fr>

Dear Jeremy Rosen,

On Tue, 18 Dec 2012 10:05:46 +0100 (CET), Jeremy Rosen wrote:
> isn't there a specific embedded track ?
> 
> buildroot would probably better fit in there, no ?

There is indeed an embedded track. I think that Arnout tries to submit
talks in other tracks, to get Buildroot known a bit beyond the
traditional crowd that goes to the embedded track. You know, world
domination plans :-)

Best regards,

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

^ permalink raw reply

* [Buildroot] allyespackageconfig build on ARM/Linaro
From: Thomas Petazzoni @ 2012-12-18  9:09 UTC (permalink / raw)
  To: buildroot

Hello,

Following Arnout's comment suggesting to try a allyespackageconfig
build on ARM with a Linaro external toolchain (to complement Arnout
excellent work on allyespackageconfig testing for x86-64), I did this
test yesterday and I have now have the results.

Here are my notes:

 * I've disabled JamVM and Classpath, because my testing chroot does
   not have javac. So those packages are not tested.

 * mplayer failed to build, so I had to disable it, and also disable
   libplayer, which was selecting mplayer. The mplayer build failure is
   FPU related:

{standard input}: Assembler messages:
{standard input}:2855: Error: selected FPU does not support instruction -- `vmul.f32 q0,q0,q1'
{standard input}:2949: Error: selected processor does not support ARM mode `veor q0,q0,q2'
{standard input}:2950: Error: selected FPU does not support instruction -- `vmul.f32 q0,q0,q1'
{standard input}:3021: Error: selected FPU does not support instruction -- `vmul.f32 d0,d0,d1'
{standard input}:3104: Error: selected processor does not support ARM mode `veor d0,d0,d2'
{standard input}:3105: Error: selected FPU does not support instruction -- `vmul.f32 d0,d0,d1'
make[3]: *** [libavcodec/aacdec.o] Error 1
make[2]: *** [ffmpeg/libavcodec/libavcodec.a] Error 2
make[2]: *** Waiting for unfinished jobs....

 * ltp-testsuite fails to build (build failures already seen with the
   autobuilders):

common.c: In function 'create_net_namespace':
common.c:64:17: error: 'CLONE_NEWNS' undeclared (first use in this function)
common.c:64:17: note: each undeclared identifier is reported only once for each function it appears in
common.c: In function 'child_fn':
common.c:124:11: error: 'CLONE_NEWNS' undeclared (first use in this function)
common.c:127:11: error: 'CLONE_FS' undeclared (first use in this function)
common.c:147:2: warning: implicit declaration of function 'unshare' [-Wimplicit-function-declaration]
make[6]: *** [common.o] Error 1
make[5]: *** [all] Error 2
make[4]: *** [all] Error 2
make[3]: *** [all] Error 2
make[2]: *** [testcases-all] Error 2

 * matchbox-desktop failed to build:

/home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: mbdesktop.o: undefined reference to symbol 'dlsym@@GLIBC_2.4'
/home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: note: 'dlsym@@GLIBC_2.4' is defined in DSO /home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/lib/arm-linux-gnueabihf/libdl.so.2 so try adding it to the linker command line
/home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/lib/arm-linux-gnueabihf/libdl.so.2: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status
make[4]: *** [matchbox-desktop] Error 1
make[3]: *** [all-recursive] Error 1
make[2]: *** [all] Error 2
make[1]: *** [/home/test/outputs/allpkg/build/matchbox-desktop-0.9.1/.stamp_built] Error 2
make: *** [all] Error 2

 * metacity failed to build:

/home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: metacity-mag.o: undefined reference to symbol 'lrint@@GLIBC_2.4'
/home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: note: 'lrint@@GLIBC_2.4' is defined in DSO /home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/lib/arm-linux-gnueabihf/libm.so.6 so try adding it to the linker command line
/home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/lib/arm-linux-gnueabihf/libm.so.6: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status
make[6]: *** [metacity-mag] Error 1
make[6]: *** Waiting for unfinished jobs....

 * pcmanfm failed to build:

/home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: fm-desktop.o: undefined reference to symbol 'XSendEvent'
/home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: note: 'XSendEvent' is defined in DSO /home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libX11.so.6 so try adding it to the linker command line
/home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libX11.so.6: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status
make[4]: *** [pcmanfm] Error 1

 * sconeserver failed to build (still the ImageMagick++ problem):

checking for InitializeMagick in -lMagick++... no
configure: error: library 'Magick++' is required for Sconesite:image
make[1]: *** [/home/test/outputs/allpkg/build/sconeserver-183/.stamp_configured] Error 1
make: *** [all] Error 2

 * valgrind failed to build (due to glibc 2.16):

checking the GLIBC_VERSION version... unsupported version 2.15
configure: error: Valgrind requires glibc version 2.2 - 2.14
make[1]: *** [/home/test/outputs/allpkg/build/valgrind-3.7.0/.stamp_configured] Error 1
make: *** [all] Error 2

 * xstroke failed to build

/home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: backing.o: undefined reference to symbol 'XRenderComposite'
/home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: note: 'XRenderComposite' is defined in DSO /home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libXrender.so.1 so try adding it to the linker command line
/home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libXrender.so.1: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status

Best regards,

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

^ permalink raw reply

* [Buildroot] buildroot at FOSDEM
From: Jeremy Rosen @ 2012-12-18  9:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121218093839.5c356646@skate>

isn't there a specific embedded track ?

buildroot would probably better fit in there, no ?

    Cordialement

    J?r?my Rosen

fight key loggers : write some perl using vim

----- Mail original -----
> De: "Thomas Petazzoni" <thomas.petazzoni@free-electrons.com>
> ?: "Arnout Vandecappelle" <arnout@mind.be>
> Cc: buildroot at busybox.net
> Envoy?: Mardi 18 D?cembre 2012 09:38:39
> Objet: Re: [Buildroot] buildroot at FOSDEM
> 
> Dear Arnout Vandecappelle,
> 
> On Tue, 18 Dec 2012 09:02:15 +0100, Arnout Vandecappelle wrote:
> 
> >   Deadlines for FOSDEM are approaching fast (i.e., this Thursday or
> > Friday). There are a few devrooms where a buildroot presentation
> > would fit:
> > 
> > - Community Development and Marketing: 5, 15 or 30 minute
> > presentation about the community process of buildroot.
> > 
> > - Cross-distro devroom: buildroot as a distro, 30 or 60 minutes.
> > 
> > - Testing and Automation devroom: the buildroot autobuilder concept
> > in 10 or 30 minutes.
> > 
> >   Any takers?
> 
> Does it really fit in the "Cross-distro devroom" ? I guess by "Cross"
> they don't mean "cross-compilation", but rather exchanges between
> distributions such as Gentoo, Fedora, Ubuntu, etc. Does Buildroot
> really fit in the middle of those discussions? I believe we have
> quite
> different use cases, needs, requirements, etc.
> 
> But in any case, I'm definitely interested in proposing a talk
> related
> to Buildroot. Let's sync on how's going to propose what.
> 
> Thomas
> --
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
> 

^ permalink raw reply

* [Buildroot] [PATCH] sg3-utils new package.
From: Thomas Petazzoni @ 2012-12-18  9:03 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAAfyv37=U0YtKsNkoCxTA2iRAXwgTETrcuOPWXmvNasnOqZaSA@mail.gmail.com>

Dear Belisko Marek,

On Tue, 18 Dec 2012 09:52:41 +0100, Belisko Marek wrote:

> > Hum, why is this needed? Does sg3_utils installs some libraries or
> > headers that are useful for other packages?
> I'm working on adding udisks to buildroot and udisks have dependency on
> sg3-utils library so this is the reason why installing to staging.

Ok. A comment just before the _INSTALL_STAGING line would be useful,
then, because for a "utils" package, we don't necessarily expect to
have a library in it.

> I've read somewhere on ML you was working also on udisks package.
> Was it successful?

It was a looong time ago. I think I managed to get udisks to build, but
I hadn't had the time to do some real testing with it: I was first
doing some testing of polkit, which is a dependency of udisks.

I've put online the 3 patches I had done at that time (note that they
are old: they still use the old AUTOTARGETS macro name), see:
http://free-electrons.com/~thomas/pub/udisks-buildroot/

Best regards,

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

^ permalink raw reply

* [Buildroot] [PATCH] sg3-utils new package.
From: Belisko Marek @ 2012-12-18  8:52 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121218094835.688afe2c@skate>

Hi Thomas,

On Tue, Dec 18, 2012 at 9:48 AM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Dear Marek Belisko,
>
> On Mon, 17 Dec 2012 21:35:46 +0100, Marek Belisko wrote:
>
>> +SG3_UTILS_INSTALL_STAGING = YES
>
> Hum, why is this needed? Does sg3_utils installs some libraries or
> headers that are useful for other packages?
I'm working on adding udisks to buildroot and udisks have dependency on
sg3-utils library so this is the reason why installing to staging.
I've read somewhere on ML you was working also on udisks package.
Was it successful?
>
> Thanks,
>
> Thomas
> --
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com

Cheers,

mbe

-- 
as simple and primitive as possible
-------------------------------------------------
Marek Belisko - OPEN-NANDRA
Freelance Developer

Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
Tel: +421 915 052 184
skype: marekwhite
twitter: #opennandra
web: http://open-nandra.com

^ permalink raw reply

* [Buildroot] [PATCH] sg3-utils new package.
From: Thomas Petazzoni @ 2012-12-18  8:48 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355776546-25189-1-git-send-email-marek.belisko@open-nandra.com>

Dear Marek Belisko,

On Mon, 17 Dec 2012 21:35:46 +0100, Marek Belisko wrote:

> +SG3_UTILS_INSTALL_STAGING = YES

Hum, why is this needed? Does sg3_utils installs some libraries or
headers that are useful for other packages?

Thanks,

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

^ permalink raw reply

* [Buildroot] buildroot at FOSDEM
From: Thomas Petazzoni @ 2012-12-18  8:38 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50D02307.2010906@mind.be>

Dear Arnout Vandecappelle,

On Tue, 18 Dec 2012 09:02:15 +0100, Arnout Vandecappelle wrote:

>   Deadlines for FOSDEM are approaching fast (i.e., this Thursday or 
> Friday). There are a few devrooms where a buildroot presentation
> would fit:
> 
> - Community Development and Marketing: 5, 15 or 30 minute
> presentation about the community process of buildroot.
> 
> - Cross-distro devroom: buildroot as a distro, 30 or 60 minutes.
> 
> - Testing and Automation devroom: the buildroot autobuilder concept
> in 10 or 30 minutes.
> 
>   Any takers?

Does it really fit in the "Cross-distro devroom" ? I guess by "Cross"
they don't mean "cross-compilation", but rather exchanges between
distributions such as Gentoo, Fedora, Ubuntu, etc. Does Buildroot
really fit in the middle of those discussions? I believe we have quite
different use cases, needs, requirements, etc.

But in any case, I'm definitely interested in proposing a talk related
to Buildroot. Let's sync on how's going to propose what.

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

^ permalink raw reply

* [Buildroot] [PATCH] libglib2: fix g_print()
From: Peter Korsgaard @ 2012-12-18  8:38 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355774740-28679-1-git-send-email-benoit.thebaudeau@advansee.com>

>>>>> "Beno?t" == Beno?t Th?baudeau <benoit.thebaudeau@advansee.com> writes:

 Beno?t> If GLib is cross-compiled, the default printf settings that it
 Beno?t> selects are wrong for glibc. This leads to issues with the
 Beno?t> g_print() functions, e.g. "Aborted" errors returned by
 Beno?t> gst-inspect.

 Beno?t> This patch fixes this issue by setting printf configuration
 Beno?t> options compatible with glibc. These options should also be
 Beno?t> compatible with uClibc.

 Beno?t> This solution has been suggested for LTIB by Rogerio Nunes:
 Beno?t> https://community.freescale.com/thread/302734

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] libglib2: fix g_print()
From: Peter Korsgaard @ 2012-12-18  8:37 UTC (permalink / raw)
  To: buildroot

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

If GLib is cross-compiled, the default printf settings that it selects are wrong
for glibc. This leads to issues with the g_print() functions, e.g. "Aborted"
errors returned by gst-inspect.

This patch fixes this issue by setting printf configuration options compatible
with glibc. These options should also be compatible with uClibc.

This solution has been suggested for LTIB by Rogerio Nunes:
https://community.freescale.com/thread/302734

Signed-off-by: Beno??t Th??baudeau <benoit.thebaudeau@advansee.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/libglib2/libglib2.mk |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/package/libglib2/libglib2.mk b/package/libglib2/libglib2.mk
index 4427431..c3e510b 100644
--- a/package/libglib2/libglib2.mk
+++ b/package/libglib2/libglib2.mk
@@ -40,7 +40,8 @@ LIBGLIB2_CONF_ENV = \
 		ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
 		ac_use_included_regex=no gl_cv_c_restrict=no \
 		ac_cv_path_GLIB_GENMARSHAL=$(HOST_DIR)/usr/bin/glib-genmarshal ac_cv_prog_F77=no \
-		ac_cv_func_posix_getgrgid_r=no \
+		ac_cv_func_posix_getgrgid_r=no glib_cv_long_long_format=ll \
+		ac_cv_func_printf_unix98=yes ac_cv_func_vsnprintf_c99=yes \
 		gt_cv_c_wchar_t=$(if $(BR2_USE_WCHAR),yes,no)
 
 # old uClibc versions don't provide qsort_r

^ permalink raw reply related

* [Buildroot] [PATCH] libglib2: fix g_print()
From: Arnout Vandecappelle @ 2012-12-18  8:29 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355774740-28679-1-git-send-email-benoit.thebaudeau@advansee.com>

On 17/12/12 21:05, Beno?t Th?baudeau wrote:
> If GLib is cross-compiled, the default printf settings that it selects are wrong
> for glibc. This leads to issues with the g_print() functions, e.g. "Aborted"
> errors returned by gst-inspect.
>
> This patch fixes this issue by setting printf configuration options compatible
> with glibc. These options should also be compatible with uClibc.
>
> This solution has been suggested for LTIB by Rogerio Nunes:
> https://community.freescale.com/thread/302734
>
> Signed-off-by: Beno?t Th?baudeau<benoit.thebaudeau@advansee.com>

Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
  (fixes our aborts when doing gst-inspect on an i.MX6 platform)

  Regards,
  Arnout

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

^ permalink raw reply

* [Buildroot] buildroot at FOSDEM
From: Arnout Vandecappelle @ 2012-12-18  8:02 UTC (permalink / raw)
  To: buildroot

  Hi all,

  Deadlines for FOSDEM are approaching fast (i.e., this Thursday or 
Friday). There are a few devrooms where a buildroot presentation would fit:

- Community Development and Marketing: 5, 15 or 30 minute presentation 
about the community process of buildroot.

- Cross-distro devroom: buildroot as a distro, 30 or 60 minutes.

- Testing and Automation devroom: the buildroot autobuilder concept in 10 
or 30 minutes.

  Any takers?

  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 RESEND 2/2] wpa_supplicant: rework .config file editing
From: Arnout Vandecappelle @ 2012-12-18  7:52 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355817167-10100-1-git-send-email-arnout@mind.be>

From: Sven Neumann <s.neumann@raumfeld.com>

Do all substitutions on the .config file in a single sed command.
Make the .config file editing a lot more readable. Based on ideas
brought up by Arnout Vandecappelle on the mailing-list.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 (build-test with all features enabled)
---
 package/wpa_supplicant/wpa_supplicant.mk |  109 +++++++++++-------------------
 1 file changed, 41 insertions(+), 68 deletions(-)

diff --git a/package/wpa_supplicant/wpa_supplicant.mk b/package/wpa_supplicant/wpa_supplicant.mk
index 3118913..c1ef11a 100644
--- a/package/wpa_supplicant/wpa_supplicant.mk
+++ b/package/wpa_supplicant/wpa_supplicant.mk
@@ -15,68 +15,61 @@ WPA_SUPPLICANT_DBUS_NEW_SERVICE = fi.w1.wpa_supplicant1
 WPA_SUPPLICANT_CFLAGS = $(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/libnl3/
 WPA_SUPPLICANT_LDFLAGS = $(TARGET_LDFLAGS)
 
+WPA_SUPPLICANT_CONFIG_EDITS =
+
+WPA_SUPPLICANT_CONFIG_SET =
+
+WPA_SUPPLICANT_CONFIG_ENABLE = \
+	CONFIG_IEEE80211N	\
+	CONFIG_IEEE80211R	\
+	CONFIG_INTERWORKING	\
+	CONFIG_DELAYED_MIC	\
+	CONFIG_INTERNAL_LIBTOMMATH
+
+WPA_SUPPLICANT_CONFIG_DISABLE = \
+	CONFIG_DRIVER_ATMEL	\
+	CONFIG_SMARTCARD
+
 ifeq ($(BR2_PACKAGE_LIBNL),y)
 	WPA_SUPPLICANT_DEPENDENCIES += libnl
-define WPA_SUPPLICANT_LIBNL_CONFIG
-	echo 'CONFIG_LIBNL32=y' >>$(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_SET += CONFIG_LIBNL32
 else
-define WPA_SUPPLICANT_LIBNL_CONFIG
-	$(SED) 's/^\(CONFIG_DRIVER_NL80211.*\)/#\1/' $(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_DISABLE += CONFIG_DRIVER_NL80211
 endif
 
 ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_EAP),y)
-define WPA_SUPPLICANT_EAP_CONFIG
-	$(SED) 's/\(#\)\(CONFIG_EAP_AKA.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_EAP_FAST.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_EAP_GPSK.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_EAP_IKEV2.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_EAP_PAX.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_EAP_PSK.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_EAP_SAKE.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_EAP_SIM.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_EAP_TNC.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_EAP_AKA		\
+					CONFIG_EAP_FAST		\
+					CONFIG_EAP_GPSK 	\
+					CONFIG_EAP_IKEV2	\
+					CONFIG_EAP_PAX		\
+					CONFIG_EAP_PSK		\
+					CONFIG_EAP_SAKE		\
+					CONFIG_EAP_SIM		\
+					CONFIG_EAP_TNC
 else
-define WPA_SUPPLICANT_EAP_CONFIG
-	$(SED) 's/^\(CONFIG_EAP.*\)/#\1/' $(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_DISABLE += CONFIG_EAP
 endif
 
 ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT),y)
-define WPA_SUPPLICANT_AP_CONFIG
-	echo 'CONFIG_AP=y' >>$(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_SET += CONFIG_AP
 endif
 
 ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_WPS),y)
-define WPA_SUPPLICANT_WPS_CONFIG
-	$(SED) 's/\(#\)\(CONFIG_WPS.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_WPS
 endif
 
-define WPA_SUPPLICANT_LIBTOMMATH_CONFIG
-	$(SED) 's/\(#\)\(CONFIG_INTERNAL_LIBTOMMATH.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-endef
-
 # Try to use openssl or gnutls if it's already available
 ifeq ($(BR2_PACKAGE_OPENSSL),y)
 	WPA_SUPPLICANT_DEPENDENCIES += openssl
-define WPA_SUPPLICANT_TLS_CONFIG
-	$(SED) 's/\(#\)\(CONFIG_TLS=openssl\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_EAP_PWD.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_EDITS += 's/\#\(CONFIG_TLS=openssl\)/\1/'
+	WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_EAP_PWD
 else
 ifeq ($(BR2_PACKAGE_GNUTLS),y)
 	WPA_SUPPLICANT_DEPENDENCIES += gnutls
-define WPA_SUPPLICANT_TLS_CONFIG
-	$(SED) 's/\(#\)\(CONFIG_TLS=\).*/\2gnutls/' $(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_EDITS += 's/\#\(CONFIG_TLS=\).*/\1gnutls/'
 else
-define WPA_SUPPLICANT_TLS_CONFIG
-	$(SED) 's/\(#\)\(CONFIG_TLS=\).*/\2internal/' $(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_EDITS += 's/\#\(CONFIG_TLS=\).*/\1internal/'
 endif
 endif
 
@@ -87,9 +80,7 @@ ifeq ($(BR2_PACKAGE_DBUS),y)
 		PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig"
 
 ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD),y)
-define WPA_SUPPLICANT_DBUS_OLD_CONFIG
-	$(SED) 's/\(#\)\(CONFIG_CTRL_IFACE_DBUS=\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_CTRL_IFACE_DBUS=
 define WPA_SUPPLICANT_INSTALL_DBUS_OLD
 	$(INSTALL) -D \
 	  $(@D)/wpa_supplicant/dbus/$(WPA_SUPPLICANT_DBUS_OLD_SERVICE).service \
@@ -98,9 +89,7 @@ endef
 endif
 
 ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW),y)
-define WPA_SUPPLICANT_DBUS_NEW_CONFIG
-	$(SED) 's/\(#\)\(CONFIG_CTRL_IFACE_DBUS_NEW=\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_CTRL_IFACE_DBUS_NEW
 define WPA_SUPPLICANT_INSTALL_DBUS_NEW
 	$(INSTALL) -D \
 	  $(@D)/wpa_supplicant/dbus/$(WPA_SUPPLICANT_DBUS_NEW_SERVICE).service \
@@ -109,34 +98,18 @@ endef
 endif
 
 ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_DBUS_INTROSPECTION),y)
-define WPA_SUPPLICANT_DBUS_INTROSPECTION_CONFIG
-	$(SED) 's/\(#\)\(CONFIG_CTRL_IFACE_DBUS_INTRO=\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-endef
+	WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_CTRL_IFACE_DBUS_INTRO
 endif
 
-define WPA_SUPPLICANT_DBUS_CONFIG
-	$(WPA_SUPPLICANT_DBUS_OLD_CONFIG)
-	$(WPA_SUPPLICANT_DBUS_NEW_CONFIG)
-	$(WPA_SUPPLICANT_DBUS_INTROSPECTION_CONFIG)
-endef
-
 endif
 
 define WPA_SUPPLICANT_CONFIGURE_CMDS
 	cp $(@D)/wpa_supplicant/defconfig $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_IEEE80211N.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_IEEE80211R.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_INTERWORKING.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(#\)\(CONFIG_DELAYED_MIC.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(CONFIG_DRIVER_ATMEL\)/#\1/' $(WPA_SUPPLICANT_CONFIG)
-	$(SED) 's/\(CONFIG_SMARTCARD\)/#\1/' $(WPA_SUPPLICANT_CONFIG)
-	$(WPA_SUPPLICANT_LIBTOMMATH_CONFIG)
-	$(WPA_SUPPLICANT_TLS_CONFIG)
-	$(WPA_SUPPLICANT_EAP_CONFIG)
-	$(WPA_SUPPLICANT_WPS_CONFIG)
-	$(WPA_SUPPLICANT_LIBNL_CONFIG)
-	$(WPA_SUPPLICANT_DBUS_CONFIG)
-	$(WPA_SUPPLICANT_AP_CONFIG)
+	sed -i $(patsubst %,-e 's/^\(%\)/#\1/',$(WPA_SUPPLICANT_CONFIG_DISABLE)) \
+	       $(patsubst %,-e 's/^#\(%\)/\1/',$(WPA_SUPPLICANT_CONFIG_ENABLE)) \
+	       $(patsubst %,-e '1i%=y',$(WPA_SUPPLICANT_CONFIG_SET)) \
+	       $(patsubst %,-e %,$(WPA_SUPPLICANT_CONFIG_EDITS)) \
+	       $(WPA_SUPPLICANT_CONFIG)
 endef
 
 define WPA_SUPPLICANT_BUILD_CMDS
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCH RESEND 1/2] wpa-supplicant: add options to enable the new DBus interface
From: Arnout Vandecappelle @ 2012-12-18  7:52 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50D013FC.7040503@mind.be>

From: Sven Neumann <s.neumann@raumfeld.com>

Allow to configure the DBus interfaces that the wpa_supplicant
binary should support (old or new or both). Also allow to
enable introspection support on the new DBus interface.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 (build-test with all features enabled)
---
 package/wpa_supplicant/Config.in         |   19 ++++++++++++++
 package/wpa_supplicant/wpa_supplicant.mk |   42 ++++++++++++++++++++++++++----
 2 files changed, 56 insertions(+), 5 deletions(-)

diff --git a/package/wpa_supplicant/Config.in b/package/wpa_supplicant/Config.in
index d7cefe3..8b0b366 100644
--- a/package/wpa_supplicant/Config.in
+++ b/package/wpa_supplicant/Config.in
@@ -30,6 +30,25 @@ config BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT
 	  (optionally, with WPS); this links in parts of hostapd functionality
 	  into wpa_supplicant.
 
+config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD
+	bool "Enable support for old DBus control interface"
+	depends on BR2_PACKAGE_DBUS
+	help
+	  Enable support for old DBus control interface
+	  (fi.epitest.hostap.WPASupplicant).
+
+config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW
+	bool "Enable support for new DBus control interface"
+	depends on BR2_PACKAGE_DBUS
+	help
+	  Enable support for new DBus control interface (fi.w1.wpa_supplicant1).
+
+config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_INTROSPECTION
+	bool "Introspection support"
+	depends on BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW
+	help
+	  Add introspection support for new DBus control interface.
+
 config BR2_PACKAGE_WPA_SUPPLICANT_WPS
 	bool "Enable support for WPS"
 	help
diff --git a/package/wpa_supplicant/wpa_supplicant.mk b/package/wpa_supplicant/wpa_supplicant.mk
index 71be11f..3118913 100644
--- a/package/wpa_supplicant/wpa_supplicant.mk
+++ b/package/wpa_supplicant/wpa_supplicant.mk
@@ -10,7 +10,8 @@ WPA_SUPPLICANT_LICENSE = GPLv2/BSD-3c
 WPA_SUPPLICANT_LICENSE_FILES = README
 WPA_SUPPLICANT_CONFIG = $(WPA_SUPPLICANT_DIR)/wpa_supplicant/.config
 WPA_SUPPLICANT_SUBDIR = wpa_supplicant
-WPA_SUPPLICANT_DBUS_SERVICE = fi.epitest.hostap.WPASupplicant
+WPA_SUPPLICANT_DBUS_OLD_SERVICE = fi.epitest.hostap.WPASupplicant
+WPA_SUPPLICANT_DBUS_NEW_SERVICE = fi.w1.wpa_supplicant1
 WPA_SUPPLICANT_CFLAGS = $(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/libnl3/
 WPA_SUPPLICANT_LDFLAGS = $(TARGET_LDFLAGS)
 
@@ -84,9 +85,41 @@ ifeq ($(BR2_PACKAGE_DBUS),y)
 	WPA_SUPPLICANT_MAKE_ENV = \
 		PKG_CONFIG_SYSROOT_DIR="$(STAGING_DIR)"	\
 		PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig"
-define WPA_SUPPLICANT_DBUS_CONFIG
+
+ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD),y)
+define WPA_SUPPLICANT_DBUS_OLD_CONFIG
 	$(SED) 's/\(#\)\(CONFIG_CTRL_IFACE_DBUS=\)/\2/' $(WPA_SUPPLICANT_CONFIG)
 endef
+define WPA_SUPPLICANT_INSTALL_DBUS_OLD
+	$(INSTALL) -D \
+	  $(@D)/wpa_supplicant/dbus/$(WPA_SUPPLICANT_DBUS_OLD_SERVICE).service \
+	  $(TARGET_DIR)/usr/share/dbus-1/system-services/$(WPA_SUPPLICANT_DBUS_OLD_SERVICE).service
+endef
+endif
+
+ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW),y)
+define WPA_SUPPLICANT_DBUS_NEW_CONFIG
+	$(SED) 's/\(#\)\(CONFIG_CTRL_IFACE_DBUS_NEW=\)/\2/' $(WPA_SUPPLICANT_CONFIG)
+endef
+define WPA_SUPPLICANT_INSTALL_DBUS_NEW
+	$(INSTALL) -D \
+	  $(@D)/wpa_supplicant/dbus/$(WPA_SUPPLICANT_DBUS_NEW_SERVICE).service \
+	  $(TARGET_DIR)/usr/share/dbus-1/system-services/$(WPA_SUPPLICANT_DBUS_NEW_SERVICE).service
+endef
+endif
+
+ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_DBUS_INTROSPECTION),y)
+define WPA_SUPPLICANT_DBUS_INTROSPECTION_CONFIG
+	$(SED) 's/\(#\)\(CONFIG_CTRL_IFACE_DBUS_INTRO=\)/\2/' $(WPA_SUPPLICANT_CONFIG)
+endef
+endif
+
+define WPA_SUPPLICANT_DBUS_CONFIG
+	$(WPA_SUPPLICANT_DBUS_OLD_CONFIG)
+	$(WPA_SUPPLICANT_DBUS_NEW_CONFIG)
+	$(WPA_SUPPLICANT_DBUS_INTROSPECTION_CONFIG)
+endef
+
 endif
 
 define WPA_SUPPLICANT_CONFIGURE_CMDS
@@ -131,9 +164,8 @@ define WPA_SUPPLICANT_INSTALL_DBUS
 	$(INSTALL) -D \
 	  $(@D)/wpa_supplicant/dbus/dbus-wpa_supplicant.conf \
 	  $(TARGET_DIR)/etc/dbus-1/system.d/wpa_supplicant.conf
-	$(INSTALL) -D \
-	  $(@D)/wpa_supplicant/dbus/$(WPA_SUPPLICANT_DBUS_SERVICE).service \
-	  $(TARGET_DIR)/usr/share/dbus-1/system-services/$(WPA_SUPPLICANT_DBUS_SERVICE).service
+	$(WPA_SUPPLICANT_INSTALL_DBUS_OLD)
+	$(WPA_SUPPLICANT_INSTALL_DBUS_NEW)
 endef
 endif
 
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCH] netatalk: fix 64-bit build
From: Peter Korsgaard @ 2012-12-18  7:38 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355780891-26657-1-git-send-email-arnout@mind.be>

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

 Arnout> From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
 Arnout> The configure script sets LD_LIBRARY_PATH to the staging directory,
 Arnout> which makes the `ls` that is called in one of the tests fail. Fix by
 Arnout> not setting LD_LIBRARY_PATH when cross-compiling.

 Arnout> The patch has been sent upstream.

 Arnout> Also remove the BDB_LIB variable: it isn't used.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] netatalk: fix 64-bit build
From: Peter Korsgaard @ 2012-12-18  7:37 UTC (permalink / raw)
  To: buildroot

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

The configure script sets LD_LIBRARY_PATH to the staging directory,
which makes the `ls` that is called in one of the tests fail. Fix by
not setting LD_LIBRARY_PATH when cross-compiling.

The patch has been sent upstream.

Also remove the BDB_LIB variable: it isn't used.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 ...setting-of-LD_LIBRARY_FLAGS-shlibpath_var.patch |   48 ++++++++++++++++++++
 package/netatalk/netatalk.mk                       |    4 +-
 2 files changed, 51 insertions(+), 1 deletions(-)

diff --git a/package/netatalk/netatalk-0001-Fix-setting-of-LD_LIBRARY_FLAGS-shlibpath_var.patch b/package/netatalk/netatalk-0001-Fix-setting-of-LD_LIBRARY_FLAGS-shlibpath_var.patch
new file mode 100644
index 0000000..01d5776
--- /dev/null
+++ b/package/netatalk/netatalk-0001-Fix-setting-of-LD_LIBRARY_FLAGS-shlibpath_var.patch
@@ -0,0 +1,48 @@
+From 60d100713b5289948e9cdf5b0646ff3cdd2c206b Mon Sep 17 00:00:00 2001
+From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
+Date: Mon, 17 Dec 2012 22:32:44 +0100
+Subject: [PATCH] Fix setting of LD_LIBRARY_FLAGS ($shlibpath_var).
+
+LD_LIBRARY_PATH should not be set when cross-compiling, because it
+adds the cross-libraries to the build's LD-path.
+
+Also the restoring of LD_LIBRARY_PATH was done incorrectly: it would
+set LD_LIBRARY_PATH=LD_LIBRARY_PATH.
+
+Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
+---
+ macros/db3-check.m4 |    6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/macros/db3-check.m4 b/macros/db3-check.m4
+index 902220b..d5a5446 100644
+--- a/macros/db3-check.m4
++++ b/macros/db3-check.m4
+@@ -94,7 +94,7 @@ if test "x$bdb_required" = "xyes"; then
+     savedldflags="$LDFLAGS"
+     savedcppflags="$CPPFLAGS"
+     savedlibs="$LIBS"
+-    saved_shlibpath_var=$shlibpath_var
++    eval saved_shlibpath_var=\$$shlibpath_var
+ 
+     dnl required BDB version: 4.6, because of cursor API change
+     DB_MAJOR_REQ=4
+@@ -148,7 +148,7 @@ if test "x$bdb_required" = "xyes"; then
+                         dnl -- LD_LIBRARY_PATH on many platforms. This will be fairly
+                         dnl -- portable hopefully. Reference:
+                         dnl -- http://lists.gnu.org/archive/html/autoconf/2009-03/msg00040.html
+-                        eval export $shlibpath_var=$bdblibdir
++                        test "$cross_compiling" = yes || eval export $shlibpath_var=$bdblibdir
+                         NETATALK_BDB_TRY_LINK
+                         eval export $shlibpath_var=$saved_shlibpath_var
+ 
+@@ -171,7 +171,7 @@ if test "x$bdb_required" = "xyes"; then
+                            CPPFLAGS="-I${bdbdir}/include${subdir} $CPPFLAGS"
+                            LDFLAGS="-L$bdblibdir $LDFLAGS"
+ 
+-                           eval export $shlibpath_var=$bdblibdir
++                           test "$cross_compiling" = yes || eval export $shlibpath_var=$bdblibdir
+                            NETATALK_BDB_TRY_LINK
+                            eval export $shlibpath_var=$saved_shlibpath_var
+ 
+-- 
diff --git a/package/netatalk/netatalk.mk b/package/netatalk/netatalk.mk
index 46355ce..243d3f7 100644
--- a/package/netatalk/netatalk.mk
+++ b/package/netatalk/netatalk.mk
@@ -7,8 +7,10 @@ NETATALK_VERSION = 3.0
 NETATALK_SITE = http://downloads.sourceforge.net/project/netatalk/netatalk/$(NETATALK_VERSION)
 NETATALK_SOURCE = netatalk-$(NETATALK_VERSION).tar.bz2
 
+NETATALK_AUTORECONF = YES
+
 NETATALK_DEPENDENCIES = host-pkgconf openssl berkeleydb libgcrypt libgpg-error
-NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99" BDB_LIB=$(STAGING_DIR)/usr/lib
+NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99"
 NETATALK_CONF_OPT += --with-cnid-cdb-backend \
 	--with-bdb=$(STAGING_DIR)/usr \
 	--disable-zeroconf \

^ permalink raw reply related

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


Hello,

On 2012-12-17, 178 random build tests have been done and
submitted on autobuild.buildroot.net.
 104 builds have been successful
 74 builds have failed

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

Build 1e27256d0e62f3a93c8e6276bbfeb1687b261892
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 00:02:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/1e27256d0e62f3a93c8e6276bbfeb1687b261892/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1e27256d0e62f3a93c8e6276bbfeb1687b261892/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1e27256d0e62f3a93c8e6276bbfeb1687b261892/config
Defconfig      : http://autobuild.buildroot.net/results/1e27256d0e62f3a93c8e6276bbfeb1687b261892/defconfig

Build 7f7e2d46542a685b93211f76ad063f8b2ba7b5e5
==============================================

Status         : NOK
Failure reason : spice-0.12.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 00:08:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/7f7e2d46542a685b93211f76ad063f8b2ba7b5e5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7f7e2d46542a685b93211f76ad063f8b2ba7b5e5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7f7e2d46542a685b93211f76ad063f8b2ba7b5e5/config
Defconfig      : http://autobuild.buildroot.net/results/7f7e2d46542a685b93211f76ad063f8b2ba7b5e5/defconfig

Build 1fa2cb42aa2119cffb544c94188e218c7d7132bb
==============================================

Status         : NOK
Failure reason : libnspr-4.8.7
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 00:11:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/1fa2cb42aa2119cffb544c94188e218c7d7132bb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1fa2cb42aa2119cffb544c94188e218c7d7132bb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1fa2cb42aa2119cffb544c94188e218c7d7132bb/config
Defconfig      : http://autobuild.buildroot.net/results/1fa2cb42aa2119cffb544c94188e218c7d7132bb/defconfig

Build 97457e1f57ebb9ff6b7c7bac360dfe55400c352b
==============================================

Status         : NOK
Failure reason : libseccomp-1.0.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 00:52:50
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/97457e1f57ebb9ff6b7c7bac360dfe55400c352b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/97457e1f57ebb9ff6b7c7bac360dfe55400c352b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/97457e1f57ebb9ff6b7c7bac360dfe55400c352b/config
Defconfig      : http://autobuild.buildroot.net/results/97457e1f57ebb9ff6b7c7bac360dfe55400c352b/defconfig

Build 348059614db287db92415a02bb95b1442f9d540c
==============================================

Status         : NOK
Failure reason : libseccomp-1.0.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 01:14:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/348059614db287db92415a02bb95b1442f9d540c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/348059614db287db92415a02bb95b1442f9d540c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/348059614db287db92415a02bb95b1442f9d540c/config
Defconfig      : http://autobuild.buildroot.net/results/348059614db287db92415a02bb95b1442f9d540c/defconfig

Build 71cfd65baa14eda08dbf9739bfc43108de7483d2
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 01:39:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/71cfd65baa14eda08dbf9739bfc43108de7483d2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/71cfd65baa14eda08dbf9739bfc43108de7483d2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/71cfd65baa14eda08dbf9739bfc43108de7483d2/config
Defconfig      : http://autobuild.buildroot.net/results/71cfd65baa14eda08dbf9739bfc43108de7483d2/defconfig

Build 83a0abb21f3e09ef77c4b4c75bbfd11fc9305f32
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 01:39:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/83a0abb21f3e09ef77c4b4c75bbfd11fc9305f32/build-end.log
Complete log   : http://autobuild.buildroot.net/results/83a0abb21f3e09ef77c4b4c75bbfd11fc9305f32/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/83a0abb21f3e09ef77c4b4c75bbfd11fc9305f32/config
Defconfig      : http://autobuild.buildroot.net/results/83a0abb21f3e09ef77c4b4c75bbfd11fc9305f32/defconfig

Build d72a3c724a177dce839d1e944bdc6104da090379
==============================================

Status         : NOK
Failure reason : libseccomp-1.0.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-17 01:42:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/d72a3c724a177dce839d1e944bdc6104da090379/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d72a3c724a177dce839d1e944bdc6104da090379/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d72a3c724a177dce839d1e944bdc6104da090379/config
Defconfig      : http://autobuild.buildroot.net/results/d72a3c724a177dce839d1e944bdc6104da090379/defconfig

Build c2e42cabf78f2b715fb4b35d5feddc59e23ec27e
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 02:06:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/c2e42cabf78f2b715fb4b35d5feddc59e23ec27e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c2e42cabf78f2b715fb4b35d5feddc59e23ec27e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c2e42cabf78f2b715fb4b35d5feddc59e23ec27e/config
Defconfig      : http://autobuild.buildroot.net/results/c2e42cabf78f2b715fb4b35d5feddc59e23ec27e/defconfig

Build d7eaa784df8297946f11526728531057286020eb
==============================================

Status         : NOK
Failure reason : spice-0.12.0
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-17 02:30:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/d7eaa784df8297946f11526728531057286020eb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d7eaa784df8297946f11526728531057286020eb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d7eaa784df8297946f11526728531057286020eb/config
Defconfig      : http://autobuild.buildroot.net/results/d7eaa784df8297946f11526728531057286020eb/defconfig

Build 0e4e480e53b9ce8809b85e0977534c5982e88869
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 03:13:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/0e4e480e53b9ce8809b85e0977534c5982e88869/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0e4e480e53b9ce8809b85e0977534c5982e88869/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0e4e480e53b9ce8809b85e0977534c5982e88869/config
Defconfig      : http://autobuild.buildroot.net/results/0e4e480e53b9ce8809b85e0977534c5982e88869/defconfig

Build a83cead13ae17c9d5fbf230465696c4f86864272
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 03:19:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/a83cead13ae17c9d5fbf230465696c4f86864272/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a83cead13ae17c9d5fbf230465696c4f86864272/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a83cead13ae17c9d5fbf230465696c4f86864272/config
Defconfig      : http://autobuild.buildroot.net/results/a83cead13ae17c9d5fbf230465696c4f86864272/defconfig

Build 003b86e9c82ffdfb9ef592245320b640199b5425
==============================================

Status         : NOK
Failure reason : libseccomp-1.0.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-17 03:33:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/003b86e9c82ffdfb9ef592245320b640199b5425/build-end.log
Complete log   : http://autobuild.buildroot.net/results/003b86e9c82ffdfb9ef592245320b640199b5425/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/003b86e9c82ffdfb9ef592245320b640199b5425/config
Defconfig      : http://autobuild.buildroot.net/results/003b86e9c82ffdfb9ef592245320b640199b5425/defconfig

Build b25cb5dd2ce9b2630d85b90be6cb10526fde488d
==============================================

Status         : NOK
Failure reason : libseccomp-1.0.0
Architecture   : sh4a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 03:56:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/b25cb5dd2ce9b2630d85b90be6cb10526fde488d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b25cb5dd2ce9b2630d85b90be6cb10526fde488d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b25cb5dd2ce9b2630d85b90be6cb10526fde488d/config
Defconfig      : http://autobuild.buildroot.net/results/b25cb5dd2ce9b2630d85b90be6cb10526fde488d/defconfig

Build 2492a010d346aab04aa310dfe87ac074d739c983
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 05:25:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/2492a010d346aab04aa310dfe87ac074d739c983/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2492a010d346aab04aa310dfe87ac074d739c983/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2492a010d346aab04aa310dfe87ac074d739c983/config
Defconfig      : http://autobuild.buildroot.net/results/2492a010d346aab04aa310dfe87ac074d739c983/defconfig

Build 1ee1d6e593bcce62aa14bac9876b9e04ddf2c53e
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 05:46:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/1ee1d6e593bcce62aa14bac9876b9e04ddf2c53e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1ee1d6e593bcce62aa14bac9876b9e04ddf2c53e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1ee1d6e593bcce62aa14bac9876b9e04ddf2c53e/config
Defconfig      : http://autobuild.buildroot.net/results/1ee1d6e593bcce62aa14bac9876b9e04ddf2c53e/defconfig

Build e9f9644dbb79c79dbbfcb4b8efc5b0b0357cec9f
==============================================

Status         : NOK
Failure reason : cifs-utils-5.7
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 05:48:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/e9f9644dbb79c79dbbfcb4b8efc5b0b0357cec9f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e9f9644dbb79c79dbbfcb4b8efc5b0b0357cec9f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e9f9644dbb79c79dbbfcb4b8efc5b0b0357cec9f/config
Defconfig      : http://autobuild.buildroot.net/results/e9f9644dbb79c79dbbfcb4b8efc5b0b0357cec9f/defconfig

Build 2bd786ea5bd7822910b7afb34ceeb5f64ac0c8ff
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 05:53:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/2bd786ea5bd7822910b7afb34ceeb5f64ac0c8ff/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2bd786ea5bd7822910b7afb34ceeb5f64ac0c8ff/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2bd786ea5bd7822910b7afb34ceeb5f64ac0c8ff/config
Defconfig      : http://autobuild.buildroot.net/results/2bd786ea5bd7822910b7afb34ceeb5f64ac0c8ff/defconfig

Build d6ed04d666f94dc4fe950af9bc6d1f3f30960a3f
==============================================

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

Build f28c95da6a05cb4a610c89fb62e0e3c230f9ee2b
==============================================

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-17 06:17:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/f28c95da6a05cb4a610c89fb62e0e3c230f9ee2b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f28c95da6a05cb4a610c89fb62e0e3c230f9ee2b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f28c95da6a05cb4a610c89fb62e0e3c230f9ee2b/config
Defconfig      : http://autobuild.buildroot.net/results/f28c95da6a05cb4a610c89fb62e0e3c230f9ee2b/defconfig

Build 36fbda99bcddbce8b66c87ae5ee8d4f9105bd296
==============================================

Status         : NOK
Failure reason : spice-0.12.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-12-17 06:25:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
End of log     : http://autobuild.buildroot.net/results/36fbda99bcddbce8b66c87ae5ee8d4f9105bd296/build-end.log
Complete log   : http://autobuild.buildroot.net/results/36fbda99bcddbce8b66c87ae5ee8d4f9105bd296/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/36fbda99bcddbce8b66c87ae5ee8d4f9105bd296/config
Defconfig      : http://autobuild.buildroot.net/results/36fbda99bcddbce8b66c87ae5ee8d4f9105bd296/defconfig

Build b449cfa957586ffcdc9c4c7ec66472c0511ad8bf
==============================================

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

Build 76fd5a36385997da5df003e63301d9181e1e5b1b
==============================================

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

Build 92cd9ab583e76524778bf945cff070bff07db3e2
==============================================

Status         : NOK
Failure reason : libseccomp-1.0.0
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 07:51:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/92cd9ab583e76524778bf945cff070bff07db3e2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/92cd9ab583e76524778bf945cff070bff07db3e2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/92cd9ab583e76524778bf945cff070bff07db3e2/config
Defconfig      : http://autobuild.buildroot.net/results/92cd9ab583e76524778bf945cff070bff07db3e2/defconfig

Build 39b9d07c29efc236357945cf0329c697be7c396b
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 07:51:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/39b9d07c29efc236357945cf0329c697be7c396b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/39b9d07c29efc236357945cf0329c697be7c396b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/39b9d07c29efc236357945cf0329c697be7c396b/config
Defconfig      : http://autobuild.buildroot.net/results/39b9d07c29efc236357945cf0329c697be7c396b/defconfig

Build aba7872c3f77261e0f8a925e8b29ff862a36f703
==============================================

Status         : NOK
Failure reason : connman-1.9
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 08:06:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/aba7872c3f77261e0f8a925e8b29ff862a36f703/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aba7872c3f77261e0f8a925e8b29ff862a36f703/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aba7872c3f77261e0f8a925e8b29ff862a36f703/config
Defconfig      : http://autobuild.buildroot.net/results/aba7872c3f77261e0f8a925e8b29ff862a36f703/defconfig

Build aaada15a3bd9738071f119bdf28c78f9064c519b
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 08:25:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/aaada15a3bd9738071f119bdf28c78f9064c519b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aaada15a3bd9738071f119bdf28c78f9064c519b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aaada15a3bd9738071f119bdf28c78f9064c519b/config
Defconfig      : http://autobuild.buildroot.net/results/aaada15a3bd9738071f119bdf28c78f9064c519b/defconfig

Build 491505e4aebea2218081e5ba24bd41cab665745b
==============================================

Status         : NOK
Failure reason : spice-0.12.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 08:49:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/491505e4aebea2218081e5ba24bd41cab665745b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/491505e4aebea2218081e5ba24bd41cab665745b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/491505e4aebea2218081e5ba24bd41cab665745b/config
Defconfig      : http://autobuild.buildroot.net/results/491505e4aebea2218081e5ba24bd41cab665745b/defconfig

Build a212832cd98cd31e9b9e457e3bb0c9e7ea859855
==============================================

Status         : NOK
Failure reason : spice-0.12.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-17 08:49:50
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/a212832cd98cd31e9b9e457e3bb0c9e7ea859855/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a212832cd98cd31e9b9e457e3bb0c9e7ea859855/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a212832cd98cd31e9b9e457e3bb0c9e7ea859855/config
Defconfig      : http://autobuild.buildroot.net/results/a212832cd98cd31e9b9e457e3bb0c9e7ea859855/defconfig

Build 5b5bcceb1e20d56d482f75a4887a5683e6f013d2
==============================================

Status         : NOK
Failure reason : gpsd-3.7
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 09:01:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/5b5bcceb1e20d56d482f75a4887a5683e6f013d2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5b5bcceb1e20d56d482f75a4887a5683e6f013d2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5b5bcceb1e20d56d482f75a4887a5683e6f013d2/config
Defconfig      : http://autobuild.buildroot.net/results/5b5bcceb1e20d56d482f75a4887a5683e6f013d2/defconfig

Build eee490f4c93685430ba73b9ab3145dc077b78994
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 09:01:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/eee490f4c93685430ba73b9ab3145dc077b78994/build-end.log
Complete log   : http://autobuild.buildroot.net/results/eee490f4c93685430ba73b9ab3145dc077b78994/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/eee490f4c93685430ba73b9ab3145dc077b78994/config
Defconfig      : http://autobuild.buildroot.net/results/eee490f4c93685430ba73b9ab3145dc077b78994/defconfig

Build 308e7d226126941ee4acdbf5f5567e9d7f656ec0
==============================================

Status         : NOK
Failure reason : libseccomp-1.0.0
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 09:09:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/308e7d226126941ee4acdbf5f5567e9d7f656ec0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/308e7d226126941ee4acdbf5f5567e9d7f656ec0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/308e7d226126941ee4acdbf5f5567e9d7f656ec0/config
Defconfig      : http://autobuild.buildroot.net/results/308e7d226126941ee4acdbf5f5567e9d7f656ec0/defconfig

Build e889a9e85cdde70e9285550bed6f29c488861fde
==============================================

Status         : NOK
Failure reason : connman-1.9
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 09:11:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/e889a9e85cdde70e9285550bed6f29c488861fde/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e889a9e85cdde70e9285550bed6f29c488861fde/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e889a9e85cdde70e9285550bed6f29c488861fde/config
Defconfig      : http://autobuild.buildroot.net/results/e889a9e85cdde70e9285550bed6f29c488861fde/defconfig

Build f5f5a8c84c57c59f0a7b1fd8e21c5f839cd9f6ea
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 09:24:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/f5f5a8c84c57c59f0a7b1fd8e21c5f839cd9f6ea/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f5f5a8c84c57c59f0a7b1fd8e21c5f839cd9f6ea/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f5f5a8c84c57c59f0a7b1fd8e21c5f839cd9f6ea/config
Defconfig      : http://autobuild.buildroot.net/results/f5f5a8c84c57c59f0a7b1fd8e21c5f839cd9f6ea/defconfig

Build 06d89dae688a03552abf77e9873eab568327ae8f
==============================================

Status         : NOK
Failure reason : util-linux-2.20.1
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 09:33:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=4f452a86b8523d90ffa7a94cb1d540e574ceb165
End of log     : http://autobuild.buildroot.net/results/06d89dae688a03552abf77e9873eab568327ae8f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/06d89dae688a03552abf77e9873eab568327ae8f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/06d89dae688a03552abf77e9873eab568327ae8f/config
Defconfig      : http://autobuild.buildroot.net/results/06d89dae688a03552abf77e9873eab568327ae8f/defconfig

Build ee0482d8049a3fb5d18c1e9744b328ec9a658351
==============================================

Status         : NOK
Failure reason : libaio-0.3.109
Architecture   : sh4a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 09:49:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=4f452a86b8523d90ffa7a94cb1d540e574ceb165
End of log     : http://autobuild.buildroot.net/results/ee0482d8049a3fb5d18c1e9744b328ec9a658351/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ee0482d8049a3fb5d18c1e9744b328ec9a658351/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ee0482d8049a3fb5d18c1e9744b328ec9a658351/config
Defconfig      : http://autobuild.buildroot.net/results/ee0482d8049a3fb5d18c1e9744b328ec9a658351/defconfig

Build 651cbd86b63bb8aab74907f679958289a5fee973
==============================================

Status         : NOK
Failure reason : kexec-2.0.3
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 10:01:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
End of log     : http://autobuild.buildroot.net/results/651cbd86b63bb8aab74907f679958289a5fee973/build-end.log
Complete log   : http://autobuild.buildroot.net/results/651cbd86b63bb8aab74907f679958289a5fee973/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/651cbd86b63bb8aab74907f679958289a5fee973/config
Defconfig      : http://autobuild.buildroot.net/results/651cbd86b63bb8aab74907f679958289a5fee973/defconfig

Build 3957de2ba75969a03193ade015aa951c63d3b458
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 11:01:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
End of log     : http://autobuild.buildroot.net/results/3957de2ba75969a03193ade015aa951c63d3b458/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3957de2ba75969a03193ade015aa951c63d3b458/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3957de2ba75969a03193ade015aa951c63d3b458/config
Defconfig      : http://autobuild.buildroot.net/results/3957de2ba75969a03193ade015aa951c63d3b458/defconfig

Build 32323423d98b95216b0a706de8a7a230662b78b7
==============================================

Status         : NOK
Failure reason : spice-0.12.0
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-17 11:04:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
End of log     : http://autobuild.buildroot.net/results/32323423d98b95216b0a706de8a7a230662b78b7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/32323423d98b95216b0a706de8a7a230662b78b7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/32323423d98b95216b0a706de8a7a230662b78b7/config
Defconfig      : http://autobuild.buildroot.net/results/32323423d98b95216b0a706de8a7a230662b78b7/defconfig

Build 135e405ca12cb6f6694a43c69201f103d272961c
==============================================

Status         : NOK
Failure reason : libcap-ng-0.6.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 11:09:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
End of log     : http://autobuild.buildroot.net/results/135e405ca12cb6f6694a43c69201f103d272961c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/135e405ca12cb6f6694a43c69201f103d272961c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/135e405ca12cb6f6694a43c69201f103d272961c/config
Defconfig      : http://autobuild.buildroot.net/results/135e405ca12cb6f6694a43c69201f103d272961c/defconfig

Build e42b8fc108b5aa619ea7a7108f12eab35117dbed
==============================================

Status         : NOK
Failure reason : directfb-examples-1.2.0
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 11:11:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
End of log     : http://autobuild.buildroot.net/results/e42b8fc108b5aa619ea7a7108f12eab35117dbed/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e42b8fc108b5aa619ea7a7108f12eab35117dbed/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e42b8fc108b5aa619ea7a7108f12eab35117dbed/config
Defconfig      : http://autobuild.buildroot.net/results/e42b8fc108b5aa619ea7a7108f12eab35117dbed/defconfig

Build eff11b0a3d905e00f8a78b0519c3defd405c71bc
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 11:15:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
End of log     : http://autobuild.buildroot.net/results/eff11b0a3d905e00f8a78b0519c3defd405c71bc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/eff11b0a3d905e00f8a78b0519c3defd405c71bc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/eff11b0a3d905e00f8a78b0519c3defd405c71bc/config
Defconfig      : http://autobuild.buildroot.net/results/eff11b0a3d905e00f8a78b0519c3defd405c71bc/defconfig

Build cd1af495e77273a1ecea3d669ea920dd67d623cb
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 11:47:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
End of log     : http://autobuild.buildroot.net/results/cd1af495e77273a1ecea3d669ea920dd67d623cb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cd1af495e77273a1ecea3d669ea920dd67d623cb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cd1af495e77273a1ecea3d669ea920dd67d623cb/config
Defconfig      : http://autobuild.buildroot.net/results/cd1af495e77273a1ecea3d669ea920dd67d623cb/defconfig

Build 0fab5da641d26e4810dbc20db3e6d3d66404136e
==============================================

Status         : NOK
Failure reason : kmod-12
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 12:04:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
End of log     : http://autobuild.buildroot.net/results/0fab5da641d26e4810dbc20db3e6d3d66404136e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0fab5da641d26e4810dbc20db3e6d3d66404136e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0fab5da641d26e4810dbc20db3e6d3d66404136e/config
Defconfig      : http://autobuild.buildroot.net/results/0fab5da641d26e4810dbc20db3e6d3d66404136e/defconfig

Build b5d3c3e85da6d261343fbcffe81e0121fcfc239a
==============================================

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-17 12:09:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
End of log     : http://autobuild.buildroot.net/results/b5d3c3e85da6d261343fbcffe81e0121fcfc239a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b5d3c3e85da6d261343fbcffe81e0121fcfc239a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b5d3c3e85da6d261343fbcffe81e0121fcfc239a/config
Defconfig      : http://autobuild.buildroot.net/results/b5d3c3e85da6d261343fbcffe81e0121fcfc239a/defconfig

Build 6adc02da6d4cb30e77cb72a395b5717399e841f3
==============================================

Status         : NOK
Failure reason : samba-3.6.10
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 12:10:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
End of log     : http://autobuild.buildroot.net/results/6adc02da6d4cb30e77cb72a395b5717399e841f3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6adc02da6d4cb30e77cb72a395b5717399e841f3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6adc02da6d4cb30e77cb72a395b5717399e841f3/config
Defconfig      : http://autobuild.buildroot.net/results/6adc02da6d4cb30e77cb72a395b5717399e841f3/defconfig

Build eeb6a81588a12e5b572a4e5d27e001b3ae5eac49
==============================================

Status         : NOK
Failure reason : liburcu-0.7.5
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 12:10:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
End of log     : http://autobuild.buildroot.net/results/eeb6a81588a12e5b572a4e5d27e001b3ae5eac49/build-end.log
Complete log   : http://autobuild.buildroot.net/results/eeb6a81588a12e5b572a4e5d27e001b3ae5eac49/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/eeb6a81588a12e5b572a4e5d27e001b3ae5eac49/config
Defconfig      : http://autobuild.buildroot.net/results/eeb6a81588a12e5b572a4e5d27e001b3ae5eac49/defconfig

Build b773c485b0f4be26bcba8e0d1b6d5a680888cbaf
==============================================

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

Build 5610202dacf971bd3feb99319b6caf9ba3eb534e
==============================================

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

Build 11d681a7f2c1d55a3d70573e9145aa231f6d4298
==============================================

Status         : NOK
Failure reason : inadyn-1.98.1
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 13:42:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/11d681a7f2c1d55a3d70573e9145aa231f6d4298/build-end.log
Complete log   : http://autobuild.buildroot.net/results/11d681a7f2c1d55a3d70573e9145aa231f6d4298/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/11d681a7f2c1d55a3d70573e9145aa231f6d4298/config
Defconfig      : http://autobuild.buildroot.net/results/11d681a7f2c1d55a3d70573e9145aa231f6d4298/defconfig

Build 0c821ea5d85cb768dccb285e0ad969c53250a0cd
==============================================

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

Build 9732211a6b68ffca61569cc7fa362bee57072d54
==============================================

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

Build a2b8a014007b126be8ac7fbc801968fdef4ebf86
==============================================

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

Build 46555ba931630174ab7babc3d926b5ee8981145e
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 15:47:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/46555ba931630174ab7babc3d926b5ee8981145e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/46555ba931630174ab7babc3d926b5ee8981145e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/46555ba931630174ab7babc3d926b5ee8981145e/config
Defconfig      : http://autobuild.buildroot.net/results/46555ba931630174ab7babc3d926b5ee8981145e/defconfig

Build d30c199a64a960d63040f881411189c957b5c960
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 16:19:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/d30c199a64a960d63040f881411189c957b5c960/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d30c199a64a960d63040f881411189c957b5c960/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d30c199a64a960d63040f881411189c957b5c960/config
Defconfig      : http://autobuild.buildroot.net/results/d30c199a64a960d63040f881411189c957b5c960/defconfig

Build 84ba9ba97bf05d4db4b45e3e6bf33ddd8bd5708c
==============================================

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-17 16:44:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/84ba9ba97bf05d4db4b45e3e6bf33ddd8bd5708c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/84ba9ba97bf05d4db4b45e3e6bf33ddd8bd5708c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/84ba9ba97bf05d4db4b45e3e6bf33ddd8bd5708c/config
Defconfig      : http://autobuild.buildroot.net/results/84ba9ba97bf05d4db4b45e3e6bf33ddd8bd5708c/defconfig

Build a7faab6388ce275796a2a11273f5f95d6788d029
==============================================

Status         : NOK
Failure reason : sdl-1.2.15
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-17 17:17:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/a7faab6388ce275796a2a11273f5f95d6788d029/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a7faab6388ce275796a2a11273f5f95d6788d029/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a7faab6388ce275796a2a11273f5f95d6788d029/config
Defconfig      : http://autobuild.buildroot.net/results/a7faab6388ce275796a2a11273f5f95d6788d029/defconfig

Build 5d951b1f8b6c9949b6dc9bf777a99dda98e4725c
==============================================

Status         : NOK
Failure reason : valgrind-3.7.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 18:34:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/5d951b1f8b6c9949b6dc9bf777a99dda98e4725c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5d951b1f8b6c9949b6dc9bf777a99dda98e4725c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5d951b1f8b6c9949b6dc9bf777a99dda98e4725c/config
Defconfig      : http://autobuild.buildroot.net/results/5d951b1f8b6c9949b6dc9bf777a99dda98e4725c/defconfig

Build 7411f1ecd5fb700ce5c28234518d70ca3977942f
==============================================

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-17 18:45:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/7411f1ecd5fb700ce5c28234518d70ca3977942f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7411f1ecd5fb700ce5c28234518d70ca3977942f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7411f1ecd5fb700ce5c28234518d70ca3977942f/config
Defconfig      : http://autobuild.buildroot.net/results/7411f1ecd5fb700ce5c28234518d70ca3977942f/defconfig

Build 3c68214cca56607779c6b8746f7966c7712738c0
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-17 18:55:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/3c68214cca56607779c6b8746f7966c7712738c0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3c68214cca56607779c6b8746f7966c7712738c0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3c68214cca56607779c6b8746f7966c7712738c0/config
Defconfig      : http://autobuild.buildroot.net/results/3c68214cca56607779c6b8746f7966c7712738c0/defconfig

Build f39b1fdcda9c709e69ef88eb02a8b5685e417620
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-17 19:29:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/f39b1fdcda9c709e69ef88eb02a8b5685e417620/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f39b1fdcda9c709e69ef88eb02a8b5685e417620/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f39b1fdcda9c709e69ef88eb02a8b5685e417620/config
Defconfig      : http://autobuild.buildroot.net/results/f39b1fdcda9c709e69ef88eb02a8b5685e417620/defconfig

Build 9c9f698f408ced04f5cea38a7070a1271573087c
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 19:35:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/9c9f698f408ced04f5cea38a7070a1271573087c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9c9f698f408ced04f5cea38a7070a1271573087c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9c9f698f408ced04f5cea38a7070a1271573087c/config
Defconfig      : http://autobuild.buildroot.net/results/9c9f698f408ced04f5cea38a7070a1271573087c/defconfig

Build 9225ecd8f465778b89608afd568e2dd7dd59b272
==============================================

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

Build 9bbb90522066f80a259f699acb2c77e4d9567d75
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 19:49:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/9bbb90522066f80a259f699acb2c77e4d9567d75/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9bbb90522066f80a259f699acb2c77e4d9567d75/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9bbb90522066f80a259f699acb2c77e4d9567d75/config
Defconfig      : http://autobuild.buildroot.net/results/9bbb90522066f80a259f699acb2c77e4d9567d75/defconfig

Build 065330fc43a216201e5822c76df0bd8f1a279728
==============================================

Status         : NOK
Failure reason : pcsc-lite-1.8.6
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 19:52:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/065330fc43a216201e5822c76df0bd8f1a279728/build-end.log
Complete log   : http://autobuild.buildroot.net/results/065330fc43a216201e5822c76df0bd8f1a279728/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/065330fc43a216201e5822c76df0bd8f1a279728/config
Defconfig      : http://autobuild.buildroot.net/results/065330fc43a216201e5822c76df0bd8f1a279728/defconfig

Build 2d795ad2a37f862c08a9927141e7b7bea8c406d4
==============================================

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

Build 3b0e499bb8a0489c803c74fa19113b71b147ccac
==============================================

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

Build 425b9d92fb8956bbbae20411e38cea8583ed8d69
==============================================

Status         : NOK
Failure reason : iproute2-3.7.0
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 20:32:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/425b9d92fb8956bbbae20411e38cea8583ed8d69/build-end.log
Complete log   : http://autobuild.buildroot.net/results/425b9d92fb8956bbbae20411e38cea8583ed8d69/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/425b9d92fb8956bbbae20411e38cea8583ed8d69/config
Defconfig      : http://autobuild.buildroot.net/results/425b9d92fb8956bbbae20411e38cea8583ed8d69/defconfig

Build c937cc826c52054813a907950e85df191a8a070a
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 20:47:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/c937cc826c52054813a907950e85df191a8a070a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c937cc826c52054813a907950e85df191a8a070a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c937cc826c52054813a907950e85df191a8a070a/config
Defconfig      : http://autobuild.buildroot.net/results/c937cc826c52054813a907950e85df191a8a070a/defconfig

Build 18c6a0504a5763c0875a9ab7301da86c61abf3e0
==============================================

Status         : NOK
Failure reason : xserver_xorg-server-1.9.4
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 22:07:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/18c6a0504a5763c0875a9ab7301da86c61abf3e0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/18c6a0504a5763c0875a9ab7301da86c61abf3e0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/18c6a0504a5763c0875a9ab7301da86c61abf3e0/config
Defconfig      : http://autobuild.buildroot.net/results/18c6a0504a5763c0875a9ab7301da86c61abf3e0/defconfig

Build 474b004d652e185b57e922f225eae2b43332a051
==============================================

Status         : NOK
Failure reason : libnspr-4.8.7
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 22:35:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/474b004d652e185b57e922f225eae2b43332a051/build-end.log
Complete log   : http://autobuild.buildroot.net/results/474b004d652e185b57e922f225eae2b43332a051/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/474b004d652e185b57e922f225eae2b43332a051/config
Defconfig      : http://autobuild.buildroot.net/results/474b004d652e185b57e922f225eae2b43332a051/defconfig

Build 5871ce0ee7743263ddd1ebe0a958da25cb2774af
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 23:12:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/5871ce0ee7743263ddd1ebe0a958da25cb2774af/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5871ce0ee7743263ddd1ebe0a958da25cb2774af/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5871ce0ee7743263ddd1ebe0a958da25cb2774af/config
Defconfig      : http://autobuild.buildroot.net/results/5871ce0ee7743263ddd1ebe0a958da25cb2774af/defconfig

Build 439eab5dee8300c236815e2ef7024f16d50b8eec
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 23:44:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/439eab5dee8300c236815e2ef7024f16d50b8eec/build-end.log
Complete log   : http://autobuild.buildroot.net/results/439eab5dee8300c236815e2ef7024f16d50b8eec/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/439eab5dee8300c236815e2ef7024f16d50b8eec/config
Defconfig      : http://autobuild.buildroot.net/results/439eab5dee8300c236815e2ef7024f16d50b8eec/defconfig

Build a37299a0f9796c90f22d1c9e2959a9df1980c079
==============================================

Status         : NOK
Failure reason : libiscsi-1.6.0
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-17 23:49:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7cba1dead6ce53ccd8ea1c634fc9589f1b2e956e
End of log     : http://autobuild.buildroot.net/results/a37299a0f9796c90f22d1c9e2959a9df1980c079/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a37299a0f9796c90f22d1c9e2959a9df1980c079/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a37299a0f9796c90f22d1c9e2959a9df1980c079/config
Defconfig      : http://autobuild.buildroot.net/results/a37299a0f9796c90f22d1c9e2959a9df1980c079/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [PATCH] allow wpa_supplicant to run on the dbus using the 'new' api
From: Arnout Vandecappelle @ 2012-12-18  6:58 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAEnpE0yDTQWpUf9ctGnfuSjX8PR0uX6UcxzvdV6D6uoxrAg1zQ@mail.gmail.com>

On 17/12/12 21:54, Gary Coulbourne wrote:
> When wpa_supplicant is built, it compiles to use the old names on the
> dbus, as well as with the wrong executable name in the dbus activation
> service.
>
> This patch builds on a patch submitted in Sept by Sven Neumann.

  Hi Gary,

  Reviewing patches is more convenient for us if you do the following:

* Send the patch in-line, preferably with git send-email, so we can give 
comments in-line.

* Keep the original patch comment if it is still appropriate.

* Make sure the patch is called PATCHv2 or similar by sending with 'git 
send-email --subject-prefix=PATCHv2'.

* Include a changelog in the patch. It should come below the 
Signed-off-by line(s), seperated by
---
and it should explain which changes were made and why.

* Keep the original author information - in this case, preferably by 
keeping the original git authorship.


  I did a quick comparison with Sven's patch and I don't see why you 
removed the BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD option.

  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] sg3-utils new package.
From: Arnout Vandecappelle @ 2012-12-17 23:10 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355776546-25189-1-git-send-email-marek.belisko@open-nandra.com>

On 17/12/12 21:35, Marek Belisko wrote:
> Signed-off-by: Marek Belisko<marek.belisko@open-nandra.com>
[snip]
> diff --git a/package/sg3_utils/Config.in b/package/sg3_utils/Config.in
> new file mode 100644
> index 0000000..1d2ab2a
> --- /dev/null
> +++ b/package/sg3_utils/Config.in
> @@ -0,0 +1,7 @@
> +config BR2_PACKAGE_SG3_UTILS
> +	bool "sg3_utils"

  depends on BR2_LARGEFILE
  depends on BR2_TOOLCHAIN_HAS_THREADS
  (actually only sgp_dd needs threads so that could be patched out in the 
Makefile).

  Not sure about IPv6.


  Otherwise, looks good.

  Regards,
  Arnout

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

^ permalink raw reply

* [Buildroot] [PATCH 1/1] Added FAAD, WavPack and gdk_pixbuf to gst-plugins.
From: Arnout Vandecappelle @ 2012-12-17 22:49 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355774883.23993.YahooMailNeo@web120306.mail.ne1.yahoo.com>

On 17/12/12 21:08, Bogdan Radulescu wrote:
> Signed-off-by: Bogdan Radulescu<bogdan@nimblex.net>
> ---
>   package/multimedia/gst-plugins-bad/Config.in            | 17 ++++++++++-------
>   package/multimedia/gst-plugins-bad/gst-plugins-bad.mk   |  7 +++++++
>   package/multimedia/gst-plugins-good/Config.in           |  7 +++++++
>   package/multimedia/gst-plugins-good/gst-plugins-good.mk | 14 ++++++++++++++
>   4 files changed, 38 insertions(+), 7 deletions(-)
>
> diff --git a/package/multimedia/gst-plugins-bad/Config.in b/package/multimedia/gst-plugins-bad/Config.in
> index d87aec4..cd368fb 100644
> --- a/package/multimedia/gst-plugins-bad/Config.in
> +++ b/package/multimedia/gst-plugins-bad/Config.in
> @@ -82,12 +82,12 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FESTIVAL
>   config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FIELDANALYSIS
>       bool "fieldanalysis"
>
> -config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEZE
> -    bool "freeze"
> -
>   config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEVERB
>       bool "freeverb"
>
> +config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEZE
> +    bool "freeze"
> +

  Good!

  Should mention it in the commit message though, or even submit it as a 
separate patch.

[snip]
> -comment "plugins with external dependencies (there may be more available)"
> +comment "plugins with external dependencies (not all from gstreamer are here)"

  Nice!

 >
>   config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK
>       bool "apexsink"
> @@ -270,6 +270,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB
>   config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FBDEV
>       bool "fbdev"
>
> +config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FAAD
> +    bool "faad"

  Should select BR2_PACKAGE_FAAD2

> +
>   config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBMMS
>       bool "libmms"
>       select BR2_PACKAGE_LIBMMS
[snip]
> diff --git a/package/multimedia/gst-plugins-good/Config.in b/package/multimedia/gst-plugins-good/Config.in
> index 33ecb5c..8c43ac8 100644
> --- a/package/multimedia/gst-plugins-good/Config.in
> +++ b/package/multimedia/gst-plugins-good/Config.in
> @@ -161,6 +161,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOMIXER
>   config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVENC
>       bool "wavenc"
>
> +config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPACK
> +    bool "wavpack (*.wv audio)"

  Should select BR2_PACKAGE_WAVPACK and should be put in the section with 
external dependencies.

  Otherwise, looks great!

  Regards,
  Arnout

> +
>   config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPARSE
>       bool "wavparse (*.wav audio)"
>       default y
[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] imx-lib: new package
From: Benoît Thébaudeau @ 2012-12-17 22:49 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50CF99CC.8040603@mind.be>

On Monday, December 17, 2012 11:16:44 PM, Arnout Vandecappelle wrote:
> On 17/12/12 23:12, Beno?t Th?baudeau wrote:
> > On Monday, December 17, 2012 11:01:43 PM, Arnout Vandecappelle
> > wrote:
> >> On 17/12/12 21:44, Peter Korsgaard wrote:
> >>> Is the gst-fsl-plugins stuff still needed now that the coda
> >>> driver
> >>> is in
> >>> mainline?
> >>
> >>    Mainline v3.7 only has support for mx27 and mx51.
> >
> > Even for mx27 and mx51, are you sure that the mainline
> > implementation for CODA
> > is compatible with Freescale's imx-lib? I highly doubt it.
> 
>   Peter's point is that with coda you don't need all that proprietary
> stuff, it's just a media framework device.

Sure. But isn't there a custom (or not yet developed generic V4L2 mem2mem)
GStreamer plugin required for the mainline CODA implementation? There is also
the question of the CSI and IPU features that are not yet available in mainline,
even for mx27 and mx51.

Perhaps in BuildRoot there could be a solution for packages from Freescale, and
another one for mainline stuff as long as mainline does not provide all
features.

Regards,
Beno?t

^ permalink raw reply

* [Buildroot] [PATCH] dbus version number bump and fix permissions of launch helper
From: Gary Coulbourne @ 2012-12-17 22:38 UTC (permalink / raw)
  To: buildroot

The stable version of dbus is currently a 1.6.8.  This patch bumps that
version number.  It also fixes a bug in the installation of dbus: the
launch helper was not being installed with the correct permissions nor
users.

---
 package/dbus/dbus.mk |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/package/dbus/dbus.mk b/package/dbus/dbus.mk
index ec42874..c597dcc 100644
--- a/package/dbus/dbus.mk
+++ b/package/dbus/dbus.mk
@@ -3,7 +3,7 @@
 # dbus
 #
 #############################################################
-DBUS_VERSION = 1.4.24
+DBUS_VERSION = 1.6.8
 DBUS_SITE = http://dbus.freedesktop.org/releases/dbus/
 DBUS_INSTALL_STAGING = YES

@@ -68,6 +68,10 @@ define DBUS_INSTALL_TARGET_FIXUP
        $(INSTALL) -m 0755 -D package/dbus/S30dbus
$(TARGET_DIR)/etc/init.d/S30dbus
 endef

+define DBUS_PERMISSIONS
+/usr/libexec/dbus-daemon-launch-helper f 4750 0 81 - - - - -
+endef
+
 DBUS_POST_INSTALL_TARGET_HOOKS += DBUS_INSTALL_TARGET_FIXUP

 HOST_DBUS_DEPENDENCIES = host-pkgconf host-expat
-- 
1.7.10.4
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121217/9a560b4d/attachment.html>

^ 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