* [Buildroot] [PATCH] unexport PKG_CONFIG_SYSROOT_DIR
From: Charles Manning @ 2012-12-02 21:13 UTC (permalink / raw)
To: buildroot
If this is not done then pkg-config can get confused.
Thomas and Arnout really deserve the credit for this - I just did
the testing.
Signed-off-by: Charles Manning <cdhmanning@gmail.com>
---
Makefile | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
index 21aa054..758453a 100644
--- a/Makefile
+++ b/Makefile
@@ -172,6 +172,7 @@ export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
# Make sure pkg-config doesn't look outside the buildroot tree
unexport PKG_CONFIG_PATH
+unexport PKG_CONFIG_SYSROOT_DIR
# Having DESTDIR set in the environment confuses the installation
# steps of some packages.
--
1.7.1
^ permalink raw reply related
* [Buildroot] Problem building libglib2
From: Charles Manning @ 2012-12-02 22:42 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50B87033.7090609@mind.be>
On Friday 30 November 2012 21:37:07 Arnout Vandecappelle wrote:
> On 30/11/12 00:11, Thomas Petazzoni wrote:
> > Dear Arnout Vandecappelle,
> >
> > On Thu, 29 Nov 2012 21:27:56 +0100, Arnout Vandecappelle wrote:
> >> We could obviously solve this by unexporting PKG_CONFIG_SYSROOT_DIR,
> >> but perhaps the better approach is to remove those environment variables
> >> from our custom pkgconf?
> >
> > No, we use PKG_CONFIG_SYSROOT_DIR="/" when we build packages for the
> > host, so we can't simply remove support for the PKG_CONFIG_SYSROOT_DIR
> > environment variable. Unexporting PKG_CONFIG_SYSROOT_DIR sounds like
> > the good solution here.
>
> Right.
>
> Charles, would you care to prepare a patch that unexports
> PKG_CONFIG_SYSROOT_DIR and test it in your angstrom environment?
This works and I have submitted a patch.
Thanks
-- Charles
^ permalink raw reply
* [Buildroot] [git commit] libtool: undeprecate for now
From: Peter Korsgaard @ 2012-12-03 0:31 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=f619d5ba20ef46c57259f35a21bb98b7c85c35a4
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Pulseaudio selects libtool, so get rid of the deprecated annotation so
people don't get warnings about unmet dependencies when exiting menuconfig.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/libtool/Config.in | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/package/libtool/Config.in b/package/libtool/Config.in
index 42df25b..d3cf2d7 100644
--- a/package/libtool/Config.in
+++ b/package/libtool/Config.in
@@ -1,7 +1,5 @@
config BR2_PACKAGE_LIBTOOL
bool "libtool"
- # We no longer support a toolchain on the target
- depends on BR2_DEPRECATED
help
Library that hides the complexity of using shared/static libraries
on different platforms behind a consistent, portable interface.
^ permalink raw reply related
* [Buildroot] [git commit] skeleton: add /etc/nsswitch.conf
From: Peter Korsgaard @ 2012-12-03 0:32 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=4c52ff1acfb2953f1ac40cdce4387b7d1d8cef14
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Toolchain Linaro 2012_09 and possibly other glibc based ones
rely on the existence of nsswitch.conf. If it's missing names
from /etc/hosts are not resolved and thus "localhost" is not
known.
Signed-off-by: Stephan Hoffmann <sho@relinux.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
system/skeleton/etc/nsswitch.conf | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/system/skeleton/etc/nsswitch.conf b/system/skeleton/etc/nsswitch.conf
new file mode 100644
index 0000000..d81e2f0
--- /dev/null
+++ b/system/skeleton/etc/nsswitch.conf
@@ -0,0 +1,17 @@
+# /etc/nsswitch.conf
+#
+# Example configuration of GNU Name Service Switch functionality.
+# If you have the `glibc-doc-reference' and `info' packages installed, try:
+# `info libc "Name Service Switch"' for information about this file.
+
+passwd: files
+group: files
+shadow: files
+hosts: files dns
+networks: files
+
+protocols: files
+services: files
+ethers: files
+rpc: files
+
^ permalink raw reply related
* [Buildroot] [git commit] unexport PKG_CONFIG_SYSROOT_DIR
From: Peter Korsgaard @ 2012-12-03 0:32 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=4f607edffda4835884f1f013f5d0ae0cb2eadeb7
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
If this is not done then pkg-config can get confused.
Thomas and Arnout really deserve the credit for this - I just did
the testing.
Signed-off-by: Charles Manning <cdhmanning@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
Makefile | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
index b394fd5..87943b8 100644
--- a/Makefile
+++ b/Makefile
@@ -172,6 +172,7 @@ export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
# Make sure pkg-config doesn't look outside the buildroot tree
unexport PKG_CONFIG_PATH
+unexport PKG_CONFIG_SYSROOT_DIR
# Having DESTDIR set in the environment confuses the installation
# steps of some packages.
^ permalink raw reply related
* [Buildroot] [git commit] Update for 2012.11
From: Peter Korsgaard @ 2012-12-03 0:33 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=d201b95d8c6aa4d21f8655361e12e98630be8c93
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
CHANGES | 10 ++++++++++
Makefile | 2 +-
docs/download.html | 10 +++++-----
docs/news.html | 9 +++++++++
4 files changed, 25 insertions(+), 6 deletions(-)
diff --git a/CHANGES b/CHANGES
index 98fa5c2..2c357eb 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,13 @@
+2012.11, Released December 2nd, 2012:
+
+ Git shallow clone fix for older git version.
+
+ Updated/fixed packages: ctuio, libtool
+
+ Issues resolved (http://bugs.uclibc.org):
+
+ #5726: List all the available hook points
+
2012.11-rc2, Released November 30th, 2012:
Minor fixes around the tree.
diff --git a/Makefile b/Makefile
index 87943b8..9d9985f 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@
#--------------------------------------------------------------
# Set and export the version string
-export BR2_VERSION:=2012.11-rc2
+export BR2_VERSION:=2012.11
# Check for minimal make version (note: this check will break at make 10.x)
MIN_MAKE_VERSION=3.81
diff --git a/docs/download.html b/docs/download.html
index cdf5950..4cb01c9 100644
--- a/docs/download.html
+++ b/docs/download.html
@@ -6,13 +6,13 @@
<p>
-The latest stable release is <b>2012.08</b>, which can be downloaded
+The latest stable release is <b>2012.11</b>, which can be downloaded
here:<p>
-<a href="/downloads/buildroot-2012.08.tar.gz">buildroot-2012.08.tar.gz</a>
+<a href="/downloads/buildroot-2012.11.tar.gz">buildroot-2012.11.tar.gz</a>
or
-<a href="/downloads/buildroot-2012.08.tar.bz2">buildroot-2012.08.tar.bz2</a>.
-
+<a href="/downloads/buildroot-2012.11.tar.bz2">buildroot-2012.11.tar.bz2</a>.
+<!--
<p>
The latest release candidate is <b>2012.11-rc2</b>, which can be
downloaded here:<p>
@@ -21,7 +21,7 @@ downloaded here:<p>
or
<a href="/downloads/buildroot-2012.11-rc2.tar.bz2">buildroot-2012.11-rc2.tar.bz2</a>.
<p>
-
+-->
This and earlier releases can always be downloaded from
<a href="/downloads/">http://buildroot.net/downloads/</a>.
diff --git a/docs/news.html b/docs/news.html
index 84f4cc3..7e791be 100644
--- a/docs/news.html
+++ b/docs/news.html
@@ -5,6 +5,15 @@
<p>
<ul>
+ <li><b>2 December 2012 -- 2012.11 released</b>
+
+ <p>The stable 2012.11 release is out - Thanks to everyone
+ contributing and testing the release candidates. See the
+ <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.11">CHANGES</a>
+ file for more details
+ and go to the <a href="/downloads/">downloads page</a> to pick up the
+ <a href="/downloads/buildroot-2012.11.tar.bz2">2012.11 release</a>.</p>
+
<li><b>30 November 2012 -- 2012.11-rc2 released</b>
<p>RC2 is out with more bugfixes - See the <a
^ permalink raw reply related
* [Buildroot] [PATCH] skeleton: add /etc/nsswitch.conf
From: Peter Korsgaard @ 2012-12-03 1:00 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354468412-29281-1-git-send-email-sho@relinux.de>
>>>>> "Stephan" == Stephan Hoffmann <sho@relinux.de> writes:
Stephan> Toolchain Linaro 2012_09 and possibly other glibc based ones
Stephan> rely on the existence of nsswitch.conf. If it's missing names
Stephan> from /etc/hosts are not resolved and thus "localhost" is not
Stephan> known.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] Allow selection of individual Liberation font sets
From: Charles Manning @ 2012-12-03 1:06 UTC (permalink / raw)
To: buildroot
We don't always want all the font sets on small systems.
Signed-off-by: Charles Manning <cdhmanning@gmail.com>
---
package/liberation/Config.in | 26 ++++++++++++++++++++++++++
package/liberation/liberation.mk | 28 +++++++++++++++++++++++++++-
2 files changed, 53 insertions(+), 1 deletions(-)
diff --git a/package/liberation/Config.in b/package/liberation/Config.in
index 48d4195..11be2b5 100644
--- a/package/liberation/Config.in
+++ b/package/liberation/Config.in
@@ -5,3 +5,29 @@ config BR2_PACKAGE_LIBERATION
three most commonly used fonts on Microsoft systems:
Times New Roman, Arial, and Courier New.
+config BR2_PACKAGE_LIBERATION_SELECT_ALL
+ bool "Select all Liberation fonts"
+ depends on BR2_PACKAGE_LIBERATION
+ default y
+ help
+ Select all Liberation fonts. Otherwise elect individual fonts
+
+if !BR2_PACKAGE_LIBERATION_SELECT_ALL
+
+menu "Individual Liberation Fonts"
+
+config BR2_PACKAGE_LIBERATION_SELECT_MONO
+ bool "Liberation Mono fonts"
+ default n
+
+config BR2_PACKAGE_LIBERATION_SELECT_SANS
+ bool "Liberation Sans fonts"
+ depends on !BR2_PACKAGE_LIBERATION_SELECT_ALL
+ default n
+
+config BR2_PACKAGE_LIBERATION_SELECT_SERIF
+ bool "Liberation Serif fonts"
+ default n
+endmenu
+
+endif
diff --git a/package/liberation/liberation.mk b/package/liberation/liberation.mk
index 7d55650..277d426 100644
--- a/package/liberation/liberation.mk
+++ b/package/liberation/liberation.mk
@@ -9,9 +9,35 @@ LIBERATION_SOURCE = liberation-fonts-ttf-$(LIBERATION_VERSION).tar.gz
LIBERATION_TARGET_DIR = $(TARGET_DIR)/usr/share/fonts/liberation
+ifeq ($(BR2_PACKAGE_LIBERATION_SELECT_ALL),y)
+BR2_PACKAGE_LIBERATION_SELECT_MONO = y
+BR2_PACKAGE_LIBERATION_SELECT_SANS = y
+BR2_PACKAGE_LIBERATION_SELECT_SERIF = y
+endif
+
+ifeq ($(BR2_PACKAGE_LIBERATION_SELECT_MONO),y)
+define LIBERATION_INSTALL_MONO
+ $(INSTALL) -m 644 $(@D)/LiberationMono*.ttf $(LIBERATION_TARGET_DIR)
+endef
+endif
+
+ifeq ($(BR2_PACKAGE_LIBERATION_SELECT_SANS),y)
+define LIBERATION_INSTALL_SANS
+ $(INSTALL) -m 644 $(@D)/LiberationSans*.ttf $(LIBERATION_TARGET_DIR)
+endef
+endif
+
+ifeq ($(BR2_PACKAGE_LIBERATION_SELECT_SERIF),y)
+define LIBERATION_INSTALL_SERIF
+ $(INSTALL) -m 644 $(@D)/LiberationSerif*.ttf $(LIBERATION_TARGET_DIR)
+endef
+endif
+
define LIBERATION_INSTALL_TARGET_CMDS
+ $(LIBERATION_INSTALL_MONO)
+ $(LIBERATION_INSTALL_SANS)
+ $(LIBERATION_INSTALL_SERIF)
mkdir -p $(LIBERATION_TARGET_DIR)
- $(INSTALL) -m 644 $(@D)/*.ttf $(LIBERATION_TARGET_DIR)
endef
define LIBERATION_CLEAN_CMDS
--
1.7.1
^ permalink raw reply related
* [Buildroot] Buildroot 2012.11 released
From: Peter Korsgaard @ 2012-12-03 1:13 UTC (permalink / raw)
To: buildroot
Hi,
Buildroot is a simple tool for creating complete embedded Linux systems
(http://buildroot.net).
Buildroot 2012.11 is released - Go download it at:
http://buildroot.net/downloads/buildroot-2012.11.tar.gz
or
http://buildroot.net/downloads/buildroot-2012.11.tar.bz2
Or get it from Git:
git://git.buildroot.net/buildroot
After 3 months of development a new stable Buildroot release is
out. Significant changes are:
- Large number of new packages (43): at91bootstrap3, ccid & pscs-lite,
gnupg, opus, linux-pam, perl, python3, qemu, tirpc & rpcbind, ..
- Binutils 2.23.1, GCC 4.7.2. We're now defaulting to GCC 4.6. Newer
Codebench and Linaro external toolchains. Libtirpc support for modern
Glibc variants. Toolchain on target has been deprecated.
- Initial Aarch64 support. Xtensa support re-added.
- Defconfig updates for newer kernel / bootloader versions. Defconfig
for Boundarydevices nitrogen6x and QEMU mips64-malta.
- Manual has been reworked and extended.
- Lots of package license annotations.
And the usual package version updates and bug fixes. Thanks to the
http://autobuild.buildroot.net autobuilder setup by Thomas Petazzoni we
have been able to fix a lot of different build issues. See the CHANGES
file for details:
http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.11
Many thanks to all the people contributing to this release:
git shortlog -s -n 2012.08..
221 Peter Korsgaard
148 Gustavo Zacarias
133 Thomas Petazzoni
57 Allan W. Nielsen
48 Samuel Martin
43 Arnout Vandecappelle (Essensium/Mind)
30 Simon Dawson
19 Arnout Vandecappelle
15 Yegor Yefremov
14 Francois Perrad
13 Valentine Barshak
9 Maxime Ripard
7 Stephan Hoffmann
6 Jonathan Liu
6 Sagaert Johan
5 Mark Jackson
5 Will Newton
4 Chris Zankel
4 Danomi Manchego
4 Luca Ceresoli
4 Markos Chandras
4 Yann E. MORIN
3 Alexandre Belloni
3 Baruch Siach
3 Charles Manning
3 Marek Belisko
3 Richard Braun
3 Sven Neumann
3 Waldemar Rymarkiewicz
2 Alexander Khryukin
2 Gregory Hermant
2 J.C. Woltz
2 Kelvin Cheung
2 Stefan Froberg
2 Thiago Correa
2 Vellemans Noel
2 Zoltan Gyarmati
1 Alexander Varnin
1 Beno?t Th?baudeau
1 Davide Viti
1 Dimitry Golubovsky
1 Dmitry
1 Fabio Porcedda
1 Ismael Luceno
1 James Hogan
1 Jean-Christophe PLAGNIOL-VILLARD
1 Jean-Mickael Guerin
1 Jeremy Rosen
1 Ludovic Desroches
1 Maxime Hadjinlian
1 Mischa Jonker
1 Philippe Reynes
1 Stefan Fr?berg
1 Vivien Didelot
1 Waldemar Brodkorb
1 Xinglong Liao
1 gregory hermant
It has been quite a busy development cycle, with more than 850 commits,
lots of new packages and a number of large scale changes. We had a very
nice developer days connected to ELCE in Barcelona. See here for the
report:
http://lists.busybox.net/pipermail/buildroot/2012-November/061558.html
Next release will be 2013.02. Expect the first release candidate early
February, after the developers days which will take place right after
FOSDEM - And the final release towards the end of the month.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] Makefile: kickoff 2013.02 cycle
From: Peter Korsgaard @ 2012-12-03 1:19 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=677d5068b955cf713b73d285e41ec8eedbda8e38
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Patch is too large, so refusing to show it
^ permalink raw reply
* [Buildroot] [git commit] Merge branch 'next'
From: Peter Korsgaard @ 2012-12-03 1:19 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=8cdabd76950e227af088729c53c7f741a46bd9cc
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Kickoff 2013.02 cycle
^ permalink raw reply
* [Buildroot] [PATCH] unexport PKG_CONFIG_SYSROOT_DIR
From: Peter Korsgaard @ 2012-12-03 1:22 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354482784-31167-1-git-send-email-cdhmanning@gmail.com>
>>>>> "Charles" == Charles Manning <cdhmanning@gmail.com> writes:
Charles> If this is not done then pkg-config can get confused.
Charles> Thomas and Arnout really deserve the credit for this - I just did
Charles> the testing.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] reorder fs alphabetically
From: Peter Korsgaard @ 2012-12-03 7:19 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=d1692abc007d2c50568e885d7ab6a312e3f8ae1e
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: J??r??my Rosen <jeremy.rosen@openwide.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
fs/Config.in | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/fs/Config.in b/fs/Config.in
index 94154ea..da4c5ff 100644
--- a/fs/Config.in
+++ b/fs/Config.in
@@ -1,15 +1,15 @@
menu "Filesystem images"
-source "fs/cramfs/Config.in"
source "fs/cloop/Config.in"
+source "fs/cpio/Config.in"
+source "fs/cramfs/Config.in"
source "fs/ext2/Config.in"
+source "fs/initramfs/Config.in"
+source "fs/iso9660/Config.in"
source "fs/jffs2/Config.in"
-source "fs/ubifs/Config.in"
+source "fs/romfs/Config.in"
source "fs/squashfs/Config.in"
source "fs/tar/Config.in"
-source "fs/cpio/Config.in"
-source "fs/iso9660/Config.in"
-source "fs/initramfs/Config.in"
-source "fs/romfs/Config.in"
+source "fs/ubifs/Config.in"
endmenu
^ permalink raw reply related
* [Buildroot] [PATCH] reorder fs alphabetically
From: Peter Korsgaard @ 2012-12-03 7:19 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354286667-19952-1-git-send-email-jeremy.rosen@openwide.fr>
>>>>> "J?r?my" == J?r?my Rosen <jeremy.rosen@openwide.fr> writes:
J?r?my> Signed-off-by: J?r?my Rosen <jeremy.rosen@openwide.fr>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] package/cURL: fix static link whith openSSL
From: Peter Korsgaard @ 2012-12-03 7:21 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=61d322c3d258072460fddbab0b39c8bf4cc3e0bc
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
When openSSL is selected, cURL is configured to use it.
But in this case, the libcurl.pc file /forgets/ to require link
against -ldl.
This can happen, for example, when BR2_PREFER_STATIC_LIB is not set,
but an executable wants to be linked statically (for various reasons
which are irrelevant here).
Fix that by appending a 'Requires: openssl' line to libcurl.pc.in,
but only if openSSL is enabled.
As suggested by Arnout, do it in a post-patch hook, rather as a
post-install hook.
Cc: Arnout Vandecappelle <arnout@mind.be>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/libcurl/libcurl.mk | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
index 8d8fdb4..888f6d0 100644
--- a/package/libcurl/libcurl.mk
+++ b/package/libcurl/libcurl.mk
@@ -25,17 +25,20 @@ else
LIBCURL_CONF_OPT += --without-ssl
endif
+define LIBCURL_FIX_DOT_PC
+ printf 'Requires: openssl\n' >>$(@D)/libcurl.pc.in
+endef
+LIBCURL_POST_PATCH_HOOKS += $(if $(BR2_PACKAGE_OPENSSL),LIBCURL_FIX_DOT_PC)
+
define LIBCURL_TARGET_CLEANUP
rm -rf $(TARGET_DIR)/usr/bin/curl-config \
$(if $(BR2_PACKAGE_CURL),,$(TARGET_DIR)/usr/bin/curl)
endef
-
LIBCURL_POST_INSTALL_TARGET_HOOKS += LIBCURL_TARGET_CLEANUP
define LIBCURL_STAGING_FIXUP_CURL_CONFIG
$(SED) "s,prefix=/usr,prefix=$(STAGING_DIR)/usr," $(STAGING_DIR)/usr/bin/curl-config
endef
-
LIBCURL_POST_INSTALL_STAGING_HOOKS += LIBCURL_STAGING_FIXUP_CURL_CONFIG
$(eval $(autotools-package))
^ permalink raw reply related
* [Buildroot] [PATCH 01/51] package/cURL: fix static link whith openSSL
From: Peter Korsgaard @ 2012-12-03 7:21 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354146890-27380-2-git-send-email-yann.morin.1998@free.fr>
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
Yann> When openSSL is selected, cURL is configured to use it.
Yann> But in this case, the libcurl.pc file /forgets/ to require link
Yann> against -ldl.
Yann> This can happen, for example, when BR2_PREFER_STATIC_LIB is not set,
Yann> but an executable wants to be linked statically (for various reasons
Yann> which are irrelevant here).
Yann> Fix that by appending a 'Requires: openssl' line to libcurl.pc.in,
Yann> but only if openSSL is enabled.
Yann> As suggested by Arnout, do it in a post-patch hook, rather as a
Yann> post-install hook.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-12-02
From: Thomas Petazzoni @ 2012-12-03 7:34 UTC (permalink / raw)
To: buildroot
Hello,
On 2012-12-02, 164 random build tests have been done and
submitted on autobuild.buildroot.net.
96 builds have been successful
68 builds have failed
Below the results of the failed builds. Successful builds are omitted.
Build 4d78e4d0e0200654de50b1e1abfd2a8819b949a2
==============================================
Status : NOK
Failure reason : sane-backends-1.0.22
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 00:06:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/4d78e4d0e0200654de50b1e1abfd2a8819b949a2/build-end.log
Complete log : http://autobuild.buildroot.net/results/4d78e4d0e0200654de50b1e1abfd2a8819b949a2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4d78e4d0e0200654de50b1e1abfd2a8819b949a2/config
Defconfig : http://autobuild.buildroot.net/results/4d78e4d0e0200654de50b1e1abfd2a8819b949a2/defconfig
Build ff657a056fe9662ae00cffc082c1ee622290cfc7
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-02 00:17:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/ff657a056fe9662ae00cffc082c1ee622290cfc7/build-end.log
Complete log : http://autobuild.buildroot.net/results/ff657a056fe9662ae00cffc082c1ee622290cfc7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ff657a056fe9662ae00cffc082c1ee622290cfc7/config
Defconfig : http://autobuild.buildroot.net/results/ff657a056fe9662ae00cffc082c1ee622290cfc7/defconfig
Build 09379686a0a70e071ea66ea8010c290cf780fa22
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-02 00:17:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/09379686a0a70e071ea66ea8010c290cf780fa22/build-end.log
Complete log : http://autobuild.buildroot.net/results/09379686a0a70e071ea66ea8010c290cf780fa22/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/09379686a0a70e071ea66ea8010c290cf780fa22/config
Defconfig : http://autobuild.buildroot.net/results/09379686a0a70e071ea66ea8010c290cf780fa22/defconfig
Build a6ac2acf595a58018ecff8f69b33cb80ac846abd
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 00:33:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/a6ac2acf595a58018ecff8f69b33cb80ac846abd/build-end.log
Complete log : http://autobuild.buildroot.net/results/a6ac2acf595a58018ecff8f69b33cb80ac846abd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a6ac2acf595a58018ecff8f69b33cb80ac846abd/config
Defconfig : http://autobuild.buildroot.net/results/a6ac2acf595a58018ecff8f69b33cb80ac846abd/defconfig
Build 8ab3fd44c7734af0cf8b20224b8ff01169af235b
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : xtensa
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 00:45:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/8ab3fd44c7734af0cf8b20224b8ff01169af235b/build-end.log
Complete log : http://autobuild.buildroot.net/results/8ab3fd44c7734af0cf8b20224b8ff01169af235b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8ab3fd44c7734af0cf8b20224b8ff01169af235b/config
Defconfig : http://autobuild.buildroot.net/results/8ab3fd44c7734af0cf8b20224b8ff01169af235b/defconfig
Build a59d72fac1d8802c26fdad1395f457d025847bba
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 00:45:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/a59d72fac1d8802c26fdad1395f457d025847bba/build-end.log
Complete log : http://autobuild.buildroot.net/results/a59d72fac1d8802c26fdad1395f457d025847bba/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a59d72fac1d8802c26fdad1395f457d025847bba/config
Defconfig : http://autobuild.buildroot.net/results/a59d72fac1d8802c26fdad1395f457d025847bba/defconfig
Build 1d3fe8371e90732c88aab5540e50fcc2b9ead44f
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-02 01:28:25
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/1d3fe8371e90732c88aab5540e50fcc2b9ead44f/build-end.log
Complete log : http://autobuild.buildroot.net/results/1d3fe8371e90732c88aab5540e50fcc2b9ead44f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1d3fe8371e90732c88aab5540e50fcc2b9ead44f/config
Defconfig : http://autobuild.buildroot.net/results/1d3fe8371e90732c88aab5540e50fcc2b9ead44f/defconfig
Build 29c0ac7fa94705d42ac0f5b649b22d207a242d57
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-12-02 01:29:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/29c0ac7fa94705d42ac0f5b649b22d207a242d57/build-end.log
Complete log : http://autobuild.buildroot.net/results/29c0ac7fa94705d42ac0f5b649b22d207a242d57/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/29c0ac7fa94705d42ac0f5b649b22d207a242d57/config
Defconfig : http://autobuild.buildroot.net/results/29c0ac7fa94705d42ac0f5b649b22d207a242d57/defconfig
Build 65b9380f5a08ee91bda3d4f096ca51aac010c12a
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-12-02 01:29:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/65b9380f5a08ee91bda3d4f096ca51aac010c12a/build-end.log
Complete log : http://autobuild.buildroot.net/results/65b9380f5a08ee91bda3d4f096ca51aac010c12a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/65b9380f5a08ee91bda3d4f096ca51aac010c12a/config
Defconfig : http://autobuild.buildroot.net/results/65b9380f5a08ee91bda3d4f096ca51aac010c12a/defconfig
Build 1ccb47b0e44f5726d306ae5758cb8202293d1ad6
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-12-02 01:30:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/1ccb47b0e44f5726d306ae5758cb8202293d1ad6/build-end.log
Complete log : http://autobuild.buildroot.net/results/1ccb47b0e44f5726d306ae5758cb8202293d1ad6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1ccb47b0e44f5726d306ae5758cb8202293d1ad6/config
Defconfig : http://autobuild.buildroot.net/results/1ccb47b0e44f5726d306ae5758cb8202293d1ad6/defconfig
Build 6e0fae815f4ec9c570c89174c6615814c2b848ec
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 02:38:30
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/6e0fae815f4ec9c570c89174c6615814c2b848ec/build-end.log
Complete log : http://autobuild.buildroot.net/results/6e0fae815f4ec9c570c89174c6615814c2b848ec/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6e0fae815f4ec9c570c89174c6615814c2b848ec/config
Defconfig : http://autobuild.buildroot.net/results/6e0fae815f4ec9c570c89174c6615814c2b848ec/defconfig
Build d8ba0380cc7408a3800fbad75eb95adbb4777804
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-02 02:40:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/d8ba0380cc7408a3800fbad75eb95adbb4777804/build-end.log
Complete log : http://autobuild.buildroot.net/results/d8ba0380cc7408a3800fbad75eb95adbb4777804/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d8ba0380cc7408a3800fbad75eb95adbb4777804/config
Defconfig : http://autobuild.buildroot.net/results/d8ba0380cc7408a3800fbad75eb95adbb4777804/defconfig
Build 8fc237eee5f9ea06aa237177c811105f4857c390
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 02:41:36
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/8fc237eee5f9ea06aa237177c811105f4857c390/build-end.log
Complete log : http://autobuild.buildroot.net/results/8fc237eee5f9ea06aa237177c811105f4857c390/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8fc237eee5f9ea06aa237177c811105f4857c390/config
Defconfig : http://autobuild.buildroot.net/results/8fc237eee5f9ea06aa237177c811105f4857c390/defconfig
Build 6b4f0d60fe3cc0ef749b6833951653db5433167a
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 03:07:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/6b4f0d60fe3cc0ef749b6833951653db5433167a/build-end.log
Complete log : http://autobuild.buildroot.net/results/6b4f0d60fe3cc0ef749b6833951653db5433167a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6b4f0d60fe3cc0ef749b6833951653db5433167a/config
Defconfig : http://autobuild.buildroot.net/results/6b4f0d60fe3cc0ef749b6833951653db5433167a/defconfig
Build b8dc11608d5b7267fb3b04b84e0c13301671bfe5
==============================================
Status : NOK
Failure reason : ffmpeg-0.8.12
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 03:11:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/b8dc11608d5b7267fb3b04b84e0c13301671bfe5/build-end.log
Complete log : http://autobuild.buildroot.net/results/b8dc11608d5b7267fb3b04b84e0c13301671bfe5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b8dc11608d5b7267fb3b04b84e0c13301671bfe5/config
Defconfig : http://autobuild.buildroot.net/results/b8dc11608d5b7267fb3b04b84e0c13301671bfe5/defconfig
Build 3f37b3df07e2ac75948098e39ec0217a8d860ea0
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 03:11:43
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/3f37b3df07e2ac75948098e39ec0217a8d860ea0/build-end.log
Complete log : http://autobuild.buildroot.net/results/3f37b3df07e2ac75948098e39ec0217a8d860ea0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3f37b3df07e2ac75948098e39ec0217a8d860ea0/config
Defconfig : http://autobuild.buildroot.net/results/3f37b3df07e2ac75948098e39ec0217a8d860ea0/defconfig
Build 8b2a47852ee72a7f653274aea5cd5d0971c6d8b8
==============================================
Status : NOK
Failure reason : Makefile.legacy:12: *** "You have legacy configuration in your .config! Please check your configuration.". Stop.
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 03:11:45
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=1a59dfae0ce9e93da413285e7c47a16f7317123e
End of log : http://autobuild.buildroot.net/results/8b2a47852ee72a7f653274aea5cd5d0971c6d8b8/build-end.log
Complete log : http://autobuild.buildroot.net/results/8b2a47852ee72a7f653274aea5cd5d0971c6d8b8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8b2a47852ee72a7f653274aea5cd5d0971c6d8b8/config
Defconfig : http://autobuild.buildroot.net/results/8b2a47852ee72a7f653274aea5cd5d0971c6d8b8/defconfig
Build dc15b887310865a5fd72d9a46c7c5fe02bb9459d
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 03:56:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/dc15b887310865a5fd72d9a46c7c5fe02bb9459d/build-end.log
Complete log : http://autobuild.buildroot.net/results/dc15b887310865a5fd72d9a46c7c5fe02bb9459d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/dc15b887310865a5fd72d9a46c7c5fe02bb9459d/config
Defconfig : http://autobuild.buildroot.net/results/dc15b887310865a5fd72d9a46c7c5fe02bb9459d/defconfig
Build 7824a7d5fa1cf571bd568ed9d1bd6dbf89e75723
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 04:33:05
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/7824a7d5fa1cf571bd568ed9d1bd6dbf89e75723/build-end.log
Complete log : http://autobuild.buildroot.net/results/7824a7d5fa1cf571bd568ed9d1bd6dbf89e75723/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7824a7d5fa1cf571bd568ed9d1bd6dbf89e75723/config
Defconfig : http://autobuild.buildroot.net/results/7824a7d5fa1cf571bd568ed9d1bd6dbf89e75723/defconfig
Build 51acb92fd4dfc0cdce0f55527ac91ee6324a01b2
==============================================
Status : NOK
Failure reason : libnspr-4.8.7
Architecture : aarch64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 04:43:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/51acb92fd4dfc0cdce0f55527ac91ee6324a01b2/build-end.log
Complete log : http://autobuild.buildroot.net/results/51acb92fd4dfc0cdce0f55527ac91ee6324a01b2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/51acb92fd4dfc0cdce0f55527ac91ee6324a01b2/config
Defconfig : http://autobuild.buildroot.net/results/51acb92fd4dfc0cdce0f55527ac91ee6324a01b2/defconfig
Build 6fe8b573e5480a6d3ae0516a183f9489e3fbf3a3
==============================================
Status : NOK
Failure reason : valgrind-3.7.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 05:41:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/6fe8b573e5480a6d3ae0516a183f9489e3fbf3a3/build-end.log
Complete log : http://autobuild.buildroot.net/results/6fe8b573e5480a6d3ae0516a183f9489e3fbf3a3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6fe8b573e5480a6d3ae0516a183f9489e3fbf3a3/config
Defconfig : http://autobuild.buildroot.net/results/6fe8b573e5480a6d3ae0516a183f9489e3fbf3a3/defconfig
Build 0181780c852e3de82339cb62fec86f00b36d7b6f
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 06:42:30
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/0181780c852e3de82339cb62fec86f00b36d7b6f/build-end.log
Complete log : http://autobuild.buildroot.net/results/0181780c852e3de82339cb62fec86f00b36d7b6f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0181780c852e3de82339cb62fec86f00b36d7b6f/config
Defconfig : http://autobuild.buildroot.net/results/0181780c852e3de82339cb62fec86f00b36d7b6f/defconfig
Build d261bc976284068d31b547141a4e647aa473e487
==============================================
Status : NOK
Failure reason : make: *** No targets specified and no makefile found. Stop.
Architecture :
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 07:52:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=
End of log : http://autobuild.buildroot.net/results/d261bc976284068d31b547141a4e647aa473e487/build-end.log
Complete log : http://autobuild.buildroot.net/results/d261bc976284068d31b547141a4e647aa473e487/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d261bc976284068d31b547141a4e647aa473e487/config
Defconfig : http://autobuild.buildroot.net/results/d261bc976284068d31b547141a4e647aa473e487/defconfig
Build 7c27ee269769b4ab21aaab90be2142b8b428ab4b
==============================================
Status : NOK
Failure reason : make: *** No targets specified and no makefile found. Stop.
Architecture :
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 07:52:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=
End of log : http://autobuild.buildroot.net/results/7c27ee269769b4ab21aaab90be2142b8b428ab4b/build-end.log
Complete log : http://autobuild.buildroot.net/results/7c27ee269769b4ab21aaab90be2142b8b428ab4b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7c27ee269769b4ab21aaab90be2142b8b428ab4b/config
Defconfig : http://autobuild.buildroot.net/results/7c27ee269769b4ab21aaab90be2142b8b428ab4b/defconfig
Build 3aa98e39e5782cb2fd80610c842330ab094b0908
==============================================
Status : NOK
Failure reason : make: *** No targets specified and no makefile found. Stop.
Architecture :
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 07:52:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=
End of log : http://autobuild.buildroot.net/results/3aa98e39e5782cb2fd80610c842330ab094b0908/build-end.log
Complete log : http://autobuild.buildroot.net/results/3aa98e39e5782cb2fd80610c842330ab094b0908/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3aa98e39e5782cb2fd80610c842330ab094b0908/config
Defconfig : http://autobuild.buildroot.net/results/3aa98e39e5782cb2fd80610c842330ab094b0908/defconfig
Build 1476438452539ca4a4e5dbcd96561cd0da2db5af
==============================================
Status : NOK
Failure reason : make: *** No targets specified and no makefile found. Stop.
Architecture :
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 07:52:19
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=
End of log : http://autobuild.buildroot.net/results/1476438452539ca4a4e5dbcd96561cd0da2db5af/build-end.log
Complete log : http://autobuild.buildroot.net/results/1476438452539ca4a4e5dbcd96561cd0da2db5af/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1476438452539ca4a4e5dbcd96561cd0da2db5af/config
Defconfig : http://autobuild.buildroot.net/results/1476438452539ca4a4e5dbcd96561cd0da2db5af/defconfig
Build 340fe05687358b4e9bba303e3cdb644b2e491063
==============================================
Status : NOK
Failure reason : sconeserver-180
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 07:55:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/340fe05687358b4e9bba303e3cdb644b2e491063/build-end.log
Complete log : http://autobuild.buildroot.net/results/340fe05687358b4e9bba303e3cdb644b2e491063/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/340fe05687358b4e9bba303e3cdb644b2e491063/config
Defconfig : http://autobuild.buildroot.net/results/340fe05687358b4e9bba303e3cdb644b2e491063/defconfig
Build 800a39104efe34cb235d8a132104b9f69c67cc2d
==============================================
Status : NOK
Failure reason : gpsd-3.7
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 08:11:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/800a39104efe34cb235d8a132104b9f69c67cc2d/build-end.log
Complete log : http://autobuild.buildroot.net/results/800a39104efe34cb235d8a132104b9f69c67cc2d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/800a39104efe34cb235d8a132104b9f69c67cc2d/config
Defconfig : http://autobuild.buildroot.net/results/800a39104efe34cb235d8a132104b9f69c67cc2d/defconfig
Build 0b8119630271ebe6824b2ce5a134a6371517cbf5
==============================================
Status : NOK
Failure reason : libnss-3.12.9
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 09:29:18
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/0b8119630271ebe6824b2ce5a134a6371517cbf5/build-end.log
Complete log : http://autobuild.buildroot.net/results/0b8119630271ebe6824b2ce5a134a6371517cbf5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0b8119630271ebe6824b2ce5a134a6371517cbf5/config
Defconfig : http://autobuild.buildroot.net/results/0b8119630271ebe6824b2ce5a134a6371517cbf5/defconfig
Build d7992e3a14e2c5e8320a3ecdb6fc6bf33e88d44e
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 09:30:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/d7992e3a14e2c5e8320a3ecdb6fc6bf33e88d44e/build-end.log
Complete log : http://autobuild.buildroot.net/results/d7992e3a14e2c5e8320a3ecdb6fc6bf33e88d44e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d7992e3a14e2c5e8320a3ecdb6fc6bf33e88d44e/config
Defconfig : http://autobuild.buildroot.net/results/d7992e3a14e2c5e8320a3ecdb6fc6bf33e88d44e/defconfig
Build 7cd329b3cfa28c897b44af76544c166ad190ea8f
==============================================
Status : NOK
Failure reason : can-utils-836d3cc0122ce31a1b732d369cbd27b690c3110f
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 09:51:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/7cd329b3cfa28c897b44af76544c166ad190ea8f/build-end.log
Complete log : http://autobuild.buildroot.net/results/7cd329b3cfa28c897b44af76544c166ad190ea8f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7cd329b3cfa28c897b44af76544c166ad190ea8f/config
Defconfig : http://autobuild.buildroot.net/results/7cd329b3cfa28c897b44af76544c166ad190ea8f/defconfig
Build 4ee2f755f70cd69d4978a92bd188008c6a59526c
==============================================
Status : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture : arm
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 11:15:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/4ee2f755f70cd69d4978a92bd188008c6a59526c/build-end.log
Complete log : http://autobuild.buildroot.net/results/4ee2f755f70cd69d4978a92bd188008c6a59526c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4ee2f755f70cd69d4978a92bd188008c6a59526c/config
Defconfig : http://autobuild.buildroot.net/results/4ee2f755f70cd69d4978a92bd188008c6a59526c/defconfig
Build 58dea1e2ba639230f0bdbc8708c9a7d7f42c6f9f
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 11:39:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/58dea1e2ba639230f0bdbc8708c9a7d7f42c6f9f/build-end.log
Complete log : http://autobuild.buildroot.net/results/58dea1e2ba639230f0bdbc8708c9a7d7f42c6f9f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/58dea1e2ba639230f0bdbc8708c9a7d7f42c6f9f/config
Defconfig : http://autobuild.buildroot.net/results/58dea1e2ba639230f0bdbc8708c9a7d7f42c6f9f/defconfig
Build 10b72bf1f05a07eb81194308c8779b68fe20d4df
==============================================
Status : NOK
Failure reason : dbus-1.4.24
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 11:40:56
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/10b72bf1f05a07eb81194308c8779b68fe20d4df/build-end.log
Complete log : http://autobuild.buildroot.net/results/10b72bf1f05a07eb81194308c8779b68fe20d4df/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/10b72bf1f05a07eb81194308c8779b68fe20d4df/config
Defconfig : http://autobuild.buildroot.net/results/10b72bf1f05a07eb81194308c8779b68fe20d4df/defconfig
Build f636dac6e8071736e581681a89ee77194d3b6d99
==============================================
Status : NOK
Failure reason : qt-4.8.3
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 11:54:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/f636dac6e8071736e581681a89ee77194d3b6d99/build-end.log
Complete log : http://autobuild.buildroot.net/results/f636dac6e8071736e581681a89ee77194d3b6d99/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f636dac6e8071736e581681a89ee77194d3b6d99/config
Defconfig : http://autobuild.buildroot.net/results/f636dac6e8071736e581681a89ee77194d3b6d99/defconfig
Build bc79126b85da2d70035c8adca23d5f08231b8df2
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 12:42:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/bc79126b85da2d70035c8adca23d5f08231b8df2/build-end.log
Complete log : http://autobuild.buildroot.net/results/bc79126b85da2d70035c8adca23d5f08231b8df2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bc79126b85da2d70035c8adca23d5f08231b8df2/config
Defconfig : http://autobuild.buildroot.net/results/bc79126b85da2d70035c8adca23d5f08231b8df2/defconfig
Build c519e01ca8fa6984ee76dec814f031ab0e82c286
==============================================
Status : NOK
Failure reason : dbus-1.4.24
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 12:44:30
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/c519e01ca8fa6984ee76dec814f031ab0e82c286/build-end.log
Complete log : http://autobuild.buildroot.net/results/c519e01ca8fa6984ee76dec814f031ab0e82c286/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c519e01ca8fa6984ee76dec814f031ab0e82c286/config
Defconfig : http://autobuild.buildroot.net/results/c519e01ca8fa6984ee76dec814f031ab0e82c286/defconfig
Build d008b6e8f34ff0494f91446e6f150891ab51790c
==============================================
Status : NOK
Failure reason : libroxml-2.2.0
Architecture : arm
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 12:45:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/d008b6e8f34ff0494f91446e6f150891ab51790c/build-end.log
Complete log : http://autobuild.buildroot.net/results/d008b6e8f34ff0494f91446e6f150891ab51790c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d008b6e8f34ff0494f91446e6f150891ab51790c/config
Defconfig : http://autobuild.buildroot.net/results/d008b6e8f34ff0494f91446e6f150891ab51790c/defconfig
Build 18683162f845186ce826b82531d51de69d8f53ea
==============================================
Status : NOK
Failure reason : luajit-2.0.0-beta11
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 13:06:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/18683162f845186ce826b82531d51de69d8f53ea/build-end.log
Complete log : http://autobuild.buildroot.net/results/18683162f845186ce826b82531d51de69d8f53ea/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/18683162f845186ce826b82531d51de69d8f53ea/config
Defconfig : http://autobuild.buildroot.net/results/18683162f845186ce826b82531d51de69d8f53ea/defconfig
Build e297cbf60e455d3690fb43f9e8c0a6c8f9fac863
==============================================
Status : NOK
Failure reason : host-python-2.7.3
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-02 13:12:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/e297cbf60e455d3690fb43f9e8c0a6c8f9fac863/build-end.log
Complete log : http://autobuild.buildroot.net/results/e297cbf60e455d3690fb43f9e8c0a6c8f9fac863/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e297cbf60e455d3690fb43f9e8c0a6c8f9fac863/config
Defconfig : http://autobuild.buildroot.net/results/e297cbf60e455d3690fb43f9e8c0a6c8f9fac863/defconfig
Build 63f1b035b7b57028831e7d4d82bd8038c46d7b11
==============================================
Status : NOK
Failure reason : xapp_xmh-1.0.2
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-12-02 13:34:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/63f1b035b7b57028831e7d4d82bd8038c46d7b11/build-end.log
Complete log : http://autobuild.buildroot.net/results/63f1b035b7b57028831e7d4d82bd8038c46d7b11/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/63f1b035b7b57028831e7d4d82bd8038c46d7b11/config
Defconfig : http://autobuild.buildroot.net/results/63f1b035b7b57028831e7d4d82bd8038c46d7b11/defconfig
Build 5ae698da09edfecbb8978acabd0b89da2a506a99
==============================================
Status : NOK
Failure reason : ltrace-0.6.0
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 13:57:36
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/5ae698da09edfecbb8978acabd0b89da2a506a99/build-end.log
Complete log : http://autobuild.buildroot.net/results/5ae698da09edfecbb8978acabd0b89da2a506a99/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5ae698da09edfecbb8978acabd0b89da2a506a99/config
Defconfig : http://autobuild.buildroot.net/results/5ae698da09edfecbb8978acabd0b89da2a506a99/defconfig
Build 19a4402bf3f2f5407ad61d57e337997a2d9f1f8d
==============================================
Status : NOK
Failure reason : dbus-1.4.24
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 14:03:38
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/19a4402bf3f2f5407ad61d57e337997a2d9f1f8d/build-end.log
Complete log : http://autobuild.buildroot.net/results/19a4402bf3f2f5407ad61d57e337997a2d9f1f8d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/19a4402bf3f2f5407ad61d57e337997a2d9f1f8d/config
Defconfig : http://autobuild.buildroot.net/results/19a4402bf3f2f5407ad61d57e337997a2d9f1f8d/defconfig
Build 2006a64d585d505def63420b41d15d78b1c716fc
==============================================
Status : NOK
Failure reason : ffmpeg-0.8.12
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 14:31:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/2006a64d585d505def63420b41d15d78b1c716fc/build-end.log
Complete log : http://autobuild.buildroot.net/results/2006a64d585d505def63420b41d15d78b1c716fc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2006a64d585d505def63420b41d15d78b1c716fc/config
Defconfig : http://autobuild.buildroot.net/results/2006a64d585d505def63420b41d15d78b1c716fc/defconfig
Build 7692d75d93cb4dba629cf38a9e5b7b896a96c11c
==============================================
Status : NOK
Failure reason : xapp_xmh-1.0.2
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-12-02 14:41:44
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/7692d75d93cb4dba629cf38a9e5b7b896a96c11c/build-end.log
Complete log : http://autobuild.buildroot.net/results/7692d75d93cb4dba629cf38a9e5b7b896a96c11c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7692d75d93cb4dba629cf38a9e5b7b896a96c11c/config
Defconfig : http://autobuild.buildroot.net/results/7692d75d93cb4dba629cf38a9e5b7b896a96c11c/defconfig
Build db8fe9c642261d9bc7b0ff6454be40f89a432918
==============================================
Status : NOK
Failure reason : libnspr-4.8.7
Architecture : aarch64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 14:47:36
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/db8fe9c642261d9bc7b0ff6454be40f89a432918/build-end.log
Complete log : http://autobuild.buildroot.net/results/db8fe9c642261d9bc7b0ff6454be40f89a432918/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/db8fe9c642261d9bc7b0ff6454be40f89a432918/config
Defconfig : http://autobuild.buildroot.net/results/db8fe9c642261d9bc7b0ff6454be40f89a432918/defconfig
Build 627feb0fb8374cb19931f2380c247b5fb114e6fe
==============================================
Status : NOK
Failure reason : pthread-stubs-0.3
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 14:53:32
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/627feb0fb8374cb19931f2380c247b5fb114e6fe/build-end.log
Complete log : http://autobuild.buildroot.net/results/627feb0fb8374cb19931f2380c247b5fb114e6fe/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/627feb0fb8374cb19931f2380c247b5fb114e6fe/config
Defconfig : http://autobuild.buildroot.net/results/627feb0fb8374cb19931f2380c247b5fb114e6fe/defconfig
Build d268ec7f79d7dc532a5efe10530a656da8c9f461
==============================================
Status : NOK
Failure reason : sane-backends-1.0.22
Architecture : arm
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 15:02:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/d268ec7f79d7dc532a5efe10530a656da8c9f461/build-end.log
Complete log : http://autobuild.buildroot.net/results/d268ec7f79d7dc532a5efe10530a656da8c9f461/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d268ec7f79d7dc532a5efe10530a656da8c9f461/config
Defconfig : http://autobuild.buildroot.net/results/d268ec7f79d7dc532a5efe10530a656da8c9f461/defconfig
Build b3bef9703352b551820c3fdd3e9494ffed900b2a
==============================================
Status : NOK
Failure reason : mplayer-1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 15:03:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/b3bef9703352b551820c3fdd3e9494ffed900b2a/build-end.log
Complete log : http://autobuild.buildroot.net/results/b3bef9703352b551820c3fdd3e9494ffed900b2a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b3bef9703352b551820c3fdd3e9494ffed900b2a/config
Defconfig : http://autobuild.buildroot.net/results/b3bef9703352b551820c3fdd3e9494ffed900b2a/defconfig
Build dcde0b8f0f3f1306400d224f8794406bb0c6ac71
==============================================
Status : NOK
Failure reason : host-libglib2-2.30.3
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-02 15:07:22
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/dcde0b8f0f3f1306400d224f8794406bb0c6ac71/build-end.log
Complete log : http://autobuild.buildroot.net/results/dcde0b8f0f3f1306400d224f8794406bb0c6ac71/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/dcde0b8f0f3f1306400d224f8794406bb0c6ac71/config
Defconfig : http://autobuild.buildroot.net/results/dcde0b8f0f3f1306400d224f8794406bb0c6ac71/defconfig
Build 195cda4eb01a114251c13a1db16664808a2f05ba
==============================================
Status : NOK
Failure reason : sane-backends-1.0.22
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 15:35:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/195cda4eb01a114251c13a1db16664808a2f05ba/build-end.log
Complete log : http://autobuild.buildroot.net/results/195cda4eb01a114251c13a1db16664808a2f05ba/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/195cda4eb01a114251c13a1db16664808a2f05ba/config
Defconfig : http://autobuild.buildroot.net/results/195cda4eb01a114251c13a1db16664808a2f05ba/defconfig
Build c8529503b0472df42d52ea5f47b0cded03a3d971
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 16:54:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/c8529503b0472df42d52ea5f47b0cded03a3d971/build-end.log
Complete log : http://autobuild.buildroot.net/results/c8529503b0472df42d52ea5f47b0cded03a3d971/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c8529503b0472df42d52ea5f47b0cded03a3d971/config
Defconfig : http://autobuild.buildroot.net/results/c8529503b0472df42d52ea5f47b0cded03a3d971/defconfig
Build 1c7f9dbd122397e493c6b28829d8077dbd72dc3f
==============================================
Status : NOK
Failure reason : libroxml-2.2.0
Architecture : arm
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 17:01:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/1c7f9dbd122397e493c6b28829d8077dbd72dc3f/build-end.log
Complete log : http://autobuild.buildroot.net/results/1c7f9dbd122397e493c6b28829d8077dbd72dc3f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1c7f9dbd122397e493c6b28829d8077dbd72dc3f/config
Defconfig : http://autobuild.buildroot.net/results/1c7f9dbd122397e493c6b28829d8077dbd72dc3f/defconfig
Build 5e2739dcd238c3c5e84ecacaa7003e2b77ba8c19
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.26
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 17:04:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/5e2739dcd238c3c5e84ecacaa7003e2b77ba8c19/build-end.log
Complete log : http://autobuild.buildroot.net/results/5e2739dcd238c3c5e84ecacaa7003e2b77ba8c19/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5e2739dcd238c3c5e84ecacaa7003e2b77ba8c19/config
Defconfig : http://autobuild.buildroot.net/results/5e2739dcd238c3c5e84ecacaa7003e2b77ba8c19/defconfig
Build 38db9da9ea5510bd76be9d8e8a07453196a18835
==============================================
Status : NOK
Failure reason : host-libglib2-2.30.3
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-02 17:52:32
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/38db9da9ea5510bd76be9d8e8a07453196a18835/build-end.log
Complete log : http://autobuild.buildroot.net/results/38db9da9ea5510bd76be9d8e8a07453196a18835/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/38db9da9ea5510bd76be9d8e8a07453196a18835/config
Defconfig : http://autobuild.buildroot.net/results/38db9da9ea5510bd76be9d8e8a07453196a18835/defconfig
Build f236178acb53e1ada13219911777b66184a61880
==============================================
Status : NOK
Failure reason : libroxml-2.2.0
Architecture : arm
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 18:27:05
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8a46d4bf1fe81dc60aca8795d9e2c69a9c252e37
End of log : http://autobuild.buildroot.net/results/f236178acb53e1ada13219911777b66184a61880/build-end.log
Complete log : http://autobuild.buildroot.net/results/f236178acb53e1ada13219911777b66184a61880/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f236178acb53e1ada13219911777b66184a61880/config
Defconfig : http://autobuild.buildroot.net/results/f236178acb53e1ada13219911777b66184a61880/defconfig
Build 6d4ee83971a918a41de750940135d8380d3136d8
==============================================
Status : NOK
Failure reason : host-libglib2-2.30.3
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-02 19:23:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/6d4ee83971a918a41de750940135d8380d3136d8/build-end.log
Complete log : http://autobuild.buildroot.net/results/6d4ee83971a918a41de750940135d8380d3136d8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6d4ee83971a918a41de750940135d8380d3136d8/config
Defconfig : http://autobuild.buildroot.net/results/6d4ee83971a918a41de750940135d8380d3136d8/defconfig
Build 45045f7717330e731bed1ddbc53ed2b08cbeabcf
==============================================
Status : NOK
Failure reason : host-libglib2-2.30.3
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-02 19:42:56
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/45045f7717330e731bed1ddbc53ed2b08cbeabcf/build-end.log
Complete log : http://autobuild.buildroot.net/results/45045f7717330e731bed1ddbc53ed2b08cbeabcf/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/45045f7717330e731bed1ddbc53ed2b08cbeabcf/config
Defconfig : http://autobuild.buildroot.net/results/45045f7717330e731bed1ddbc53ed2b08cbeabcf/defconfig
Build 540ce87aa8028214fd02e532bc1ce95907301095
==============================================
Status : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture : arm
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 20:19:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/540ce87aa8028214fd02e532bc1ce95907301095/build-end.log
Complete log : http://autobuild.buildroot.net/results/540ce87aa8028214fd02e532bc1ce95907301095/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/540ce87aa8028214fd02e532bc1ce95907301095/config
Defconfig : http://autobuild.buildroot.net/results/540ce87aa8028214fd02e532bc1ce95907301095/defconfig
Build 75985e529e756d49fe16efb4f4c405602c2c392f
==============================================
Status : NOK
Failure reason : libroxml-2.2.0
Architecture : arm
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 21:22:00
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/75985e529e756d49fe16efb4f4c405602c2c392f/build-end.log
Complete log : http://autobuild.buildroot.net/results/75985e529e756d49fe16efb4f4c405602c2c392f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/75985e529e756d49fe16efb4f4c405602c2c392f/config
Defconfig : http://autobuild.buildroot.net/results/75985e529e756d49fe16efb4f4c405602c2c392f/defconfig
Build 15fd1bc6462889c1dac3227541015c2a0d470754
==============================================
Status : NOK
Failure reason : host-python-2.7.3
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-02 21:35:38
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/15fd1bc6462889c1dac3227541015c2a0d470754/build-end.log
Complete log : http://autobuild.buildroot.net/results/15fd1bc6462889c1dac3227541015c2a0d470754/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/15fd1bc6462889c1dac3227541015c2a0d470754/config
Defconfig : http://autobuild.buildroot.net/results/15fd1bc6462889c1dac3227541015c2a0d470754/defconfig
Build 4d408a7a6a893eb32403760abae0a282afd9d7a7
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : aarch64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 22:03:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/4d408a7a6a893eb32403760abae0a282afd9d7a7/build-end.log
Complete log : http://autobuild.buildroot.net/results/4d408a7a6a893eb32403760abae0a282afd9d7a7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4d408a7a6a893eb32403760abae0a282afd9d7a7/config
Defconfig : http://autobuild.buildroot.net/results/4d408a7a6a893eb32403760abae0a282afd9d7a7/defconfig
Build 099e2ac7cfdba0898b8e760e4cf49f63698bb06f
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : xtensa
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 22:12:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/099e2ac7cfdba0898b8e760e4cf49f63698bb06f/build-end.log
Complete log : http://autobuild.buildroot.net/results/099e2ac7cfdba0898b8e760e4cf49f63698bb06f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/099e2ac7cfdba0898b8e760e4cf49f63698bb06f/config
Defconfig : http://autobuild.buildroot.net/results/099e2ac7cfdba0898b8e760e4cf49f63698bb06f/defconfig
Build da3d49c429f662f779bf01c1284298a324ac104a
==============================================
Status : NOK
Failure reason : libroxml-2.2.0
Architecture : arm
Submitted by : Peter Korsgaard ()
Submitted at : 2012-12-02 22:22:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/da3d49c429f662f779bf01c1284298a324ac104a/build-end.log
Complete log : http://autobuild.buildroot.net/results/da3d49c429f662f779bf01c1284298a324ac104a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/da3d49c429f662f779bf01c1284298a324ac104a/config
Defconfig : http://autobuild.buildroot.net/results/da3d49c429f662f779bf01c1284298a324ac104a/defconfig
Build 4752db4cf008325cdecb726128fa022a15d1d59e
==============================================
Status : NOK
Failure reason : libev-4.11
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 22:28:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/4752db4cf008325cdecb726128fa022a15d1d59e/build-end.log
Complete log : http://autobuild.buildroot.net/results/4752db4cf008325cdecb726128fa022a15d1d59e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4752db4cf008325cdecb726128fa022a15d1d59e/config
Defconfig : http://autobuild.buildroot.net/results/4752db4cf008325cdecb726128fa022a15d1d59e/defconfig
Build d91f87e984fa7dbdf71ae6c23b02427775e3ab07
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 22:30:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/d91f87e984fa7dbdf71ae6c23b02427775e3ab07/build-end.log
Complete log : http://autobuild.buildroot.net/results/d91f87e984fa7dbdf71ae6c23b02427775e3ab07/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d91f87e984fa7dbdf71ae6c23b02427775e3ab07/config
Defconfig : http://autobuild.buildroot.net/results/d91f87e984fa7dbdf71ae6c23b02427775e3ab07/defconfig
Build b8076d277b9567e8a2a37b4ee1f4f1cea6887a11
==============================================
Status : NOK
Failure reason : xapp_xmh-1.0.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 23:26:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/b8076d277b9567e8a2a37b4ee1f4f1cea6887a11/build-end.log
Complete log : http://autobuild.buildroot.net/results/b8076d277b9567e8a2a37b4ee1f4f1cea6887a11/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b8076d277b9567e8a2a37b4ee1f4f1cea6887a11/config
Defconfig : http://autobuild.buildroot.net/results/b8076d277b9567e8a2a37b4ee1f4f1cea6887a11/defconfig
Build 4e4964a4cd84675cb8f53a1f15ec7ce3b25a888b
==============================================
Status : NOK
Failure reason : squid-3.2.3
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-02 23:45:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d1f5fc29efd40d61e8a185a22e3ee6f52c10d43c
End of log : http://autobuild.buildroot.net/results/4e4964a4cd84675cb8f53a1f15ec7ce3b25a888b/build-end.log
Complete log : http://autobuild.buildroot.net/results/4e4964a4cd84675cb8f53a1f15ec7ce3b25a888b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4e4964a4cd84675cb8f53a1f15ec7ce3b25a888b/config
Defconfig : http://autobuild.buildroot.net/results/4e4964a4cd84675cb8f53a1f15ec7ce3b25a888b/defconfig
--
http://autobuild.buildroot.net
^ permalink raw reply
* [Buildroot] [git commit] libtool: undeprecate for now
From: Thomas Petazzoni @ 2012-12-03 8:25 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121203010304.2A651996F6@busybox.osuosl.org>
Dear Peter Korsgaard,
On Sun, 2 Dec 2012 16:31:54 -0800, Peter Korsgaard wrote:
> commit: http://git.buildroot.net/buildroot/commit/?id=f619d5ba20ef46c57259f35a21bb98b7c85c35a4
> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
>
> Pulseaudio selects libtool, so get rid of the deprecated annotation so
> people don't get warnings about unmet dependencies when exiting menuconfig.
Pulseaudio needs libtool on the target? This sounds strange, no?
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] Problem with NFS boot
From: Thomas Petazzoni @ 2012-12-03 8:32 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CADKZYYLt90YY8rm4SCuqRN2SsAGqjXhQM7t5hQydpV9o7ZtT+A@mail.gmail.com>
Dear Santhosh Ramani,
On Sat, 1 Dec 2012 19:51:37 -0600, Santhosh Ramani wrote:
> Thank you for your reply, yes I did untar the rootfs.tar.bz2 into the
> folder that is exported as NFS using sudo.
>
> Note:
> Linux kernel from TI SDK + buildroot rootfs = no nfs (only SD Card)
> Linux kernle from buildroot + buildroot rootfs = everything works fine.
What /dev management solution are you using? Static? Dynamic?
If you're using one of the dynamic solutions (devtmpfs, mdev or udev),
make sure that your kernel is built with CONFIG_DEVTMPFS and
CONFIG_DEVTMPFS_MOUNT. When the kernel is built by Buildroot, Buildroot
automatically enables those options. When your kernel is built
manually, you have to make sure those options are enabled.
Best regards,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH] [PATCH][RFC] new target: live filesystem
From: Jeremy Rosen @ 2012-12-03 8:57 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAJJ6jxvVkLmLmMiC+3bKEqokBUd1-LrJ8nJywzYmtVYxbXsSNQ@mail.gmail.com>
well, it's more a question of what you consider the live filesystem to be...
I see it a as just another filesystem format (basically a NFS target) which is why my original patch had it in output/images/live
if you see it as a deployment, it does not really make sense to add it to buildroot (buildroot doesn't flash the filesystem directly) I can understand that both point of view make sense
however having this target makes things simpler in a very common use case (arguably the most common use case since it's the case where you use buildroot repeatedly to prepare the fs, not the case where you run it once to build the final FS)
yes it's a two line script, and yes it's a minor change, but I think it makes sense and it's simple enough for it not to be a big deal...
Regards
J?r?my Rosen
fight key loggers : write some perl using vim
----- Mail original -----
> De: "Steve Calfee" <stevecalfee@gmail.com>
> ?: "Arnout Vandecappelle" <arnout@mind.be>
> Cc: "J?r?my Rosen" <jeremy.rosen@openwide.fr>, buildroot at busybox.net
> Envoy?: Vendredi 30 Novembre 2012 22:46:53
> Objet: Re: [Buildroot] [PATCH] [PATCH][RFC] new target: live filesystem
>
> On Fri, Nov 30, 2012 at 1:15 AM, Arnout Vandecappelle
> <arnout@mind.be> wrote:
> > On 30/11/12 01:04, Steve Calfee wrote:
> >>
> >> I don't understand why you need this. It is a one line "sudo tar
> >> -xf
> >> ..." to unpack the tarball into your nfs directory. Either type
> >> this
> >> line or add a one line script to your ~/bin directory to do it for
> >> each of your buildroot trees/environments. Don't add clutter to
> >> the
> >> buildroot makefile.
> >
> >
> > If that is the reasoning, we can also remove the compression of
> > the
> > .tar file, or the -dirclean targets, etc. etc.
> >
> > In addition, this target also cleans up the NFS directory first,
> > so
> > it's slightly more than just untarring.
> >
> Hi Arnout,
>
> I guess, but buildroot is all about building, not deploying. What is
> next, an automatic copy to my usb or sd drive? Stuff that is highly
> user specific should not be in the makefile, especially stuff that
> can
> easily be added to a simple script - my opinion only,
>
> Steve
>
^ permalink raw reply
* [Buildroot] [PATCH v2] xtensa: add config option to enable longcalls option
From: Chris Zankel @ 2012-12-03 8:58 UTC (permalink / raw)
To: buildroot
The longcalls option allows calls across a greater range of addresses.
This option should be used when call targets can potentially be
out of range. It may degrade both code size and performance, but
the linker can generally optimize away the unnecessary overhead
when a call ends up within range.
This option is enabled by default.
Signed-off-by: Chris Zankel <chris@zankel.net>
---
arch/Config.in.xtensa | 17 +++++++++++++++++
package/Makefile.in | 6 ++++++
2 files changed, 23 insertions(+)
diff --git a/arch/Config.in.xtensa b/arch/Config.in.xtensa
index 60c03f5..a979108 100644
--- a/arch/Config.in.xtensa
+++ b/arch/Config.in.xtensa
@@ -35,3 +35,20 @@ config BR2_XTENSA_OVERLAY_DIR
config BR2_ARCH
default "xtensa" if BR2_xtensa
+
+menu "Target build options"
+
+config BR2_XTENSA_LONGCALLS
+ bool "Enable longcalls option"
+ default y
+ help
+ Enable or disable transformation of call instructions to allow
+ calls across a greater range of addresses.
+ This option should be used when call targets can potentially be
+ out of range. It may degrade both code size and performance, but
+ the linker can generally optimize away the unnecessary overhead
+ when a call ends up within range.
+
+ Should be enabled by default.
+
+endmenu
diff --git a/package/Makefile.in b/package/Makefile.in
index 9fdc745..b52d5e0 100644
--- a/package/Makefile.in
+++ b/package/Makefile.in
@@ -56,6 +56,12 @@ TARGET_ABI+=-mabi=spe -mfloat-gprs=double -Wa,-me500mc
endif
endif
+# Xtensa: The 'longcalls' option is required for large binary packages.
+# Use a global option for all packages for now.
+ifeq ($(BR2_XTENSA_LONGCALLS),y)
+TARGET_CFLAGS += -mlongcalls
+endif
+
STAGING_DIR=$(HOST_DIR)/usr/$(GNU_TARGET_NAME)/sysroot
TARGET_OPTIMIZATION:=$(call qstrip,$(BR2_TARGET_OPTIMIZATION))
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH] [PATCH][RFC] new target: live filesystem
From: Samuel Martin @ 2012-12-03 9:21 UTC (permalink / raw)
To: buildroot
In-Reply-To: <2f772bd2-fecd-4aeb-9bbe-83316ac7deed@zimbra2.corp.accelance.fr>
Hi Jeremy, all,
2012/12/3 Jeremy Rosen <jeremy.rosen@openwide.fr>:
> well, it's more a question of what you consider the live filesystem to be...
>
> I see it a as just another filesystem format (basically a NFS target) which is why my original patch had it in output/images/live
>
> if you see it as a deployment, it does not really make sense to add it to buildroot (buildroot doesn't flash the filesystem directly) I can understand that both point of view make sense
>
> however having this target makes things simpler in a very common use case (arguably the most common use case since it's the case where you use buildroot repeatedly to prepare the fs, not the case where you run it once to build the final FS)
That's a controversial topic...
But, at least, you cat start filling the gap in the doc ;-),
especially this section:
http://buildroot.org/downloads/manual/manual.html#_beyond_buildroot
--
Sam
^ permalink raw reply
* [Buildroot] [git commit] libtool: undeprecate for now
From: Arnout Vandecappelle @ 2012-12-03 9:31 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121203092529.05e8d34c@skate>
On 03/12/12 09:25, Thomas Petazzoni wrote:
> Dear Peter Korsgaard,
>
> On Sun, 2 Dec 2012 16:31:54 -0800, Peter Korsgaard wrote:
>> commit: http://git.buildroot.net/buildroot/commit/?id=f619d5ba20ef46c57259f35a21bb98b7c85c35a4
>> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
>>
>> Pulseaudio selects libtool, so get rid of the deprecated annotation so
>> people don't get warnings about unmet dependencies when exiting menuconfig.
>
> Pulseaudio needs libtool on the target? This sounds strange, no?
It needs libltdl, I guess to read .la files for plugins. That said, I wonder if
it even works since we remove the .la files... I started to look at it a while
ago but never got anywhere.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] Buildroot 2012.11 released
From: Arnout Vandecappelle @ 2012-12-03 9:39 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87vcck545l.fsf@dell.be.48ers.dk>
On 03/12/12 02:13, Peter Korsgaard wrote:
> Buildroot 2012.11 is released
Congratulations, Peter, and thanks for spending this effort to get the
release out!
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] pkg-infra: rename <pkg>-rsync to <pkg>-extract
From: Stephan Hoffmann @ 2012-12-03 9:58 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50A3545F.2090602@relinux.de>
Am 14.11.2012 09:20, schrieb Stephan Hoffmann:
> Am 14.11.2012 00:48, schrieb Arnout Vandecappelle:
>> On 12/11/12 09:27, Stephan Hoffmann wrote:
>>> Am 14.10.2012 16:41, schrieb Arnout Vandecappelle (Essensium/Mind):
>> [snip]
>>>> +$(1)-extract: $$($(2)_TARGET_RSYNC)
>>>>
>>>> $(1)-source: $$($(2)_TARGET_RSYNC_SOURCE)
>>>> endif
>>> Hello,
>>>
>>> this does not fix my issue, not even after doing a "make clean".
>> [snip]
>>>>>>> linux custom Syncing from source dir
>>>> /home/stephan/Dokumente/BeagleBone/kernel/kernel
>>>> rsync -au /home/stephan/Dokumente/BeagleBone/kernel/kernel/
>>>> /home/stephan/Dokumente/BeagleBone/buildroot/output/build/linux-custom
>>>> cp: cannot stat `/home/stephan/Dokumente/dl/linux-custom.tar.gz': No
>>>> such file or directory
>>>> make: *** [linux-legal-info] Error 1
>> One step at a time :-)
>>
>> The .tar.gz doesn't exist for overridden packages. So what should we
>> do -
>> exclude the source for overridden packages?
> Good point. At the first glance, I'd suggest to create the tar.gz using
> the x_OVERRIDE_SRCDIR. That seems to be better than nothing.
>
> After creating a linux-custom.tar.gz, "make legal-info" works for me,
> but it does not seem to make sence to copy a .tar.gz file that has not
> been extracted to build the packet.
Hello,
I just started looking at this again and found in package/pkg-generic.mk:
> # legal-info: produce legally relevant info.
> $(1)-legal-info:
> # Packages without a source are assumed to be part of Buildroot, skip
> them.
> ifneq ($(call qstrip,$$($(2)_SOURCE)),)
> ifeq ($$($(2)_SITE_METHOD),local)
> # Packages without a tarball: don't save and warn
> @$(call legal-warning-pkg-savednothing,$$($(2)_RAWNAME),local)
> else ifeq ($$($(2)_SITE_METHOD),override)
> @$(call legal-warning-pkg-savednothing,$$($(2)_RAWNAME),override)
> else
So there should just be a warning, but no make failing. Obviously, the
test for "override" does not work as expected. A patch changing this to
ifneq ($$($(2)_OVERRIDE_SRCDIR),)
follows, but I do not think that SITE_METHOD ever gets set to "override"
at all. So other parts of pkg-generic.mk might also need a closer look.
> Kind regards
>
> Stephan
>> Regards,
>> Arnout
>>
>
--
reLinux - Stephan Hoffmann
Am Schmidtgrund 124 50765 K?ln
Tel. +49.221.95595-19 Fax: -64
www.reLinux.de sho at reLinux.de
^ permalink raw reply
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