* [Buildroot] [PATCH] imx-lib: new package
From: Peter Korsgaard @ 2012-12-17 20:42 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50CF5761.7030902@mind.be>
>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
>> Another possibility is to bundle the needed kernel headers with the
>> package, similar to how E.G. mtd-utils does it.
Arnout> Unfortunately, Freescale probably has a much lower standard about ABI
Arnout> compatibility than kernel.org. Also it's relatively likely that a
Arnout> buildroot user will use a different Freescale kernel than the one
Arnout> assumed by buildroot. So you may end up with userspace assuming
Arnout> different struct layouts than the kernel...
Yeah, closed source mess :/
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] imx-lib: new package
From: Peter Korsgaard @ 2012-12-17 20:44 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50CF5987.90805@mind.be>
>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
Arnout> On 17/12/12 14:48, Arnout Vandecappelle (Essensium/Mind) wrote:
>> +if BR2_PACKAGE_IMX_LIB
>> +choice
>> + prompt "i.MX platform"
>> +
>> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX25_3STACK
>> + bool "imx25-3stack"
>> +
>> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX27ADS
>> + bool "imx27ads"
>> +
>> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX37_3STACK
>> + bool "imx37-3stack"
>> +
>> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX50
>> + bool "imx50"
>> +
>> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX51
>> + bool "imx51"
>> +
>> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX53
>> + bool "imx53"
>> +
>> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX6Q
>> + bool "imx6q"
>> +
>> +endchoice
Arnout> Here's a second issue that I'd like to get some feedback on:
Arnout> gst-fsl-plugins also uses a PLATFORM definition, but the list of
Arnout> platforms is slightly different:
Arnout> MX28/MX233/MX25/MX27/MX31/MX35/MX37/MX51/MX53/MX50/MX5X/MX6
Arnout> Ideally the 'platform' should be defined only once, but where? Or
Arnout> should I add all the platforms to gst-fsl-plugins with a select of the
Arnout> appropriate imx-lib platform?
We once talked about adding a SoC selection to buildroot, but decided it
would be too much effort to maintain.
Is the gst-fsl-plugins stuff still needed now that the coda driver is in
mainline?
Arnout> I can only test the mx6q because that's the only one for which
Arnout> I have a board... Build-testing doesn't make a difference
Arnout> because all platforms use the same API.
I have access to mx28 / mx51 / mx53 / mx6q boards and could do some
testing during christmas.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] allow wpa_supplicant to run on the dbus using the 'new' api
From: Gary Coulbourne @ 2012-12-17 20:54 UTC (permalink / raw)
To: buildroot
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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121217/e901d3a2/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-allow-wpa_supplicant-to-run-on-the-dbus-using-the-ne.patch
Type: application/octet-stream
Size: 3047 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121217/e901d3a2/attachment.obj>
^ permalink raw reply
* [Buildroot] [PATCH] netatalk: fix 64-bit build
From: Arnout Vandecappelle @ 2012-12-17 21:48 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
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>
---
...setting-of-LD_LIBRARY_FLAGS-shlibpath_var.patch | 48 ++++++++++++++++++++
package/netatalk/netatalk.mk | 4 +-
2 files changed, 51 insertions(+), 1 deletion(-)
create mode 100644 package/netatalk/netatalk-0001-Fix-setting-of-LD_LIBRARY_FLAGS-shlibpath_var.patch
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 \
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH] imx-lib: new package
From: Arnout Vandecappelle @ 2012-12-17 21:49 UTC (permalink / raw)
To: buildroot
In-Reply-To: <58636407.1033142.1355773226690.JavaMail.root@advansee.com>
On 17/12/12 20:40, Beno?t Th?baudeau wrote:
>> > ipu/mxc_ipu_hl_lib.h needs linux/mxcfb.h which only exists in the
>> > imx
>> > kernels.
> I see. I did not have this issue because I have built a custom toolchain based
> on Freescale's kernel, so including these headers. This would not be very
> practical to impose the use of a custom toolchain here.
I guess the custom toolchain isn't uClibc-based? Because it looks like
some of the binary packages depend on glibc.
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] netatalk : Fix BerkeleyDB library path
From: Maxime Hadjinlian @ 2012-12-17 22:00 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50CF8203.1010601@mind.be>
On Mon, Dec 17, 2012 at 9:35 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On 17/12/12 00:15, Maxime Hadjinlian wrote:
>> On Sun, Dec 16, 2012 at 11:17 PM, Peter Korsgaard<jacmet@uclibc.org> wrote:
>>>>>>>> "Maxime" == Maxime Hadjinlian<maxime.hadjinlian@gmail.com> writes:
>>>
>>> Maxime> This fix is needed for the 64bits build because Netatalk will assume the library
>>> Maxime> are stored in [..]/lib64/ instead of [..]/lib/
>>>
>>> Hmm, we still seem to have issues on the autobuilders:
>>>
>>> http://autobuild.buildroot.net/results/cf5c3ce94c229204bfa0f19b1009c13a9bcc1dfc/build-end.log
>>>
>>> Maxime> +++ b/package/netatalk/netatalk.mk
>>> Maxime> @@ -8,7 +8,7 @@ NETATALK_SITE = http://downloads.sourceforge.net/project/netatalk/netatalk/$(NET
>>> Maxime> NETATALK_SOURCE = netatalk-$(NETATALK_VERSION).tar.bz2
>>>
>>> Maxime> NETATALK_DEPENDENCIES = host-pkgconf openssl berkeleydb libgcrypt libgpg-error
>>> Maxime> -NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99"
>>> Maxime> +NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99" BDB_LIB=$(STAGING_LIB)/usr/lib
>>>
>>>
>>> I guess you meant STAGING_DIR instead here, will fix.
>> This is strange because I tested with a 64 bits build and I had'nt the
>> problem anymore.. And I don't remember rewriting the patch before
>> sending it here. But then again, you're totally right, this does'nt
>> make sense. I'm really wondering how it could have worked for me :/
>
> I guess it was an accident then :-)
>
> configure checks for libdb by doing: ls $bdblibdir/lib$lib.*
> and bdblibdir="${bdbdir}/${atalk_libname}" and atalk_libname="lib64" for
> most 64-bit architectures.
>
> So you happened to have an existing /usr/lib/lib64/libdb* on your build
> machine...
I looked for it but I don't have one, I have although my host system
is 64bits, there should some bits in there...
>
> BDB_LIB isn't even used by configure, so I don't think does patch does
> much :-)
You're right, it should be BDB_LIBS at least.
>
>
> The problem I encounter in my build is that configure uses `ls ...` to
> find the library, and my /bin/ls is linked against libacl.so.1. It seems
> LD_LIBRARY_PATH is overridden because ls fails with:
>
> /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by /home/arnout/src/buildroot/output-ext-toolchain-x86_64/host/usr/x86_64-buildroot-linux-gnu/sysroot/usr/lib/libacl.so.1
>
> And indeed, configure sets:
> eval export $shlibpath_var=$bdblibdir
>
> This is OK for native builds, but not for cross-builds...
If I'm reading this correctly (and I'm not sure I am), there is one
bug with ls if you native hosts is 32bits but also, if you look the
value of atalk_libname, it will value lib64 and since the lib are not
put there by BerkeleyDB, it will also fail. And so we must look for
them in lib, right ? (That was I tried to fixed in my numerous
attempt).
So is it possible that there is two bugs enclosed here ?
>
> Looking a bit further into macros/db3-check.m4, it looks even worse:
> after that configure step, there is an
> eval export $shlibpath_var=$saved_shlibpath_var
> which expands to
> export LD_LIBRARY_PATH=LD_LIBRARY_PATH
> :-)
Which is obviously not what we want here :).
>
> I'll try to cook a fix and send a patch.
I'm really curious to see something, because I don't think I could
have figured this one out myself (given the lack of experience in
cross compiling and also my host being 64bits, well I'm short on
excuses).
>
> Regards,
> Arnout
Thanks !
>
> --
> 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: Arnout Vandecappelle @ 2012-12-17 22:01 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87mwxc76je.fsf@dell.be.48ers.dk>
On 17/12/12 21:44, Peter Korsgaard wrote:
>>>>>> "Arnout" == Arnout Vandecappelle<arnout@mind.be> writes:
>
> Arnout> On 17/12/12 14:48, Arnout Vandecappelle (Essensium/Mind) wrote:
> >> +if BR2_PACKAGE_IMX_LIB
> >> +choice
> >> + prompt "i.MX platform"
> >> +
> >> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX25_3STACK
> >> + bool "imx25-3stack"
> >> +
> >> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX27ADS
> >> + bool "imx27ads"
> >> +
> >> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX37_3STACK
> >> + bool "imx37-3stack"
> >> +
> >> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX50
> >> + bool "imx50"
> >> +
> >> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX51
> >> + bool "imx51"
> >> +
> >> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX53
> >> + bool "imx53"
> >> +
> >> +config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX6Q
> >> + bool "imx6q"
> >> +
> >> +endchoice
>
> Arnout> Here's a second issue that I'd like to get some feedback on:
> Arnout> gst-fsl-plugins also uses a PLATFORM definition, but the list of
> Arnout> platforms is slightly different:
> Arnout> MX28/MX233/MX25/MX27/MX31/MX35/MX37/MX51/MX53/MX50/MX5X/MX6
>
> Arnout> Ideally the 'platform' should be defined only once, but where? Or
> Arnout> should I add all the platforms to gst-fsl-plugins with a select of the
> Arnout> appropriate imx-lib platform?
>
> We once talked about adding a SoC selection to buildroot, but decided it
> would be too much effort to maintain.
But of course, maintaining it per package is even more effort...
>
> 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.
> Arnout> I can only test the mx6q because that's the only one for which
> Arnout> I have a board... Build-testing doesn't make a difference
> Arnout> because all platforms use the same API.
>
> I have access to mx28 / mx51 / mx53 / mx6q boards and could do some
> testing during christmas.
OK, I'll try to post patches before the end of the week.
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] netatalk : Fix BerkeleyDB library path
From: Arnout Vandecappelle @ 2012-12-17 22:05 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAGduivzGSNwizLx8WbC+BN6J=dbmcDRjNyB7zc0stccS3X1BoQ@mail.gmail.com>
On 17/12/12 23:00, Maxime Hadjinlian wrote:
> On Mon, Dec 17, 2012 at 9:35 PM, Arnout Vandecappelle<arnout@mind.be> wrote:
>> On 17/12/12 00:15, Maxime Hadjinlian wrote:
[snip]
>> BDB_LIB isn't even used by configure, so I don't think does patch does
>> much :-)
> You're right, it should be BDB_LIBS at least.
But BDB_LIBS is unconditionally set by configure.
>> The problem I encounter in my build is that configure uses `ls ...` to
>> find the library, and my /bin/ls is linked against libacl.so.1. It seems
>> LD_LIBRARY_PATH is overridden because ls fails with:
>>
>> /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by /home/arnout/src/buildroot/output-ext-toolchain-x86_64/host/usr/x86_64-buildroot-linux-gnu/sysroot/usr/lib/libacl.so.1
>>
>> And indeed, configure sets:
>> eval export $shlibpath_var=$bdblibdir
>>
>> This is OK for native builds, but not for cross-builds...
> If I'm reading this correctly (and I'm not sure I am), there is one
> bug with ls if you native hosts is 32bits but also, if you look the
> value of atalk_libname, it will value lib64 and since the lib are not
> put there by BerkeleyDB, it will also fail. And so we must look for
> them in lib, right ? (That was I tried to fixed in my numerous
> attempt).
Yes, but the configure script already does that: if it fails to find it
in $atalk_libname and $atalk_libname != lib then it tries again in lib.
Regards,
Arnout
[snip]
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH] imx-lib: new package
From: Benoît Thébaudeau @ 2012-12-17 22:08 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50CF9377.3040100@mind.be>
On Monday, December 17, 2012 10:49:43 PM, Arnout Vandecappelle wrote:
> On 17/12/12 20:40, Beno?t Th?baudeau wrote:
> >> > ipu/mxc_ipu_hl_lib.h needs linux/mxcfb.h which only exists
> >> > in the
> >> > imx
> >> > kernels.
> > I see. I did not have this issue because I have built a custom
> > toolchain based
> > on Freescale's kernel, so including these headers. This would not
> > be very
> > practical to impose the use of a custom toolchain here.
>
> I guess the custom toolchain isn't uClibc-based? Because it looks
> like
> some of the binary packages depend on glibc.
It is indeed glibc-based.
Regards,
Beno?t
^ permalink raw reply
* [Buildroot] [PATCH] imx-lib: new package
From: Benoît Thébaudeau @ 2012-12-17 22:12 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50CF9647.3020506@mind.be>
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.
Regards,
Beno?t
^ permalink raw reply
* [Buildroot] [PATCH] netatalk : Fix BerkeleyDB library path
From: Maxime Hadjinlian @ 2012-12-17 22:13 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50CF9728.7050806@mind.be>
On Mon, Dec 17, 2012 at 11:05 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On 17/12/12 23:00, Maxime Hadjinlian wrote:
>>
>> On Mon, Dec 17, 2012 at 9:35 PM, Arnout Vandecappelle<arnout@mind.be>
>> wrote:
>>>
>>> On 17/12/12 00:15, Maxime Hadjinlian wrote:
>
> [snip]
>
>>> BDB_LIB isn't even used by configure, so I don't think does patch does
>>> much :-)
>>
>> You're right, it should be BDB_LIBS at least.
>
>
> But BDB_LIBS is unconditionally set by configure.
>
>
>
>>> The problem I encounter in my build is that configure uses `ls ...` to
>>> find the library, and my /bin/ls is linked against libacl.so.1. It seems
>>> LD_LIBRARY_PATH is overridden because ls fails with:
>>>
>>> /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required
>>> by
>>> /home/arnout/src/buildroot/output-ext-toolchain-x86_64/host/usr/x86_64-buildroot-linux-gnu/sysroot/usr/lib/libacl.so.1
>>>
>>> And indeed, configure sets:
>>> eval export $shlibpath_var=$bdblibdir
>>>
>>> This is OK for native builds, but not for cross-builds...
>>
>> If I'm reading this correctly (and I'm not sure I am), there is one
>> bug with ls if you native hosts is 32bits but also, if you look the
>> value of atalk_libname, it will value lib64 and since the lib are not
>> put there by BerkeleyDB, it will also fail. And so we must look for
>> them in lib, right ? (That was I tried to fixed in my numerous
>> attempt).
>
>
> Yes, but the configure script already does that: if it fails to find it in
> $atalk_libname and $atalk_libname != lib then it tries again in lib.
Okay, I see what I missed and I'm looking at your patch, I'll go to
bed less stupid.
>
> Regards,
> Arnout
Thanks
>
> [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] linux: Support multiple device tree build
From: Arnout Vandecappelle @ 2012-12-17 22:13 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355742312-25258-1-git-send-email-maxime.ripard@free-electrons.com>
On 17/12/12 12:05, Maxime Ripard wrote:
> Signed-off-by: Maxime Ripard<maxime.ripard@free-electrons.com>
> ---
> linux/linux.mk | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/linux/linux.mk b/linux/linux.mk
> index c4bdf90..c7d0099 100644
> --- a/linux/linux.mk
> +++ b/linux/linux.mk
> @@ -187,10 +187,12 @@ endef
> ifeq ($(BR2_LINUX_KERNEL_DTS_SUPPORT),y)
> ifeq ($(BR2_LINUX_KERNEL_DTB_IS_SELF_BUILT),)
> define LINUX_BUILD_DTB
> - $(TARGET_MAKE_ENV) $(MAKE) $(LINUX_MAKE_FLAGS) -C $(@D) $(KERNEL_DTS_NAME).dtb
> + $(TARGET_MAKE_ENV) $(MAKE) $(LINUX_MAKE_FLAGS) -C $(@D) \
> + $(foreach dtbfile, $(call qstrip, $(KERNEL_DTS_NAME)), $(dtbfile).dtb)
I would personally prefer
$(addsuffix .dtb,$(call qstrip,$(KERNEL_DTS_NAME)))
> endef
> define LINUX_INSTALL_DTB
> - cp $(KERNEL_ARCH_PATH)/boot/$(KERNEL_DTS_NAME).dtb $(BINARIES_DIR)/
> + $(foreach dtbfile, $(call qstrip, $(KERNEL_DTS_NAME)),
> + cp $(KERNEL_ARCH_PATH)/boot/$(dtbfile).dtb $(BINARIES_DIR)/)
Does this work? I would expect you need a $(sep) or ; between the cp
statements...
But since it's a cp (not an install), you can put the foreach inside
the cp.
Regards,
Arnout
> endef
> endif
> endif
--
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] netatalk: fix 64-bit build
From: Arnout Vandecappelle @ 2012-12-17 22:15 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355780891-26657-1-git-send-email-arnout@mind.be>
On 17/12/12 22:48, Arnout Vandecappelle (Essensium/Mind) wrote:
> 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>
Actually, this probably has nothing to do with 64-bit, but rather with
host==target...
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] imx-lib: new package
From: Arnout Vandecappelle @ 2012-12-17 22:16 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1905374549.1044823.1355782331560.JavaMail.root@advansee.com>
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.
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] netatalk : Fix BerkeleyDB library path
From: Arnout Vandecappelle @ 2012-12-17 22:18 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAGduivzm4RUMxoUWtsQshupg5Q=OFU3BYaXAOpp8CRVxghQYtA@mail.gmail.com>
On 17/12/12 23:13, Maxime Hadjinlian wrote:
> On Mon, Dec 17, 2012 at 11:05 PM, Arnout Vandecappelle<arnout@mind.be> wrote:
[snip]
>> Yes, but the configure script already does that: if it fails to find it in
>> $atalk_libname and $atalk_libname != lib then it tries again in lib.
> Okay, I see what I missed and I'm looking at your patch, I'll go to
> bed less stupid.
The only reason I'm less stupid is that I spent three hours looking at
that configure script...
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 new package ncdu
From: Arnout Vandecappelle @ 2012-12-17 22:34 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355774648.20811.YahooMailNeo@web120305.mail.ne1.yahoo.com>
Dear Bogdan,
Thanks for your patch.
We prefer generally prefer patches to be sent in-line with the correct
spacing - using git send-email is the easiest way to send a patch.
Some additional comments below.
On 17/12/12 21:04, Bogdan Radulescu wrote:
>
> Signed-off-by: Bogdan Radulescu<bogdan@nimblex.net>
[snip]
> diff --git a/package/ncdu/Config.in b/package/ncdu/Config.in
> new file mode 100644
> index 0000000..d8b4db4
> --- /dev/null
> +++ b/package/ncdu/Config.in
> @@ -0,0 +1,7 @@
> +config BR2_PACKAGE_NCDU
> + bool "ncdu"
Indentation in Config.in should be a single TAB.
> + select BR2_PACKAGE_NCURSES
> + help
> + ncdu is a disk usage analyzer with an ncurses interface
... except for help which should be one TAB + 2 spaces.
> +
> + http://dev.yorhel.nl/ncdu
> diff --git a/package/ncdu/ncdu.mk b/package/ncdu/ncdu.mk
> new file mode 100644
> index 0000000..26f3b5e
> --- /dev/null
> +++ b/package/ncdu/ncdu.mk
> @@ -0,0 +1,13 @@
> +#############################################################
> +#
> +# ncdu
> +#
> +#############################################################
> +NCDU_VERSION=1.9
We prefer spaces around the =
NCDU_VERSION = 1.9
> +NCDU_SITE=http://dev.yorhel.nl/download/
> +NCDU_INSTALL_STAGING_OPT = instroot=$(STAGING_DIR) install
Since you don't install to staging, this is redundant.
> +NCDU_INSTALL_TARGET_OPT = instroot=$(TARGET_DIR) install
I don't understand where this comes from... It looks like it should be
DESTDIR=$(TARGET_DIR), which is the default, so this line is redundant as
well.
It would be nice to also add the licensing:
NCDU_LICENSE = MIT
NCDU_LICENSE_FILES = COPYING
(test with 'make legal-info')
Regards,
Arnout
> +
> +NCDU_DEPENDENCIES = ncurses
> +
> +$(eval $(autotools-package))
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH] 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
* [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 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] 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] 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] [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] [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] [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] [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
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox