Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libnspr: fix build with ARMv7 toolchains
From: Thomas Petazzoni @ 2012-11-10 22:12 UTC (permalink / raw)
  To: buildroot

Fixes the following build failure:

  http://autobuild.buildroot.org/results/d7323831372050e425a34f5104a46d8cbd6be214/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/libnspr/libnspr.mk |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/package/libnspr/libnspr.mk b/package/libnspr/libnspr.mk
index 736984d..a9d5812 100644
--- a/package/libnspr/libnspr.mk
+++ b/package/libnspr/libnspr.mk
@@ -16,6 +16,12 @@ LIBNSPR_CONF_OPT  = --host=$(GNU_HOST_NAME)
 LIBNSPR_CONF_OPT += --$(if $(BR2_ARCH_IS_64),en,dis)able-64bit
 LIBNSPR_CONF_OPT += --$(if $(BR2_INET_IPV6),en,dis)able-ipv6
 
+ifeq ($(BR2_cortex_a8)$(BR2_cortex_a9),y)
+LIBNSPR_CONF_OPT += --enable-thumb2
+else
+LIBNSPR_CONF_OPT += --disable-thumb2
+endif
+
 define LIBNSPR_INSTALL_STAGING_PC
 	$(INSTALL) -D -m 0644 $(TOPDIR)/package/libnspr/nspr.pc.in \
 		$(STAGING_DIR)/usr/lib/pkgconfig/nspr.pc
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 1/2] toolchain/gdb: disable support of full gdb on target for blackfin
From: Thomas Petazzoni @ 2012-11-10 22:28 UTC (permalink / raw)
  To: buildroot

There is no support in gdb 6.6 for the Blackfin architecture, so
disallow this choice. This fixes the following build failure:

  http://autobuild.buildroot.org/results/e37db29810265a756833da163fda444d967d7874/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 toolchain/gdb/Config.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/toolchain/gdb/Config.in b/toolchain/gdb/Config.in
index 8acce1e..ca0c821 100644
--- a/toolchain/gdb/Config.in
+++ b/toolchain/gdb/Config.in
@@ -4,7 +4,7 @@ config BR2_PACKAGE_GDB
 	bool "Build gdb debugger for the Target"
 	select BR2_PACKAGE_NCURSES
 	depends on BR2_USE_WCHAR
-	depends on !BR2_sh && !BR2_sh64 && !BR2_avr32 && !BR2_microblaze
+	depends on !BR2_sh && !BR2_sh64 && !BR2_avr32 && !BR2_microblaze && !BR2_bfin
 	# The newest versions of gdb require thread debugging in the
 	# toolchain. The only cases for which this is not needed is if
 	# we use gdb 6.8 (marked deprecated)
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 2/2] toolchain/gdb: exceptionally allow building gdbserver for the target on blackfin
From: Thomas Petazzoni @ 2012-11-10 22:28 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352586536-19621-1-git-send-email-thomas.petazzoni@free-electrons.com>

In order to guarantee the compatibility between the cross gdb and the
gdbserver, we expect external toolchains to provide both cross gcc and
gdbserver. Unfortunately, external toolchains provided by Analog
Devices for Blackfin do not come with a gdbserver, so we
exceptionnally allow the building on gdbserver even with external
toolchains in the Blackfin case.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 toolchain/gdb/Config.in |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/toolchain/gdb/Config.in b/toolchain/gdb/Config.in
index ca0c821..66f1b42 100644
--- a/toolchain/gdb/Config.in
+++ b/toolchain/gdb/Config.in
@@ -20,7 +20,14 @@ comment "Gdb debugger for the target needs WCHAR support in toolchain"
 
 config BR2_PACKAGE_GDB_SERVER
 	bool "Build gdb server for the Target"
-	depends on !BR2_TOOLCHAIN_EXTERNAL
+	# In order to guarantee the compatibility between the cross
+	# gdb and the gdbserver, we expect external toolchains to
+	# provide both cross gcc and gdbserver. Unfortunately,
+	# external toolchains provided by Analog Devices for Blackfin
+	# do not come with a gdbserver, so we exceptionnally allow the
+	# building on gdbserver even with external toolchains in the
+	# Blackfin case.
+	depends on !BR2_TOOLCHAIN_EXTERNAL || BR2_bfin
 	help
 	    Build the gdbserver stub to run on the target.
 	    A full gdb is needed to debug the progam.
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] Deprecate the support for toolchain on the target
From: Thomas Petazzoni @ 2012-11-10 22:36 UTC (permalink / raw)
  To: buildroot

The following changes since commit 234fe4433489bca81b79311239569525cc008d9d:

  perl: build with perlcross instead of qemu (2012-11-09 10:04:31 +0100)

are available in the git repository at:

  git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git no-target-toolchain

for you to fetch changes up to c42b5a3ae08ae07779a6ee389a8367318efe96bf:

  Mark a number of development related packages as deprecated (2012-11-10 23:34:39 +0100)

----------------------------------------------------------------
Thomas Petazzoni (2):
      Deprecate the support for the toolchain on target
      Mark a number of development related packages as deprecated

 Config.in                  |    4 ++++
 package/autoconf/Config.in |    3 +++
 package/automake/Config.in |    3 +++
 package/libtool/Config.in  |    2 ++
 package/make/Config.in     |    2 ++
 toolchain/gcc/Config.in.2  |    5 ++---
 6 files changed, 16 insertions(+), 3 deletions(-)

Thanks,
-- 
Thomas Petazzoni

^ permalink raw reply

* [Buildroot] [PATCH 1/2] Deprecate the support for the toolchain on target
From: Thomas Petazzoni @ 2012-11-10 22:36 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <cover.1352586949.git.thomas.petazzoni@free-electrons.com>

As discussed during the ELCE 2012 Buildroot Developers Meeting, we no
longer want to support the possibility of building a toolchain for the
target. None of the core developers have any use for this, it has been
known to be broken or cause problems for a long time without anyone
providing fixes for it.

In addition to this, Buildroot is inherently a cross-compilation tool,
so the usage of a native toolchain on the target is not really
useful. Many newcomers are tempted to use this possibility even though
it is clearly not the intended usage of Buildroot.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 Config.in                 |    4 ++++
 toolchain/gcc/Config.in.2 |    5 ++---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/Config.in b/Config.in
index 68190a5..eaafece 100644
--- a/Config.in
+++ b/Config.in
@@ -393,6 +393,8 @@ config BR2_PREFER_STATIC_LIB
 
 config BR2_HAVE_DOCUMENTATION
 	bool "documentation on the target"
+	# We no longer want to support a toolchain on the target
+	depends on BR2_DEPRECATED
 	help
 	  Install the documentation, including manual pages and info
 	  pages, on the target.
@@ -401,6 +403,8 @@ config BR2_HAVE_DOCUMENTATION
 
 config BR2_HAVE_DEVFILES
 	bool "development files in target filesystem"
+	# We no longer want to support a toolchain on the target
+	depends on BR2_DEPRECATED
 	help
 	  Install headers and static libraries in the
 	  target filesystem
diff --git a/toolchain/gcc/Config.in.2 b/toolchain/gcc/Config.in.2
index d060a80..c8a8cf6 100644
--- a/toolchain/gcc/Config.in.2
+++ b/toolchain/gcc/Config.in.2
@@ -1,5 +1,7 @@
 config BR2_PACKAGE_GCC_TARGET
 	bool "gcc"
+	# We no longer want to support a toolchain on the target
+	depends on BR2_DEPRECATED
 	depends on BR2_HAVE_DEVFILES && BR2_TOOLCHAIN_BUILDROOT
 	select BR2_PACKAGE_BINUTILS
 	select BR2_PACKAGE_BINUTILS_TARGET
@@ -30,6 +32,3 @@ config BR2_EXTRA_TARGET_GCC_CONFIG_OPTIONS
 	  Any additional target gcc options you may want to include....
 	  Including, but not limited to --disable-checking etc.
 	  Refer to */configure in your gcc sources.
-
-comment "gcc needs development files in target filesystem"
-	depends on !BR2_HAVE_DEVFILES && BR2_TOOLCHAIN_BUILDROOT
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 2/2] Mark a number of development related packages as deprecated
From: Thomas Petazzoni @ 2012-11-10 22:36 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <cover.1352586949.git.thomas.petazzoni@free-electrons.com>

automake, autoconf, libtool and make on the target are basically
useless if we don't support building a toolchain on the target. Of
course, the host variant of automake, autoconf and libtool will remain
available.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/autoconf/Config.in |    3 +++
 package/automake/Config.in |    3 +++
 package/libtool/Config.in  |    2 ++
 package/make/Config.in     |    2 ++
 4 files changed, 10 insertions(+)

diff --git a/package/autoconf/Config.in b/package/autoconf/Config.in
index c304572..9302f50 100644
--- a/package/autoconf/Config.in
+++ b/package/autoconf/Config.in
@@ -1,6 +1,8 @@
 config BR2_PACKAGE_AUTOCONF
 	bool "autoconf"
 	depends on !(BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64)
+	# We no longer support a toolchain on the target
+	depends on BR2_DEPRECATED
 	select BR2_PACKAGE_PERL
 	help
 	  Extensible program for developing configure scripts.  These
@@ -10,3 +12,4 @@ config BR2_PACKAGE_AUTOCONF
 
 comment "autoconf requires an architecture supported by qemu"
 	depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64
+	depends on BR2_DEPRECATED
diff --git a/package/automake/Config.in b/package/automake/Config.in
index f8d74ef..924b29c 100644
--- a/package/automake/Config.in
+++ b/package/automake/Config.in
@@ -1,6 +1,8 @@
 config BR2_PACKAGE_AUTOMAKE
 	bool "automake"
 	depends on !(BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64)
+	# We no longer support a toolchain on the target
+	depends on BR2_DEPRECATED
 	select BR2_PACKAGE_AUTOCONF
 	select BR2_PACKAGE_PERL
 	help
@@ -11,3 +13,4 @@ config BR2_PACKAGE_AUTOMAKE
 
 comment "automake requires an architecture supported by qemu"
 	depends on BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64
+	depends on BR2_DEPRECATED
diff --git a/package/libtool/Config.in b/package/libtool/Config.in
index d3cf2d7..42df25b 100644
--- a/package/libtool/Config.in
+++ b/package/libtool/Config.in
@@ -1,5 +1,7 @@
 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.
diff --git a/package/make/Config.in b/package/make/Config.in
index ea2ae1b..e5cc970 100644
--- a/package/make/Config.in
+++ b/package/make/Config.in
@@ -1,6 +1,8 @@
 config BR2_PACKAGE_MAKE
 	bool "make"
 	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
+	# We no longer support a toolchain on the target
+	depends on BR2_DEPRECATED
 	help
 	  A tool which controls the generation of executables and other
 	  non-source files of a program from the program's source files.
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH] tremor: force ARM mode when building to avoid Thumb2 build problems
From: Thomas Petazzoni @ 2012-11-10 22:43 UTC (permalink / raw)
  To: buildroot

Fixes:

  http://autobuild.buildroot.org/results/502b7d3f29d7982d56de2ae4a0b943315e04713b/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/tremor/tremor.mk |    7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/tremor/tremor.mk b/package/tremor/tremor.mk
index fceee1b..cd1d323 100644
--- a/package/tremor/tremor.mk
+++ b/package/tremor/tremor.mk
@@ -12,4 +12,11 @@ TREMOR_AUTORECONF = YES
 TREMOR_INSTALL_STAGING = YES
 TREMOR_DEPENDENCIES = libogg
 
+# tremor has ARM assembly code that cannot be compiled in Thumb2 mode,
+# so we must force the traditional ARM mode.
+ifeq ($(BR2_arm),y)
+TREMOR_CONF_ENV = \
+	CFLAGS="$(TARGET_CFLAGS) -marm"
+endif
+
 $(eval $(autotools-package))
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 1/2] Deprecate the support for the toolchain on target
From: Alex Bradbury @ 2012-11-10 23:26 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <4afe9c298939f3701caa09c2cc5c4bc04f6d4408.1352586949.git.thomas.petazzoni@free-electrons.com>

On 10 November 2012 22:36, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> As discussed during the ELCE 2012 Buildroot Developers Meeting, we no
> longer want to support the possibility of building a toolchain for the
> target. None of the core developers have any use for this, it has been
> known to be broken or cause problems for a long time without anyone
> providing fixes for it.
>
> In addition to this, Buildroot is inherently a cross-compilation tool,
> so the usage of a native toolchain on the target is not really
> useful. Many newcomers are tempted to use this possibility even though
> it is clearly not the intended usage of Buildroot.

If someone took lead on reintroducing this functionality would it be
accepted? There are at least a couple of cases where installing
development files are useful:
* When using buildroot to build a rootfs that is used as a sysroot for
an external build system
* When using e.g. luajit packages which can make use of header files
to generate bindings (not exploited all that much right now due to
lack of preprocessor support in luajit)

Not disagreeing with this being marked deprecated for the time being
at all, I'm just not so sure that devfiles or event native toolchains
are inherently out of the scope of buildroot.

Alex

^ permalink raw reply

* [Buildroot] [PATCH] group file: define groups expected by udev
From: Danomi Manchego @ 2012-11-11  3:08 UTC (permalink / raw)
  To: buildroot

udev-182 requires several groups to be resolvable at udev startup,
including disk, cdrom, floppy, tape, audio, video, lp, tty, dialout,
and kmem.  Only some of these are in the default skeleton's group
file, So let's add the missing groups, and plugdev too.

This avoids getting these logs in /var/logs/messages:

Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'dialout' unknown
Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'kmem' unknown
Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'video' unknown
Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'lp' unknown
Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'floppy' unknown
Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'cdrom' unknown
Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'tape' unknown

Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
---
 system/skeleton/etc/group |    8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/system/skeleton/etc/group b/system/skeleton/etc/group
index 8fc486d..864d1db 100644
--- a/system/skeleton/etc/group
+++ b/system/skeleton/etc/group
@@ -5,10 +5,18 @@ sys:x:3:
 adm:x:4:
 tty:x:5:
 disk:x:6:
+lp:x:7:
+kmem:x:9:
 wheel:x:10:root
+cdrom:x:11:
+dialout:x:18:
+floppy:x:19:
+video:x:28:
 audio:x:29:
+tape:x:32:
 www-data:x:33:
 utmp:x:43:
+plugdev:x:46:
 staff:x:50:
 lock:x:54:
 haldaemon:x:68:
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 1/2 v2] neard: new package
From: Baruch Siach @ 2012-11-11  5:11 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352469107-25993-1-git-send-email-spdawson@gmail.com>

Hi Simon,

On Fri, Nov 09, 2012 at 01:51:47PM +0000, spdawson at gmail.com wrote:
> From: Simon Dawson <spdawson@gmail.com>
> 
> Signed-off-by: Simon Dawson <spdawson@gmail.com>
> ---

[...]

> --- /dev/null
> +++ b/package/neard/neard.mk
> @@ -0,0 +1,15 @@
> +#############################################################
> +#
> +# neard
> +#
> +#############################################################
> +NEARD_VERSION = 0.7

Version 0.8 seems to be available. Any reason not to use that one?

> +NEARD_SITE = $(BR2_KERNEL_MIRROR)/linux/network/nfc
> +NEARD_INSTALL_STAGING = YES

Why is this needed? Does this package export headers needed by others?

> +NEARD_LICENSE = GPLv2
> +NEARD_LICENSE_FILES = COPYING
> +
> +NEARD_DEPENDENCIES = dbus libglib2 libnl
> +NEARD_CONF_OPT = --disable-traces
> +
> +$(eval $(autotools-package))

baruch

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

^ permalink raw reply

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


Hello,

On 2012-11-10, 150 random build tests have been done and
submitted on autobuild.buildroot.net.
 47 builds have been successful
 103 builds have failed

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

Build 1edcdce053ea2e108f7f41963d57276455adefda
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 00:07:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/1edcdce053ea2e108f7f41963d57276455adefda/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1edcdce053ea2e108f7f41963d57276455adefda/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1edcdce053ea2e108f7f41963d57276455adefda/config
Defconfig      : http://autobuild.buildroot.net/results/1edcdce053ea2e108f7f41963d57276455adefda/defconfig

Build b25b226a3f39892651afef1be97fad08473a9e55
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.25
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 00:07:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b25b226a3f39892651afef1be97fad08473a9e55/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b25b226a3f39892651afef1be97fad08473a9e55/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b25b226a3f39892651afef1be97fad08473a9e55/config
Defconfig      : http://autobuild.buildroot.net/results/b25b226a3f39892651afef1be97fad08473a9e55/defconfig

Build aafc3632a36b5a934083011f58fe1a79ea5b32c0
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 00:24:15
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/aafc3632a36b5a934083011f58fe1a79ea5b32c0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aafc3632a36b5a934083011f58fe1a79ea5b32c0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aafc3632a36b5a934083011f58fe1a79ea5b32c0/config
Defconfig      : http://autobuild.buildroot.net/results/aafc3632a36b5a934083011f58fe1a79ea5b32c0/defconfig

Build ad13daefab4bc5e9b6b49f0970ac1c3ce40c532f
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 00:48:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ad13daefab4bc5e9b6b49f0970ac1c3ce40c532f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ad13daefab4bc5e9b6b49f0970ac1c3ce40c532f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ad13daefab4bc5e9b6b49f0970ac1c3ce40c532f/config
Defconfig      : http://autobuild.buildroot.net/results/ad13daefab4bc5e9b6b49f0970ac1c3ce40c532f/defconfig

Build b56a35911f30a8980ab8535535a8812da6edaf8e
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 00:50:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b56a35911f30a8980ab8535535a8812da6edaf8e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b56a35911f30a8980ab8535535a8812da6edaf8e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b56a35911f30a8980ab8535535a8812da6edaf8e/config
Defconfig      : http://autobuild.buildroot.net/results/b56a35911f30a8980ab8535535a8812da6edaf8e/defconfig

Build b5bda09b290c2ad76a68b3e084fe2a61e9e9af2b
==============================================

Status         : NOK
Failure reason : rt-tests-0.83
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 01:53:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b5bda09b290c2ad76a68b3e084fe2a61e9e9af2b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b5bda09b290c2ad76a68b3e084fe2a61e9e9af2b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b5bda09b290c2ad76a68b3e084fe2a61e9e9af2b/config
Defconfig      : http://autobuild.buildroot.net/results/b5bda09b290c2ad76a68b3e084fe2a61e9e9af2b/defconfig

Build 5edabde9d8f418a3510943fe5c4ca6c0b59ca299
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 01:53:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/5edabde9d8f418a3510943fe5c4ca6c0b59ca299/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5edabde9d8f418a3510943fe5c4ca6c0b59ca299/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5edabde9d8f418a3510943fe5c4ca6c0b59ca299/config
Defconfig      : http://autobuild.buildroot.net/results/5edabde9d8f418a3510943fe5c4ca6c0b59ca299/defconfig

Build 9ebb12847a60918604650a81fb7e25b3a93f73ad
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 02:00:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9ebb12847a60918604650a81fb7e25b3a93f73ad/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9ebb12847a60918604650a81fb7e25b3a93f73ad/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9ebb12847a60918604650a81fb7e25b3a93f73ad/config
Defconfig      : http://autobuild.buildroot.net/results/9ebb12847a60918604650a81fb7e25b3a93f73ad/defconfig

Build 41485c65c2ab28d429b7f087a1bc24b0182b0409
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 02:04:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/41485c65c2ab28d429b7f087a1bc24b0182b0409/build-end.log
Complete log   : http://autobuild.buildroot.net/results/41485c65c2ab28d429b7f087a1bc24b0182b0409/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/41485c65c2ab28d429b7f087a1bc24b0182b0409/config
Defconfig      : http://autobuild.buildroot.net/results/41485c65c2ab28d429b7f087a1bc24b0182b0409/defconfig

Build ad1d452177bf6c741442509900296690b2fbe243
==============================================

Status         : NOK
Failure reason : bluez_utils-4.101
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 02:33:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ad1d452177bf6c741442509900296690b2fbe243/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ad1d452177bf6c741442509900296690b2fbe243/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ad1d452177bf6c741442509900296690b2fbe243/config
Defconfig      : http://autobuild.buildroot.net/results/ad1d452177bf6c741442509900296690b2fbe243/defconfig

Build a75a9be3648370a4166a450dec6805604e7072a5
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 02:41:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/a75a9be3648370a4166a450dec6805604e7072a5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a75a9be3648370a4166a450dec6805604e7072a5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a75a9be3648370a4166a450dec6805604e7072a5/config
Defconfig      : http://autobuild.buildroot.net/results/a75a9be3648370a4166a450dec6805604e7072a5/defconfig

Build f7c04d2f0b6d6da71268c580a83132f801ef8354
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 02:51:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f7c04d2f0b6d6da71268c580a83132f801ef8354/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f7c04d2f0b6d6da71268c580a83132f801ef8354/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f7c04d2f0b6d6da71268c580a83132f801ef8354/config
Defconfig      : http://autobuild.buildroot.net/results/f7c04d2f0b6d6da71268c580a83132f801ef8354/defconfig

Build 8477ede3e2cd9c9f4581e8573d4a670f8835caf6
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 02:58:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/8477ede3e2cd9c9f4581e8573d4a670f8835caf6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8477ede3e2cd9c9f4581e8573d4a670f8835caf6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8477ede3e2cd9c9f4581e8573d4a670f8835caf6/config
Defconfig      : http://autobuild.buildroot.net/results/8477ede3e2cd9c9f4581e8573d4a670f8835caf6/defconfig

Build 19a141ab278af02ee9f80fa9ee719e677cfd4165
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 03:29:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/19a141ab278af02ee9f80fa9ee719e677cfd4165/build-end.log
Complete log   : http://autobuild.buildroot.net/results/19a141ab278af02ee9f80fa9ee719e677cfd4165/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/19a141ab278af02ee9f80fa9ee719e677cfd4165/config
Defconfig      : http://autobuild.buildroot.net/results/19a141ab278af02ee9f80fa9ee719e677cfd4165/defconfig

Build 393e4c4475a49196e9b5706df945e5d4d2a23c87
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 04:27:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/393e4c4475a49196e9b5706df945e5d4d2a23c87/build-end.log
Complete log   : http://autobuild.buildroot.net/results/393e4c4475a49196e9b5706df945e5d4d2a23c87/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/393e4c4475a49196e9b5706df945e5d4d2a23c87/config
Defconfig      : http://autobuild.buildroot.net/results/393e4c4475a49196e9b5706df945e5d4d2a23c87/defconfig

Build dfa9564b18d9c6b163e9d59f4ed097fc688c2d95
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 04:44:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/dfa9564b18d9c6b163e9d59f4ed097fc688c2d95/build-end.log
Complete log   : http://autobuild.buildroot.net/results/dfa9564b18d9c6b163e9d59f4ed097fc688c2d95/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/dfa9564b18d9c6b163e9d59f4ed097fc688c2d95/config
Defconfig      : http://autobuild.buildroot.net/results/dfa9564b18d9c6b163e9d59f4ed097fc688c2d95/defconfig

Build 9752c08e92f8726a0dc30a5a132f510be97fb5b2
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 04:58:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9752c08e92f8726a0dc30a5a132f510be97fb5b2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9752c08e92f8726a0dc30a5a132f510be97fb5b2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9752c08e92f8726a0dc30a5a132f510be97fb5b2/config
Defconfig      : http://autobuild.buildroot.net/results/9752c08e92f8726a0dc30a5a132f510be97fb5b2/defconfig

Build c746260379af157dcbc368e0850502b5feee5ed1
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 05:01:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/c746260379af157dcbc368e0850502b5feee5ed1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c746260379af157dcbc368e0850502b5feee5ed1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c746260379af157dcbc368e0850502b5feee5ed1/config
Defconfig      : http://autobuild.buildroot.net/results/c746260379af157dcbc368e0850502b5feee5ed1/defconfig

Build 282b52e72b8a89d12a5fe08419f33f20da3dcf79
==============================================

Status         : NOK
Failure reason : libnspr-4.8.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 05:02:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/282b52e72b8a89d12a5fe08419f33f20da3dcf79/build-end.log
Complete log   : http://autobuild.buildroot.net/results/282b52e72b8a89d12a5fe08419f33f20da3dcf79/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/282b52e72b8a89d12a5fe08419f33f20da3dcf79/config
Defconfig      : http://autobuild.buildroot.net/results/282b52e72b8a89d12a5fe08419f33f20da3dcf79/defconfig

Build 2331f66058edc0dfb5f9e6a27ba55da6719e453c
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 05:09:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2331f66058edc0dfb5f9e6a27ba55da6719e453c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2331f66058edc0dfb5f9e6a27ba55da6719e453c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2331f66058edc0dfb5f9e6a27ba55da6719e453c/config
Defconfig      : http://autobuild.buildroot.net/results/2331f66058edc0dfb5f9e6a27ba55da6719e453c/defconfig

Build 13ad17a2cfe2ffa914e3e77d70ee14c625774da6
==============================================

Status         : NOK
Failure reason : libatomic_ops-1.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 05:36:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/13ad17a2cfe2ffa914e3e77d70ee14c625774da6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/13ad17a2cfe2ffa914e3e77d70ee14c625774da6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/13ad17a2cfe2ffa914e3e77d70ee14c625774da6/config
Defconfig      : http://autobuild.buildroot.net/results/13ad17a2cfe2ffa914e3e77d70ee14c625774da6/defconfig

Build c431e6a437267b1299ccaa28107161e5a4ab4124
==============================================

Status         : NOK
Failure reason : python-2.7.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 05:38:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/c431e6a437267b1299ccaa28107161e5a4ab4124/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c431e6a437267b1299ccaa28107161e5a4ab4124/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c431e6a437267b1299ccaa28107161e5a4ab4124/config
Defconfig      : http://autobuild.buildroot.net/results/c431e6a437267b1299ccaa28107161e5a4ab4124/defconfig

Build 75188c1c515f2634c3a75e4826c27155444a047c
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 05:39:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/75188c1c515f2634c3a75e4826c27155444a047c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/75188c1c515f2634c3a75e4826c27155444a047c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/75188c1c515f2634c3a75e4826c27155444a047c/config
Defconfig      : http://autobuild.buildroot.net/results/75188c1c515f2634c3a75e4826c27155444a047c/defconfig

Build 22f0ccaa4251331115f3c1422684f9c2c9988043
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 05:46:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/22f0ccaa4251331115f3c1422684f9c2c9988043/build-end.log
Complete log   : http://autobuild.buildroot.net/results/22f0ccaa4251331115f3c1422684f9c2c9988043/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/22f0ccaa4251331115f3c1422684f9c2c9988043/config
Defconfig      : http://autobuild.buildroot.net/results/22f0ccaa4251331115f3c1422684f9c2c9988043/defconfig

Build 2a50bf9a4c5b6d6bb753c8d03490b568acf23055
==============================================

Status         : NOK
Failure reason : gettext-0.16.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 05:53:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2a50bf9a4c5b6d6bb753c8d03490b568acf23055/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2a50bf9a4c5b6d6bb753c8d03490b568acf23055/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2a50bf9a4c5b6d6bb753c8d03490b568acf23055/config
Defconfig      : http://autobuild.buildroot.net/results/2a50bf9a4c5b6d6bb753c8d03490b568acf23055/defconfig

Build faa9f4b91b7eda597176eaf26f50469bb62a3afb
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 06:12:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/faa9f4b91b7eda597176eaf26f50469bb62a3afb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/faa9f4b91b7eda597176eaf26f50469bb62a3afb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/faa9f4b91b7eda597176eaf26f50469bb62a3afb/config
Defconfig      : http://autobuild.buildroot.net/results/faa9f4b91b7eda597176eaf26f50469bb62a3afb/defconfig

Build dc463cdb90667f3d9c65807076bc61b84c76b6eb
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 06:28:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/dc463cdb90667f3d9c65807076bc61b84c76b6eb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/dc463cdb90667f3d9c65807076bc61b84c76b6eb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/dc463cdb90667f3d9c65807076bc61b84c76b6eb/config
Defconfig      : http://autobuild.buildroot.net/results/dc463cdb90667f3d9c65807076bc61b84c76b6eb/defconfig

Build 9ee0637404de5d39aeb87c7286ea562191193a4b
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 06:52:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9ee0637404de5d39aeb87c7286ea562191193a4b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9ee0637404de5d39aeb87c7286ea562191193a4b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9ee0637404de5d39aeb87c7286ea562191193a4b/config
Defconfig      : http://autobuild.buildroot.net/results/9ee0637404de5d39aeb87c7286ea562191193a4b/defconfig

Build f432df76dd4cfd1e025471af8edaa40b182c133b
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 07:15:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f432df76dd4cfd1e025471af8edaa40b182c133b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f432df76dd4cfd1e025471af8edaa40b182c133b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f432df76dd4cfd1e025471af8edaa40b182c133b/config
Defconfig      : http://autobuild.buildroot.net/results/f432df76dd4cfd1e025471af8edaa40b182c133b/defconfig

Build 70998df891cd46c9d4677f119adbd73cd78ad0d2
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 07:24:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/70998df891cd46c9d4677f119adbd73cd78ad0d2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/70998df891cd46c9d4677f119adbd73cd78ad0d2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/70998df891cd46c9d4677f119adbd73cd78ad0d2/config
Defconfig      : http://autobuild.buildroot.net/results/70998df891cd46c9d4677f119adbd73cd78ad0d2/defconfig

Build efadd58835d26897455f67e8b2b31e99ab9079de
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 07:28:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/efadd58835d26897455f67e8b2b31e99ab9079de/build-end.log
Complete log   : http://autobuild.buildroot.net/results/efadd58835d26897455f67e8b2b31e99ab9079de/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/efadd58835d26897455f67e8b2b31e99ab9079de/config
Defconfig      : http://autobuild.buildroot.net/results/efadd58835d26897455f67e8b2b31e99ab9079de/defconfig

Build 94a129b0d6053417a3139db84345cacbfe315a40
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 07:29:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/94a129b0d6053417a3139db84345cacbfe315a40/build-end.log
Complete log   : http://autobuild.buildroot.net/results/94a129b0d6053417a3139db84345cacbfe315a40/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/94a129b0d6053417a3139db84345cacbfe315a40/config
Defconfig      : http://autobuild.buildroot.net/results/94a129b0d6053417a3139db84345cacbfe315a40/defconfig

Build 813a656b880abc2c258db5b3fd757a65c4da6910
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 07:59:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/813a656b880abc2c258db5b3fd757a65c4da6910/build-end.log
Complete log   : http://autobuild.buildroot.net/results/813a656b880abc2c258db5b3fd757a65c4da6910/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/813a656b880abc2c258db5b3fd757a65c4da6910/config
Defconfig      : http://autobuild.buildroot.net/results/813a656b880abc2c258db5b3fd757a65c4da6910/defconfig

Build 448f509ff771401f5aa95eb1fd76ba91edced475
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : sh4a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 08:10:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/448f509ff771401f5aa95eb1fd76ba91edced475/build-end.log
Complete log   : http://autobuild.buildroot.net/results/448f509ff771401f5aa95eb1fd76ba91edced475/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/448f509ff771401f5aa95eb1fd76ba91edced475/config
Defconfig      : http://autobuild.buildroot.net/results/448f509ff771401f5aa95eb1fd76ba91edced475/defconfig

Build 2aaf15b8fc394357f3eccd8649c9960e8b8e8b7d
==============================================

Status         : NOK
Failure reason : bluez_utils-4.101
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 08:42:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2aaf15b8fc394357f3eccd8649c9960e8b8e8b7d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2aaf15b8fc394357f3eccd8649c9960e8b8e8b7d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2aaf15b8fc394357f3eccd8649c9960e8b8e8b7d/config
Defconfig      : http://autobuild.buildroot.net/results/2aaf15b8fc394357f3eccd8649c9960e8b8e8b7d/defconfig

Build 8a3648b6109ffb444f80302ff0979d2030b007bc
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 09:05:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/8a3648b6109ffb444f80302ff0979d2030b007bc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8a3648b6109ffb444f80302ff0979d2030b007bc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8a3648b6109ffb444f80302ff0979d2030b007bc/config
Defconfig      : http://autobuild.buildroot.net/results/8a3648b6109ffb444f80302ff0979d2030b007bc/defconfig

Build e85c8eca2cb41c154d51941d615733865dcaca60
==============================================

Status         : NOK
Failure reason : arptables-0.0.3
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 09:05:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e85c8eca2cb41c154d51941d615733865dcaca60/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e85c8eca2cb41c154d51941d615733865dcaca60/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e85c8eca2cb41c154d51941d615733865dcaca60/config
Defconfig      : http://autobuild.buildroot.net/results/e85c8eca2cb41c154d51941d615733865dcaca60/defconfig

Build 44d3bce7ba90bb9654e2caf1fed62e9035d030c9
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 09:07:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/44d3bce7ba90bb9654e2caf1fed62e9035d030c9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/44d3bce7ba90bb9654e2caf1fed62e9035d030c9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/44d3bce7ba90bb9654e2caf1fed62e9035d030c9/config
Defconfig      : http://autobuild.buildroot.net/results/44d3bce7ba90bb9654e2caf1fed62e9035d030c9/defconfig

Build 7a9dc44c87751330e0996961fa205d4621411100
==============================================

Status         : NOK
Failure reason : tcpreplay-3.4.3
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 09:07:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/7a9dc44c87751330e0996961fa205d4621411100/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7a9dc44c87751330e0996961fa205d4621411100/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7a9dc44c87751330e0996961fa205d4621411100/config
Defconfig      : http://autobuild.buildroot.net/results/7a9dc44c87751330e0996961fa205d4621411100/defconfig

Build 1be9c851a55875c9766b55a71af1afeecbb25d95
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 09:14:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/1be9c851a55875c9766b55a71af1afeecbb25d95/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1be9c851a55875c9766b55a71af1afeecbb25d95/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1be9c851a55875c9766b55a71af1afeecbb25d95/config
Defconfig      : http://autobuild.buildroot.net/results/1be9c851a55875c9766b55a71af1afeecbb25d95/defconfig

Build de1ee20c66474c45b5c91932bc9661dbd2f428dc
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 09:32:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/de1ee20c66474c45b5c91932bc9661dbd2f428dc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/de1ee20c66474c45b5c91932bc9661dbd2f428dc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/de1ee20c66474c45b5c91932bc9661dbd2f428dc/config
Defconfig      : http://autobuild.buildroot.net/results/de1ee20c66474c45b5c91932bc9661dbd2f428dc/defconfig

Build 2c27d1c6f7ea7360d6a064a81b11565a2a94b765
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 09:49:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2c27d1c6f7ea7360d6a064a81b11565a2a94b765/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2c27d1c6f7ea7360d6a064a81b11565a2a94b765/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2c27d1c6f7ea7360d6a064a81b11565a2a94b765/config
Defconfig      : http://autobuild.buildroot.net/results/2c27d1c6f7ea7360d6a064a81b11565a2a94b765/defconfig

Build 4607f838054ae6b185902718a0ff7e3d9725b508
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 09:54:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4607f838054ae6b185902718a0ff7e3d9725b508/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4607f838054ae6b185902718a0ff7e3d9725b508/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4607f838054ae6b185902718a0ff7e3d9725b508/config
Defconfig      : http://autobuild.buildroot.net/results/4607f838054ae6b185902718a0ff7e3d9725b508/defconfig

Build e77b7395ce331d2b26eb7a66df550b232cbb3de2
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 10:22:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e77b7395ce331d2b26eb7a66df550b232cbb3de2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e77b7395ce331d2b26eb7a66df550b232cbb3de2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e77b7395ce331d2b26eb7a66df550b232cbb3de2/config
Defconfig      : http://autobuild.buildroot.net/results/e77b7395ce331d2b26eb7a66df550b232cbb3de2/defconfig

Build a2fdfbcbdb68b954bca4296cec8250cf4b8e1e19
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 10:30:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/a2fdfbcbdb68b954bca4296cec8250cf4b8e1e19/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a2fdfbcbdb68b954bca4296cec8250cf4b8e1e19/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a2fdfbcbdb68b954bca4296cec8250cf4b8e1e19/config
Defconfig      : http://autobuild.buildroot.net/results/a2fdfbcbdb68b954bca4296cec8250cf4b8e1e19/defconfig

Build 020f075b2b36d4f1b8d5fdb7cd03e1e8d190be2f
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 10:33:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/020f075b2b36d4f1b8d5fdb7cd03e1e8d190be2f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/020f075b2b36d4f1b8d5fdb7cd03e1e8d190be2f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/020f075b2b36d4f1b8d5fdb7cd03e1e8d190be2f/config
Defconfig      : http://autobuild.buildroot.net/results/020f075b2b36d4f1b8d5fdb7cd03e1e8d190be2f/defconfig

Build a21bb6748d0c737bb1b7c294f4386d033fcf4a2c
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 10:53:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/a21bb6748d0c737bb1b7c294f4386d033fcf4a2c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a21bb6748d0c737bb1b7c294f4386d033fcf4a2c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a21bb6748d0c737bb1b7c294f4386d033fcf4a2c/config
Defconfig      : http://autobuild.buildroot.net/results/a21bb6748d0c737bb1b7c294f4386d033fcf4a2c/defconfig

Build 044cfefffcf5a0c5c971dd691396932130b9017d
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 11:09:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/044cfefffcf5a0c5c971dd691396932130b9017d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/044cfefffcf5a0c5c971dd691396932130b9017d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/044cfefffcf5a0c5c971dd691396932130b9017d/config
Defconfig      : http://autobuild.buildroot.net/results/044cfefffcf5a0c5c971dd691396932130b9017d/defconfig

Build 7a3a751fe02c639ca75c575ca7fe20a72372b8d6
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 11:22:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/7a3a751fe02c639ca75c575ca7fe20a72372b8d6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7a3a751fe02c639ca75c575ca7fe20a72372b8d6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7a3a751fe02c639ca75c575ca7fe20a72372b8d6/config
Defconfig      : http://autobuild.buildroot.net/results/7a3a751fe02c639ca75c575ca7fe20a72372b8d6/defconfig

Build b4671187e25136433eb0c1f221df4120c59ead85
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 11:25:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b4671187e25136433eb0c1f221df4120c59ead85/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b4671187e25136433eb0c1f221df4120c59ead85/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b4671187e25136433eb0c1f221df4120c59ead85/config
Defconfig      : http://autobuild.buildroot.net/results/b4671187e25136433eb0c1f221df4120c59ead85/defconfig

Build e600f9fcb14b6bf851e5506c439f2f64cc8c97ea
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 12:26:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e600f9fcb14b6bf851e5506c439f2f64cc8c97ea/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e600f9fcb14b6bf851e5506c439f2f64cc8c97ea/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e600f9fcb14b6bf851e5506c439f2f64cc8c97ea/config
Defconfig      : http://autobuild.buildroot.net/results/e600f9fcb14b6bf851e5506c439f2f64cc8c97ea/defconfig

Build 688f45d11e4dff09fe5eb7b04796e8d0748a0930
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 12:57:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/688f45d11e4dff09fe5eb7b04796e8d0748a0930/build-end.log
Complete log   : http://autobuild.buildroot.net/results/688f45d11e4dff09fe5eb7b04796e8d0748a0930/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/688f45d11e4dff09fe5eb7b04796e8d0748a0930/config
Defconfig      : http://autobuild.buildroot.net/results/688f45d11e4dff09fe5eb7b04796e8d0748a0930/defconfig

Build 4924413a5b4e8428f0ea8db9feb4e9b2b6bdbb2b
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 13:27:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4924413a5b4e8428f0ea8db9feb4e9b2b6bdbb2b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4924413a5b4e8428f0ea8db9feb4e9b2b6bdbb2b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4924413a5b4e8428f0ea8db9feb4e9b2b6bdbb2b/config
Defconfig      : http://autobuild.buildroot.net/results/4924413a5b4e8428f0ea8db9feb4e9b2b6bdbb2b/defconfig

Build fad5732b648b10b095c51e43ad2a952ca80215d1
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 13:32:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/fad5732b648b10b095c51e43ad2a952ca80215d1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fad5732b648b10b095c51e43ad2a952ca80215d1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fad5732b648b10b095c51e43ad2a952ca80215d1/config
Defconfig      : http://autobuild.buildroot.net/results/fad5732b648b10b095c51e43ad2a952ca80215d1/defconfig

Build f33616c59cc01a5b4dcc00a079a11d5c704a9050
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 13:35:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f33616c59cc01a5b4dcc00a079a11d5c704a9050/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f33616c59cc01a5b4dcc00a079a11d5c704a9050/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f33616c59cc01a5b4dcc00a079a11d5c704a9050/config
Defconfig      : http://autobuild.buildroot.net/results/f33616c59cc01a5b4dcc00a079a11d5c704a9050/defconfig

Build 2531358bdf5ff7e2463a8852d341412f3de3487d
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 14:34:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2531358bdf5ff7e2463a8852d341412f3de3487d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2531358bdf5ff7e2463a8852d341412f3de3487d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2531358bdf5ff7e2463a8852d341412f3de3487d/config
Defconfig      : http://autobuild.buildroot.net/results/2531358bdf5ff7e2463a8852d341412f3de3487d/defconfig

Build a5b3a2d4713f2b31de91ecb775141dd3e76ef603
==============================================

Status         : NOK
Failure reason : lcdproc-0.5.6
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 14:47:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/a5b3a2d4713f2b31de91ecb775141dd3e76ef603/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a5b3a2d4713f2b31de91ecb775141dd3e76ef603/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a5b3a2d4713f2b31de91ecb775141dd3e76ef603/config
Defconfig      : http://autobuild.buildroot.net/results/a5b3a2d4713f2b31de91ecb775141dd3e76ef603/defconfig

Build e6decb5b606c0b4e555fcf105b327938a35c0e09
==============================================

Status         : NOK
Failure reason : arptables-0.0.3
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 14:51:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e6decb5b606c0b4e555fcf105b327938a35c0e09/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e6decb5b606c0b4e555fcf105b327938a35c0e09/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e6decb5b606c0b4e555fcf105b327938a35c0e09/config
Defconfig      : http://autobuild.buildroot.net/results/e6decb5b606c0b4e555fcf105b327938a35c0e09/defconfig

Build 1c740fa44ae0133943d7e8197d7a64cbdfad37b0
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 15:15:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/1c740fa44ae0133943d7e8197d7a64cbdfad37b0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1c740fa44ae0133943d7e8197d7a64cbdfad37b0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1c740fa44ae0133943d7e8197d7a64cbdfad37b0/config
Defconfig      : http://autobuild.buildroot.net/results/1c740fa44ae0133943d7e8197d7a64cbdfad37b0/defconfig

Build 4411835b15bba2cb05f3a7f752fe7f22f16c4cea
==============================================

Status         : NOK
Failure reason : boost-1.49.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 15:21:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4411835b15bba2cb05f3a7f752fe7f22f16c4cea/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4411835b15bba2cb05f3a7f752fe7f22f16c4cea/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4411835b15bba2cb05f3a7f752fe7f22f16c4cea/config
Defconfig      : http://autobuild.buildroot.net/results/4411835b15bba2cb05f3a7f752fe7f22f16c4cea/defconfig

Build aeb2fea5cb967dafa629254b9bab7ea5b03d4a37
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 15:28:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/aeb2fea5cb967dafa629254b9bab7ea5b03d4a37/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aeb2fea5cb967dafa629254b9bab7ea5b03d4a37/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aeb2fea5cb967dafa629254b9bab7ea5b03d4a37/config
Defconfig      : http://autobuild.buildroot.net/results/aeb2fea5cb967dafa629254b9bab7ea5b03d4a37/defconfig

Build 51c652a7c789be94c559d03caafc068a33b99929
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 15:30:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/51c652a7c789be94c559d03caafc068a33b99929/build-end.log
Complete log   : http://autobuild.buildroot.net/results/51c652a7c789be94c559d03caafc068a33b99929/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/51c652a7c789be94c559d03caafc068a33b99929/config
Defconfig      : http://autobuild.buildroot.net/results/51c652a7c789be94c559d03caafc068a33b99929/defconfig

Build 710e66a8b2b37763c1c2299bf816e8f7ad575eb3
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 15:34:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/710e66a8b2b37763c1c2299bf816e8f7ad575eb3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/710e66a8b2b37763c1c2299bf816e8f7ad575eb3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/710e66a8b2b37763c1c2299bf816e8f7ad575eb3/config
Defconfig      : http://autobuild.buildroot.net/results/710e66a8b2b37763c1c2299bf816e8f7ad575eb3/defconfig

Build b063ff6f04b5bd950059c86b8bd8ecb33205fbeb
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 15:39:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b063ff6f04b5bd950059c86b8bd8ecb33205fbeb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b063ff6f04b5bd950059c86b8bd8ecb33205fbeb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b063ff6f04b5bd950059c86b8bd8ecb33205fbeb/config
Defconfig      : http://autobuild.buildroot.net/results/b063ff6f04b5bd950059c86b8bd8ecb33205fbeb/defconfig

Build ffa16ef2e97e2b4283c8aa194bd0f3df57702121
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 15:44:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ffa16ef2e97e2b4283c8aa194bd0f3df57702121/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ffa16ef2e97e2b4283c8aa194bd0f3df57702121/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ffa16ef2e97e2b4283c8aa194bd0f3df57702121/config
Defconfig      : http://autobuild.buildroot.net/results/ffa16ef2e97e2b4283c8aa194bd0f3df57702121/defconfig

Build 34a31a0b333da485567f776ad45d70fb5c9c91d4
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 15:52:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/34a31a0b333da485567f776ad45d70fb5c9c91d4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/34a31a0b333da485567f776ad45d70fb5c9c91d4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/34a31a0b333da485567f776ad45d70fb5c9c91d4/config
Defconfig      : http://autobuild.buildroot.net/results/34a31a0b333da485567f776ad45d70fb5c9c91d4/defconfig

Build 53fc3cdf0090a75349499849080d720b724dcdcb
==============================================

Status         : NOK
Failure reason : lua-5.1.5
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 15:52:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/53fc3cdf0090a75349499849080d720b724dcdcb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/53fc3cdf0090a75349499849080d720b724dcdcb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/53fc3cdf0090a75349499849080d720b724dcdcb/config
Defconfig      : http://autobuild.buildroot.net/results/53fc3cdf0090a75349499849080d720b724dcdcb/defconfig

Build bf39b5a4b8dfb4b67ceb2db513302ba73ab1b90d
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 15:56:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/bf39b5a4b8dfb4b67ceb2db513302ba73ab1b90d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bf39b5a4b8dfb4b67ceb2db513302ba73ab1b90d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bf39b5a4b8dfb4b67ceb2db513302ba73ab1b90d/config
Defconfig      : http://autobuild.buildroot.net/results/bf39b5a4b8dfb4b67ceb2db513302ba73ab1b90d/defconfig

Build 145230372e67f8056c53fb1fbcb6166d8dcc1e8f
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 16:29:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/145230372e67f8056c53fb1fbcb6166d8dcc1e8f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/145230372e67f8056c53fb1fbcb6166d8dcc1e8f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/145230372e67f8056c53fb1fbcb6166d8dcc1e8f/config
Defconfig      : http://autobuild.buildroot.net/results/145230372e67f8056c53fb1fbcb6166d8dcc1e8f/defconfig

Build d9e4b6d6d1105019b6de9bf18f16cfc45fa377da
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 16:30:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d9e4b6d6d1105019b6de9bf18f16cfc45fa377da/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d9e4b6d6d1105019b6de9bf18f16cfc45fa377da/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d9e4b6d6d1105019b6de9bf18f16cfc45fa377da/config
Defconfig      : http://autobuild.buildroot.net/results/d9e4b6d6d1105019b6de9bf18f16cfc45fa377da/defconfig

Build 6fe0a33dece16f12116fd554876e5f33e9d14e80
==============================================

Status         : NOK
Failure reason : xlib_libXt-1.0.9
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 16:41:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6fe0a33dece16f12116fd554876e5f33e9d14e80/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6fe0a33dece16f12116fd554876e5f33e9d14e80/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6fe0a33dece16f12116fd554876e5f33e9d14e80/config
Defconfig      : http://autobuild.buildroot.net/results/6fe0a33dece16f12116fd554876e5f33e9d14e80/defconfig

Build b7c5ba9719f0b7083ddbf5faa5d340eeb5b9e4ec
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 16:45:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b7c5ba9719f0b7083ddbf5faa5d340eeb5b9e4ec/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b7c5ba9719f0b7083ddbf5faa5d340eeb5b9e4ec/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b7c5ba9719f0b7083ddbf5faa5d340eeb5b9e4ec/config
Defconfig      : http://autobuild.buildroot.net/results/b7c5ba9719f0b7083ddbf5faa5d340eeb5b9e4ec/defconfig

Build 85fb71fbc0e2bd8c476841ae7594b840226498c8
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 16:53:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/85fb71fbc0e2bd8c476841ae7594b840226498c8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/85fb71fbc0e2bd8c476841ae7594b840226498c8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/85fb71fbc0e2bd8c476841ae7594b840226498c8/config
Defconfig      : http://autobuild.buildroot.net/results/85fb71fbc0e2bd8c476841ae7594b840226498c8/defconfig

Build ea6373242e104ddd94d986508702e75bc3c3242b
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 16:59:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ea6373242e104ddd94d986508702e75bc3c3242b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ea6373242e104ddd94d986508702e75bc3c3242b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ea6373242e104ddd94d986508702e75bc3c3242b/config
Defconfig      : http://autobuild.buildroot.net/results/ea6373242e104ddd94d986508702e75bc3c3242b/defconfig

Build afec429d543f8b9553c37e8be223946c9818a680
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 17:05:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/afec429d543f8b9553c37e8be223946c9818a680/build-end.log
Complete log   : http://autobuild.buildroot.net/results/afec429d543f8b9553c37e8be223946c9818a680/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/afec429d543f8b9553c37e8be223946c9818a680/config
Defconfig      : http://autobuild.buildroot.net/results/afec429d543f8b9553c37e8be223946c9818a680/defconfig

Build 41ca94e11230d373332effa311365540368f8257
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 17:07:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/41ca94e11230d373332effa311365540368f8257/build-end.log
Complete log   : http://autobuild.buildroot.net/results/41ca94e11230d373332effa311365540368f8257/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/41ca94e11230d373332effa311365540368f8257/config
Defconfig      : http://autobuild.buildroot.net/results/41ca94e11230d373332effa311365540368f8257/defconfig

Build 58526ccb21518869cbf4c1eda247afb2540d99d5
==============================================

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

Build 797c63464891c4cee33de0d57e2347c9c540d5ef
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 17:41:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/797c63464891c4cee33de0d57e2347c9c540d5ef/build-end.log
Complete log   : http://autobuild.buildroot.net/results/797c63464891c4cee33de0d57e2347c9c540d5ef/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/797c63464891c4cee33de0d57e2347c9c540d5ef/config
Defconfig      : http://autobuild.buildroot.net/results/797c63464891c4cee33de0d57e2347c9c540d5ef/defconfig

Build 6aded4314aa043bfc498d57ae0276ca0daa5161c
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 17:53:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6aded4314aa043bfc498d57ae0276ca0daa5161c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6aded4314aa043bfc498d57ae0276ca0daa5161c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6aded4314aa043bfc498d57ae0276ca0daa5161c/config
Defconfig      : http://autobuild.buildroot.net/results/6aded4314aa043bfc498d57ae0276ca0daa5161c/defconfig

Build 8e4848b42b79bf513a50c6f492dc55af431909cb
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 18:11:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/8e4848b42b79bf513a50c6f492dc55af431909cb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8e4848b42b79bf513a50c6f492dc55af431909cb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8e4848b42b79bf513a50c6f492dc55af431909cb/config
Defconfig      : http://autobuild.buildroot.net/results/8e4848b42b79bf513a50c6f492dc55af431909cb/defconfig

Build 9a528079df14b7d710e144697db3ce373fb4ff74
==============================================

Status         : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 18:12:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9a528079df14b7d710e144697db3ce373fb4ff74/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9a528079df14b7d710e144697db3ce373fb4ff74/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9a528079df14b7d710e144697db3ce373fb4ff74/config
Defconfig      : http://autobuild.buildroot.net/results/9a528079df14b7d710e144697db3ce373fb4ff74/defconfig

Build 263f74bc2a0c63953cca9a4571bc57a0b7b5b2b6
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 18:40:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/263f74bc2a0c63953cca9a4571bc57a0b7b5b2b6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/263f74bc2a0c63953cca9a4571bc57a0b7b5b2b6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/263f74bc2a0c63953cca9a4571bc57a0b7b5b2b6/config
Defconfig      : http://autobuild.buildroot.net/results/263f74bc2a0c63953cca9a4571bc57a0b7b5b2b6/defconfig

Build e93a7dc9a3b2be87870b38b9285925baf4aa8bc2
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 18:47:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e93a7dc9a3b2be87870b38b9285925baf4aa8bc2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e93a7dc9a3b2be87870b38b9285925baf4aa8bc2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e93a7dc9a3b2be87870b38b9285925baf4aa8bc2/config
Defconfig      : http://autobuild.buildroot.net/results/e93a7dc9a3b2be87870b38b9285925baf4aa8bc2/defconfig

Build d585679dc66ffb6dc9300fd7bb1605c2af50a61e
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 18:54:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d585679dc66ffb6dc9300fd7bb1605c2af50a61e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d585679dc66ffb6dc9300fd7bb1605c2af50a61e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d585679dc66ffb6dc9300fd7bb1605c2af50a61e/config
Defconfig      : http://autobuild.buildroot.net/results/d585679dc66ffb6dc9300fd7bb1605c2af50a61e/defconfig

Build e659bcd57acd00bfd0e475b4ab1def957465eb20
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 19:10:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e659bcd57acd00bfd0e475b4ab1def957465eb20/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e659bcd57acd00bfd0e475b4ab1def957465eb20/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e659bcd57acd00bfd0e475b4ab1def957465eb20/config
Defconfig      : http://autobuild.buildroot.net/results/e659bcd57acd00bfd0e475b4ab1def957465eb20/defconfig

Build d7323831372050e425a34f5104a46d8cbd6be214
==============================================

Status         : NOK
Failure reason : libnspr-4.8.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 19:24:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d7323831372050e425a34f5104a46d8cbd6be214/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d7323831372050e425a34f5104a46d8cbd6be214/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d7323831372050e425a34f5104a46d8cbd6be214/config
Defconfig      : http://autobuild.buildroot.net/results/d7323831372050e425a34f5104a46d8cbd6be214/defconfig

Build f3c27bca8a77f7aa67d9db7c648819043473b763
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 19:29:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f3c27bca8a77f7aa67d9db7c648819043473b763/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f3c27bca8a77f7aa67d9db7c648819043473b763/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f3c27bca8a77f7aa67d9db7c648819043473b763/config
Defconfig      : http://autobuild.buildroot.net/results/f3c27bca8a77f7aa67d9db7c648819043473b763/defconfig

Build 94533121b81c9647ef14e2fa9cd17a0548da8e70
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 19:54:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/94533121b81c9647ef14e2fa9cd17a0548da8e70/build-end.log
Complete log   : http://autobuild.buildroot.net/results/94533121b81c9647ef14e2fa9cd17a0548da8e70/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/94533121b81c9647ef14e2fa9cd17a0548da8e70/config
Defconfig      : http://autobuild.buildroot.net/results/94533121b81c9647ef14e2fa9cd17a0548da8e70/defconfig

Build ea3524fde8dd9045cab3d3a1f92c20d4d566b7e1
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 19:58:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ea3524fde8dd9045cab3d3a1f92c20d4d566b7e1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ea3524fde8dd9045cab3d3a1f92c20d4d566b7e1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ea3524fde8dd9045cab3d3a1f92c20d4d566b7e1/config
Defconfig      : http://autobuild.buildroot.net/results/ea3524fde8dd9045cab3d3a1f92c20d4d566b7e1/defconfig

Build 936c3f7d204841f09c56517460083aa60e8d0a25
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 20:03:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/936c3f7d204841f09c56517460083aa60e8d0a25/build-end.log
Complete log   : http://autobuild.buildroot.net/results/936c3f7d204841f09c56517460083aa60e8d0a25/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/936c3f7d204841f09c56517460083aa60e8d0a25/config
Defconfig      : http://autobuild.buildroot.net/results/936c3f7d204841f09c56517460083aa60e8d0a25/defconfig

Build b5b06c353f9465604e69831fc31d2fbc9234eca3
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 20:37:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b5b06c353f9465604e69831fc31d2fbc9234eca3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b5b06c353f9465604e69831fc31d2fbc9234eca3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b5b06c353f9465604e69831fc31d2fbc9234eca3/config
Defconfig      : http://autobuild.buildroot.net/results/b5b06c353f9465604e69831fc31d2fbc9234eca3/defconfig

Build 6fb2922eb3db7ba4430b709fc914a57a274b02c7
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-10 20:42:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6fb2922eb3db7ba4430b709fc914a57a274b02c7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6fb2922eb3db7ba4430b709fc914a57a274b02c7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6fb2922eb3db7ba4430b709fc914a57a274b02c7/config
Defconfig      : http://autobuild.buildroot.net/results/6fb2922eb3db7ba4430b709fc914a57a274b02c7/defconfig

Build f54aabbd62f34c77814f9434f46a1284def71729
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 20:45:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f54aabbd62f34c77814f9434f46a1284def71729/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f54aabbd62f34c77814f9434f46a1284def71729/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f54aabbd62f34c77814f9434f46a1284def71729/config
Defconfig      : http://autobuild.buildroot.net/results/f54aabbd62f34c77814f9434f46a1284def71729/defconfig

Build 5b8865aa43bf213f809c45b539954cc2cc32ca59
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 21:25:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/5b8865aa43bf213f809c45b539954cc2cc32ca59/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5b8865aa43bf213f809c45b539954cc2cc32ca59/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5b8865aa43bf213f809c45b539954cc2cc32ca59/config
Defconfig      : http://autobuild.buildroot.net/results/5b8865aa43bf213f809c45b539954cc2cc32ca59/defconfig

Build e37db29810265a756833da163fda444d967d7874
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output/target/usr/bin/gdb] Error 1
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 21:26:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e37db29810265a756833da163fda444d967d7874/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e37db29810265a756833da163fda444d967d7874/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e37db29810265a756833da163fda444d967d7874/config
Defconfig      : http://autobuild.buildroot.net/results/e37db29810265a756833da163fda444d967d7874/defconfig

Build bace5cea3e4123aba18be6ca24f34a73326e1900
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-10 21:46:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/bace5cea3e4123aba18be6ca24f34a73326e1900/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bace5cea3e4123aba18be6ca24f34a73326e1900/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bace5cea3e4123aba18be6ca24f34a73326e1900/config
Defconfig      : http://autobuild.buildroot.net/results/bace5cea3e4123aba18be6ca24f34a73326e1900/defconfig

Build 6b690cb0e1dc0221c978be14493f2e8786468747
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 22:31:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6b690cb0e1dc0221c978be14493f2e8786468747/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6b690cb0e1dc0221c978be14493f2e8786468747/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6b690cb0e1dc0221c978be14493f2e8786468747/config
Defconfig      : http://autobuild.buildroot.net/results/6b690cb0e1dc0221c978be14493f2e8786468747/defconfig

Build 502b7d3f29d7982d56de2ae4a0b943315e04713b
==============================================

Status         : NOK
Failure reason : tremor-18153
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 22:37:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/502b7d3f29d7982d56de2ae4a0b943315e04713b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/502b7d3f29d7982d56de2ae4a0b943315e04713b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/502b7d3f29d7982d56de2ae4a0b943315e04713b/config
Defconfig      : http://autobuild.buildroot.net/results/502b7d3f29d7982d56de2ae4a0b943315e04713b/defconfig

Build c1a0fa5f7949e8a60ac5399377a7ea3fc1aedcdf
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 22:45:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/c1a0fa5f7949e8a60ac5399377a7ea3fc1aedcdf/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c1a0fa5f7949e8a60ac5399377a7ea3fc1aedcdf/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c1a0fa5f7949e8a60ac5399377a7ea3fc1aedcdf/config
Defconfig      : http://autobuild.buildroot.net/results/c1a0fa5f7949e8a60ac5399377a7ea3fc1aedcdf/defconfig

Build 84c06243f696ff4baa3eb50788c63305ec475329
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 22:53:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/84c06243f696ff4baa3eb50788c63305ec475329/build-end.log
Complete log   : http://autobuild.buildroot.net/results/84c06243f696ff4baa3eb50788c63305ec475329/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/84c06243f696ff4baa3eb50788c63305ec475329/config
Defconfig      : http://autobuild.buildroot.net/results/84c06243f696ff4baa3eb50788c63305ec475329/defconfig

Build a02db622aa86aacd2ed9e03f5fe117304d8d5578
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 22:55:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/a02db622aa86aacd2ed9e03f5fe117304d8d5578/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a02db622aa86aacd2ed9e03f5fe117304d8d5578/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a02db622aa86aacd2ed9e03f5fe117304d8d5578/config
Defconfig      : http://autobuild.buildroot.net/results/a02db622aa86aacd2ed9e03f5fe117304d8d5578/defconfig

Build f27763bb35651511b1d87f5354b4baa4c514e723
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-10 23:18:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f27763bb35651511b1d87f5354b4baa4c514e723/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f27763bb35651511b1d87f5354b4baa4c514e723/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f27763bb35651511b1d87f5354b4baa4c514e723/config
Defconfig      : http://autobuild.buildroot.net/results/f27763bb35651511b1d87f5354b4baa4c514e723/defconfig

Build 553a81a66082d7ae82fa248c96efe818d16061e1
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-10 23:26:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/553a81a66082d7ae82fa248c96efe818d16061e1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/553a81a66082d7ae82fa248c96efe818d16061e1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/553a81a66082d7ae82fa248c96efe818d16061e1/config
Defconfig      : http://autobuild.buildroot.net/results/553a81a66082d7ae82fa248c96efe818d16061e1/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [PATCH 1/2 v2] neard: new package
From: Simon Dawson @ 2012-11-11 10:04 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121111051107.GA20951@sapphire.tkos.co.il>

Hi Baruch; thanks for the feedback.

On 11 November 2012 05:11, Baruch Siach <baruch@tkos.co.il> wrote:
>> +NEARD_VERSION = 0.7
>
> Version 0.8 seems to be available. Any reason not to use that one?

No reason --- I just hadn't spotted that 0.8 had been released.

>> +NEARD_INSTALL_STAGING = YES
>
> Why is this needed? Does this package export headers needed by others?

In fact, this is not needed. I had thought that the neardal package
depended on headers installed by neard, but this is not the case.

I'll rework the neard and neardal patches, and resubmit.

Simon.

^ permalink raw reply

* [Buildroot] [PATCH 0/2 v3] Add neard and neardal packages
From: spdawson at gmail.com @ 2012-11-11 10:07 UTC (permalink / raw)
  To: buildroot

From: Simon Dawson <spdawson@gmail.com>

This patch set adds the neard and neardal packages for linux-nfc support.

Simon Dawson (2):
  neard: new package
  neardal: new package

 package/Config.in          |    2 ++
 package/neard/Config.in    |   12 ++++++++++++
 package/neard/neard.mk     |   14 ++++++++++++++
 package/neardal/Config.in  |    7 +++++++
 package/neardal/neardal.mk |   16 ++++++++++++++++
 5 files changed, 51 insertions(+)
 create mode 100644 package/neard/Config.in
 create mode 100644 package/neard/neard.mk
 create mode 100644 package/neardal/Config.in
 create mode 100644 package/neardal/neardal.mk

-- 
1.7.10.4

^ permalink raw reply

* [Buildroot] [PATCH 1/2 v3] neard: new package
From: spdawson at gmail.com @ 2012-11-11 10:07 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352628468-14490-1-git-send-email-spdawson@gmail.com>

From: Simon Dawson <spdawson@gmail.com>

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 (built-test on a minimal powerpc config)
---
 v3: Incorporated improvements suggested by Baruch Siach,
     add Arnout Vandecappelle's acks
 v2: Incorporated improvements suggested by Thomas Petazzoni

 package/Config.in       |    1 +
 package/neard/Config.in |   12 ++++++++++++
 package/neard/neard.mk  |   14 ++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 100644 package/neard/Config.in
 create mode 100644 package/neard/neard.mk

diff --git a/package/Config.in b/package/Config.in
index 074e9df..6115fb4 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -237,6 +237,7 @@ source "package/mdadm/Config.in"
 source "package/memtester/Config.in"
 source "package/minicom/Config.in"
 source "package/nanocom/Config.in"
+source "package/neard/Config.in"
 source "package/ofono/Config.in"
 source "package/open2300/Config.in"
 source "package/openocd/Config.in"
diff --git a/package/neard/Config.in b/package/neard/Config.in
new file mode 100644
index 0000000..a50dbeb
--- /dev/null
+++ b/package/neard/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_NEARD
+	bool "neard"
+	select BR2_PACKAGE_DBUS
+	select BR2_PACKAGE_LIBGLIB2
+	select BR2_PACKAGE_LIBNL
+	help
+	  Near Field Communication (NFC) manager. This userspace daemon is a part
+	  of the NFC stack provided by the Linux NFC project.
+
+	  http://git.kernel.org/?p=network/nfc/neard.git;a=summary
+
+	  https://01.org/linux-nfc/documentation/how-start-linux-nfc-code...
diff --git a/package/neard/neard.mk b/package/neard/neard.mk
new file mode 100644
index 0000000..28bde71
--- /dev/null
+++ b/package/neard/neard.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# neard
+#
+#############################################################
+NEARD_VERSION = 0.8
+NEARD_SITE = $(BR2_KERNEL_MIRROR)/linux/network/nfc
+NEARD_LICENSE = GPLv2
+NEARD_LICENSE_FILES = COPYING
+
+NEARD_DEPENDENCIES = dbus libglib2 libnl
+NEARD_CONF_OPT = --disable-traces
+
+$(eval $(autotools-package))
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCH 2/2 v3] neardal: new package
From: spdawson at gmail.com @ 2012-11-11 10:07 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352628468-14490-1-git-send-email-spdawson@gmail.com>

From: Simon Dawson <spdawson@gmail.com>

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 (built-test on a minimal powerpc config)
---
 v3: Remove spurious dependency on neard, add Arnout Vandecappelle's acks
 v2: (No v2, bumped entire patch series to v3)

 package/Config.in          |    1 +
 package/neardal/Config.in  |    7 +++++++
 package/neardal/neardal.mk |   16 ++++++++++++++++
 3 files changed, 24 insertions(+)
 create mode 100644 package/neardal/Config.in
 create mode 100644 package/neardal/neardal.mk

diff --git a/package/Config.in b/package/Config.in
index 6115fb4..0e6970c 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -419,6 +419,7 @@ source "package/libusb/Config.in"
 source "package/libusb-compat/Config.in"
 source "package/libv4l/Config.in"
 source "package/mtdev/Config.in"
+source "package/neardal/Config.in"
 source "package/pcsc-lite/Config.in"
 endmenu
 
diff --git a/package/neardal/Config.in b/package/neardal/Config.in
new file mode 100644
index 0000000..719bf95
--- /dev/null
+++ b/package/neardal/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_NEARDAL
+	bool "neardal"
+	select BR2_PACKAGE_DBUS_GLIB
+	help
+	  Provides a simple C API to exchange data with the neard NFC manager daemon.
+
+	  https://github.com/connectivity/neardal
diff --git a/package/neardal/neardal.mk b/package/neardal/neardal.mk
new file mode 100644
index 0000000..f898df5
--- /dev/null
+++ b/package/neardal/neardal.mk
@@ -0,0 +1,16 @@
+#############################################################
+#
+# neardal
+#
+#############################################################
+NEARDAL_VERSION = 0.7
+NEARDAL_SITE = http://github.com/connectivity/neardal/tarball/$(NEARDAL_VERSION)
+NEARDAL_SOURCE = connectivity-neardal-$(NEARDAL_VERSION).tar.gz
+NEARDAL_INSTALL_STAGING = YES
+NEARDAL_LICENSE = GPLv2
+NEARDAL_LICENSE_FILES = COPYING
+
+NEARDAL_DEPENDENCIES = dbus-glib
+NEARDAL_AUTORECONF = YES
+
+$(eval $(autotools-package))
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCH 00/23] Pull request for branch for-2012/doc
From: Samuel Martin @ 2012-11-11 13:14 UTC (permalink / raw)
  To: buildroot

Hi folks,

Here is another round of the documentation refactoring, that, as we agreed
during the last Buildroot developer Days, aims to be merged to move forward on
this topic.

This series has been rebased on the commit:
234fe4433489bca81b79311239569525cc008d9d

and can be fetched from:
https://github.com/tSed/buildroot.git for-2012.11/doc

In addition to the new sections and random updates added since the last
subimission of this patch series, the manual has grown quite a lot, especially
since the last Buildroot developer Days.

In details:

* Added few tips when using Buildroot.

* FAQ: Explanation why compiler/dev. files/documentation is not supported on the
  target.

* Start some explanation when 'make clean all' is necessary.

* Added few tips for adding package.

* Describe the sub-target of a package build.

* Add few tips about how to use generated images.

* Add a bunch of information about the Buildroot project community
  (how to get help, how to contribute, ...)

* Update the appendices:
  - add the list of the deprecated stuff
  - add the list of the packages integrated in Buildroot (which make a lot of
    noise in the diff stat :P)


Previous submission:
- http://lists.busybox.net/pipermail/buildroot/2012-March/051952.html
- http://lists.busybox.net/pipermail/buildroot/2012-May/053803.html

Happy review!

As always, looking forward to read your comments, suggestions, critics, blames...


Samuel Martin (23):
  dependencies.sh: remove makeinfo (texinfo) from the requirement list
  manual: make clean target consistent with others in buildroot
  manual: set toc depth to 4 for html outputs
  manual: rework the whole documentation stub
  manual: rework introduction.txt and add embedded-basics.txt
  manual: rework using.txt and update common-usage.txt
  manual: customize-rootfs.txt: refactoring, misc. fixes and update
  manual: update rebuilding-packages.txt
  manual: adding-package-directory.txt: update, cleanup and typo fixes
  manual: add prerequisite.txt
  manual: add make-tips.txt
  manual: faq.txt: rework and update
  manual: add writing-rules.txt
  manual: add get-involved.txt
  manual: add contribute.txt
  manual: add package-make-target.txt
  manual: add download-infra.txt
  manual: add patch-policy.txt
  manual: add adding-package-tips.txt
  manual: add legal-info.txt
  manual: add pkg-list.txt (generated list of available packages)
  manual: add deprecated-list.txt
  manual: add beyond-buildroot.txt

 docs/manual/adding-packages-autotools.txt  |   8 +-
 docs/manual/adding-packages-cmake.txt      |   8 +-
 docs/manual/adding-packages-conclusion.txt |   4 +-
 docs/manual/adding-packages-directory.txt  |  42 +-
 docs/manual/adding-packages-generic.txt    |  66 ++-
 docs/manual/adding-packages-gettext.txt    |   4 +-
 docs/manual/adding-packages-tips.txt       |  54 ++
 docs/manual/adding-packages.txt            |   8 +-
 docs/manual/advanced.txt                   |  14 +
 docs/manual/appendix.txt                   |  15 +
 docs/manual/beyond-buildroot.txt           |  38 ++
 docs/manual/board-support.txt              |   5 +-
 docs/manual/ccache-support.txt             |   5 +-
 docs/manual/common-usage.txt               | 101 ++++
 docs/manual/contribute.txt                 | 126 +++++
 docs/manual/customize-busybox-config.txt   |   8 +-
 docs/manual/customize-kernel-config.txt    |   5 +-
 docs/manual/customize-rootfs.txt           |  35 +-
 docs/manual/customize-toolchain.txt        |  12 +-
 docs/manual/customize-uclibc-config.txt    |   6 +-
 docs/manual/customize.txt                  |   4 +-
 docs/manual/deprecated-list.txt            |  46 ++
 docs/manual/developer-guide.txt            |  14 +
 docs/manual/download-infra.txt             |   8 +
 docs/manual/download-location.txt          |   4 +-
 docs/manual/embedded-basics.txt            | 110 ++++
 docs/manual/external-toolchain.txt         |   6 +-
 docs/manual/faq-troubleshooting.txt        | 134 +++++
 docs/manual/faq.txt                        |  59 --
 docs/manual/get-involved.txt               | 101 ++++
 docs/manual/getting.txt                    |   5 +-
 docs/manual/going-further.txt              |  10 +
 docs/manual/how-buildroot-works.txt        |   4 +-
 docs/manual/introduction.txt               |  72 +--
 docs/manual/legal-notice.txt               | 136 +++++
 docs/manual/make-tips.txt                  |  58 ++
 docs/manual/makedev-syntax.txt             |   2 +
 docs/manual/manual.mk                      |  10 +-
 docs/manual/manual.txt                     |  24 +-
 docs/manual/package-make-target.txt        |  88 +++
 docs/manual/patch-policy.txt               | 128 +++++
 docs/manual/pkg-list.txt                   | 870 +++++++++++++++++++++++++++++
 docs/manual/prerequisite.txt               |  84 +++
 docs/manual/rebuilding-packages.txt        |  73 ++-
 docs/manual/starting-up.txt                |  11 +
 docs/manual/using-buildroot-toolchain.txt  |   4 +-
 docs/manual/using.txt                      | 237 +-------
 docs/manual/working-with.txt               |  23 +
 docs/manual/writing-rules.txt              | 125 +++++
 support/dependencies/dependencies.sh       |   6 +-
 50 files changed, 2547 insertions(+), 473 deletions(-)
 create mode 100644 docs/manual/adding-packages-tips.txt
 create mode 100644 docs/manual/advanced.txt
 create mode 100644 docs/manual/beyond-buildroot.txt
 create mode 100644 docs/manual/common-usage.txt
 create mode 100644 docs/manual/contribute.txt
 create mode 100644 docs/manual/deprecated-list.txt
 create mode 100644 docs/manual/developer-guide.txt
 create mode 100644 docs/manual/download-infra.txt
 create mode 100644 docs/manual/embedded-basics.txt
 create mode 100644 docs/manual/faq-troubleshooting.txt
 delete mode 100644 docs/manual/faq.txt
 create mode 100644 docs/manual/get-involved.txt
 create mode 100644 docs/manual/going-further.txt
 create mode 100644 docs/manual/legal-notice.txt
 create mode 100644 docs/manual/make-tips.txt
 create mode 100644 docs/manual/package-make-target.txt
 create mode 100644 docs/manual/patch-policy.txt
 create mode 100644 docs/manual/pkg-list.txt
 create mode 100644 docs/manual/prerequisite.txt
 create mode 100644 docs/manual/starting-up.txt
 create mode 100644 docs/manual/working-with.txt
 create mode 100644 docs/manual/writing-rules.txt

--
1.8.0

^ permalink raw reply

* [Buildroot] [PATCH 01/23] dependencies.sh: remove makeinfo (texinfo) from the requirement list
From: Samuel Martin @ 2012-11-11 13:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-1-git-send-email-s.martin49@gmail.com>


Signed-off-by: Samuel Martin <s.martin49@gmail.com>

diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
index 9f0f6a9..403ad75 100755
--- a/support/dependencies/dependencies.sh
+++ b/support/dependencies/dependencies.sh
@@ -131,12 +131,10 @@ if ! $SHELL --version 2>&1 | grep -q '^GNU bash'; then
 fi;
 
 # Check that a few mandatory programs are installed
-for prog in awk bison flex msgfmt makeinfo patch gzip bzip2 perl tar wget cpio python unzip rsync ${DL_TOOLS} ; do
+for prog in awk bison flex msgfmt patch gzip bzip2 perl tar wget cpio python unzip rsync ${DL_TOOLS} ; do
     if ! which $prog > /dev/null ; then
 	/bin/echo -e "\nYou must install '$prog' on your build machine";
-	if test $prog = "makeinfo" ; then
-	    /bin/echo -e "makeinfo is usually part of the texinfo package in your distribution\n"
-	elif test $prog = "msgfmt" ; then
+	if test $prog = "msgfmt" ; then
 	    /bin/echo -e "msgfmt is usually part of the gettext package in your distribution\n"
 	elif test $prog = "svn" ; then
 	    /bin/echo -e "svn is usually part of the subversion package in your distribution\n"
-- 
1.8.0

^ permalink raw reply related

* [Buildroot] [PATCH 02/23] manual: make clean target consistent with others in buildroot
From: Samuel Martin @ 2012-11-11 13:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-1-git-send-email-s.martin49@gmail.com>


Signed-off-by: Samuel Martin <s.martin49@gmail.com>

diff --git a/docs/manual/manual.mk b/docs/manual/manual.mk
index 1eaf73a..83d2fcb 100644
--- a/docs/manual/manual.mk
+++ b/docs/manual/manual.mk
@@ -38,10 +38,10 @@ $(call GENDOC_INNER,$(1),chunked,split-html,chunked,Split HTML)
 $(call GENDOC_INNER,$(1),pdf,pdf,pdf,PDF,--dblatex-opts "-P latex.output.revhistory=0")
 $(call GENDOC_INNER,$(1),text,txt,text,Text)
 $(call GENDOC_INNER,$(1),epub,epub,epub,EPUB)
-clean: clean-$(1)
-clean-$(1):
+clean clean-$(1): $(1)-clean
+$(1)-clean:
 	$(Q)$(RM) -rf $(O)/docs/$(1)
-.PHONY: $(1) clean-$(1)
+.PHONY: $(1) $(1)-clean
 endef
 
 MANUAL_SOURCES = $(wildcard docs/manual/*.txt) $(wildcard docs/images/*)
-- 
1.8.0

^ permalink raw reply related

* [Buildroot] [PATCH 03/23] manual: set toc depth to 4 for html outputs
From: Samuel Martin @ 2012-11-11 13:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-1-git-send-email-s.martin49@gmail.com>


Signed-off-by: Samuel Martin <s.martin49@gmail.com>

diff --git a/docs/manual/manual.mk b/docs/manual/manual.mk
index 83d2fcb..0043ebf 100644
--- a/docs/manual/manual.mk
+++ b/docs/manual/manual.mk
@@ -33,8 +33,8 @@ endef
 # The variable <DOCUMENT_NAME>_SOURCES defines the dependencies.
 ################################################################################
 define GENDOC
-$(call GENDOC_INNER,$(1),xhtml,html,html,HTML)
-$(call GENDOC_INNER,$(1),chunked,split-html,chunked,Split HTML)
+$(call GENDOC_INNER,$(1),xhtml,html,html,HTML,--xsltproc-opts "--stringparam toc.section.depth 4")
+$(call GENDOC_INNER,$(1),chunked,split-html,chunked,Split HTML,--xsltproc-opts "--stringparam toc.section.depth 4")
 $(call GENDOC_INNER,$(1),pdf,pdf,pdf,PDF,--dblatex-opts "-P latex.output.revhistory=0")
 $(call GENDOC_INNER,$(1),text,txt,text,Text)
 $(call GENDOC_INNER,$(1),epub,epub,epub,EPUB)
-- 
1.8.0

^ permalink raw reply related

* [Buildroot] [PATCH 04/23] manual: rework the whole documentation stub
From: Samuel Martin @ 2012-11-11 13:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-1-git-send-email-s.martin49@gmail.com>

The new skeleton of the manual as it has been thought:
1.  About Buildroot:
     Presentation of Buildroot
2.  Starting up:
     Everything to quickly and easily start working with Buildroot
3.  Working with Buildroot
     Basics to make your work fitting your needs
4.  Troubleshooting
5.  Going further in Buildroot's innards
     Explaination of how buildroot is organised, how it works, etc
6.  Developer Guidelines
7.  Getting involved
8.  Contibuting to Buildroot
9.  Legal notice
10. Appendix

It is easy to distinguish two parts in this plan:
- Sections 1 to 4 mainly address people starting with Buildroot
- Sections 5 to 10 are more focused on how to develop Buildroot itself

Most of the existing sections have just been moved in the hierarchy,
few were split and dispatch in, what i think was the relevant section,
and numerous others have been created.

Signed-off-by: Samuel Martin <s.martin49@gmail.com>

 create mode 100644 docs/manual/advanced.txt
 create mode 100644 docs/manual/common-usage.txt
 create mode 100644 docs/manual/developer-guide.txt
 create mode 100644 docs/manual/going-further.txt
 create mode 100644 docs/manual/starting-up.txt
 create mode 100644 docs/manual/working-with.txt

diff --git a/docs/manual/adding-packages-autotools.txt b/docs/manual/adding-packages-autotools.txt
index b85b7af..1184b69 100644
--- a/docs/manual/adding-packages-autotools.txt
+++ b/docs/manual/adding-packages-autotools.txt
@@ -1,10 +1,12 @@
+// -*- mode:doc; -*-
+
 Infrastructure for autotools-based packages
--------------------------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 [[autotools-package-tutorial]]
 
 +autotools-package+ tutorial
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 First, let's see how to write a +.mk+ file for an autotools-based
 package, with an example :
@@ -64,7 +66,7 @@ package to be built.
 [[autotools-package-reference]]
 
 +autotools-package+ reference
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 The main macro of the autotools package infrastructure is
 +autotools-package+. It is similar to the +generic-package+ macro. The ability to
diff --git a/docs/manual/adding-packages-cmake.txt b/docs/manual/adding-packages-cmake.txt
index da4984a..81ac0a7 100644
--- a/docs/manual/adding-packages-cmake.txt
+++ b/docs/manual/adding-packages-cmake.txt
@@ -1,10 +1,12 @@
+// -*- mode:doc; -*-
+
 Infrastructure for CMake-based packages
----------------------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 [[cmake-package-tutorial]]
 
 +cmake-package+ tutorial
-~~~~~~~~~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^^^^^^^^^
 
 First, let's see how to write a +.mk+ file for a CMake-based package,
 with an example :
@@ -63,7 +65,7 @@ package to be built.
 [[cmake-package-reference]]
 
 +cmake-package+ reference
-~~~~~~~~~~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^^^^^^^^^^
 
 The main macro of the CMake package infrastructure is
 +cmake-package+. It is similar to the +generic-package+ macro. The ability to
diff --git a/docs/manual/adding-packages-conclusion.txt b/docs/manual/adding-packages-conclusion.txt
index 3475827..ac20875 100644
--- a/docs/manual/adding-packages-conclusion.txt
+++ b/docs/manual/adding-packages-conclusion.txt
@@ -1,5 +1,7 @@
+// -*- mode:doc; -*-
+
 Conclusion
-----------
+~~~~~~~~~~
 
 As you can see, adding a software package to Buildroot is simply a
 matter of writing a Makefile using an  existing example and modifying it
diff --git a/docs/manual/adding-packages-directory.txt b/docs/manual/adding-packages-directory.txt
index 4a96415..6030e08 100644
--- a/docs/manual/adding-packages-directory.txt
+++ b/docs/manual/adding-packages-directory.txt
@@ -1,5 +1,7 @@
+// -*- mode:doc; -*-
+
 Package directory
------------------
+~~~~~~~~~~~~~~~~~
 
 First of all, create a directory under the +package+ directory for
 your software, for example +libfoo+.
@@ -10,7 +12,7 @@ one of these categories, then create your package directory in these.
 
 
 +Config.in+ file
-~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^
 
 Then, create a file named +Config.in+. This file will contain the
 option descriptions related to our +libfoo+ software that will be used
@@ -146,7 +148,7 @@ so, the dependency also needs to be expressed in the +.mk+ file of the
 package.
 
 The +.mk+ file
-~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^
 
 Finally, here's the hardest part. Create a file named +libfoo.mk+. It
 describes how the package should be downloaded, configured, built,
diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt
index 7ecdb91..e3f16c2 100644
--- a/docs/manual/adding-packages-generic.txt
+++ b/docs/manual/adding-packages-generic.txt
@@ -1,5 +1,7 @@
+// -*- mode:doc; -*-
+
 Infrastructure for packages with specific build systems
--------------------------------------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 By 'packages with specific build systems' we mean all the packages
 whose build system is not one of the standard ones, such as
@@ -9,7 +11,7 @@ system is based on hand-written Makefiles or shell scripts.
 [[generic-package-tutorial]]
 
 +generic-package+ Tutorial
-~~~~~~~~~~~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 ------------------------------
 01: #############################################################
@@ -90,7 +92,7 @@ Makefile code necessary to make your package working.
 [[generic-package-reference]]
 
 +generic-package+ Reference
-~~~~~~~~~~~~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 There are two variants of the generic target. The +generic-package+ macro is
 used for packages to be cross-compiled for the target.  The
diff --git a/docs/manual/adding-packages-gettext.txt b/docs/manual/adding-packages-gettext.txt
index e0df1a4..89461a7 100644
--- a/docs/manual/adding-packages-gettext.txt
+++ b/docs/manual/adding-packages-gettext.txt
@@ -1,5 +1,7 @@
+// -*- mode:doc; -*-
+
 Gettext integration and interaction with packages
--------------------------------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Many packages that support internationalization use the gettext
 library. Dependencies for this library are fairly complicated and
diff --git a/docs/manual/adding-packages.txt b/docs/manual/adding-packages.txt
index f672ec6..8221c85 100644
--- a/docs/manual/adding-packages.txt
+++ b/docs/manual/adding-packages.txt
@@ -1,6 +1,8 @@
-Adding new packages to Buildroot
-================================
+// -*- mode:doc -*- ;
+
 [[adding-packages]]
+Adding new packages to Buildroot
+--------------------------------
 
 This section covers how new packages (userspace libraries or
 applications) can be integrated into Buildroot. It also shows how
diff --git a/docs/manual/advanced.txt b/docs/manual/advanced.txt
new file mode 100644
index 0000000..cd53182
--- /dev/null
+++ b/docs/manual/advanced.txt
@@ -0,0 +1,12 @@
+// -*- mode:doc; -*-
+
+Advanced usage
+--------------
+
+include::using-buildroot-toolchain.txt[]
+
+include::external-toolchain.txt[]
+
+include::ccache-support.txt[]
+
+include::download-location.txt[]
diff --git a/docs/manual/appendix.txt b/docs/manual/appendix.txt
index f41c82c..a6642b5 100644
--- a/docs/manual/appendix.txt
+++ b/docs/manual/appendix.txt
@@ -1,3 +1,5 @@
+// -*- mode:doc; -*-
+
 Appendix
 ========
 
diff --git a/docs/manual/board-support.txt b/docs/manual/board-support.txt
index d1d9d63..e20e721 100644
--- a/docs/manual/board-support.txt
+++ b/docs/manual/board-support.txt
@@ -1,5 +1,8 @@
+// -*- mode:doc -*- ;
+
+[[board-support]]
 Creating your own board support
-===============================
+-------------------------------
 
 Creating your own board support in Buildroot allows users of a
 particular hardware platform to easily build a system that is known to
diff --git a/docs/manual/ccache-support.txt b/docs/manual/ccache-support.txt
index ab8cbad..95cd662 100644
--- a/docs/manual/ccache-support.txt
+++ b/docs/manual/ccache-support.txt
@@ -1,5 +1,8 @@
+// -*- mode:doc -*- ;
+
+[[ccache]]
 Using +ccache+ in Buildroot
-===========================
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 http://ccache.samba.org[ccache] is a compiler cache. It stores the
 object files resulting from each compilation process, and is able to
diff --git a/docs/manual/common-usage.txt b/docs/manual/common-usage.txt
new file mode 100644
index 0000000..b343606
--- /dev/null
+++ b/docs/manual/common-usage.txt
@@ -0,0 +1,6 @@
+// -*- mode:doc; -*-
+
+Daily use
+---------
+
+include::rebuilding-packages.txt[]
diff --git a/docs/manual/customize-busybox-config.txt b/docs/manual/customize-busybox-config.txt
index 60e6a55..fe9cdda 100644
--- a/docs/manual/customize-busybox-config.txt
+++ b/docs/manual/customize-busybox-config.txt
@@ -1,6 +1,8 @@
-Customizing the Busybox configuration
--------------------------------------
+// -*- mode:doc -*- ;
+
 [[busybox-custom]]
+Customizing the Busybox configuration
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 http://www.busybox.net/[Busybox] is very configurable, and you may
 want to customize it. You can follow these simple steps to do so. This
@@ -20,5 +22,5 @@ Otherwise, you can simply change the
 options you want to change, without using the configuration tool.
 
 If you want to use an existing config file for busybox, then see
-section xref:env-vars[].
+xref:env-vars[].
 
diff --git a/docs/manual/customize-kernel-config.txt b/docs/manual/customize-kernel-config.txt
index 6bafe46..1072270 100644
--- a/docs/manual/customize-kernel-config.txt
+++ b/docs/manual/customize-kernel-config.txt
@@ -1,5 +1,8 @@
+// -*- mode:doc -*- ;
+
+[[kernel-custom]]
 Customizing the Linux kernel configuration
-------------------------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 The Linux kernel configuration can be customized just like
 xref:busybox-custom[BusyBox] and xref:uclibc-custom[uClibc] using
diff --git a/docs/manual/customize-rootfs.txt b/docs/manual/customize-rootfs.txt
index 44007c7..7ac5195 100644
--- a/docs/manual/customize-rootfs.txt
+++ b/docs/manual/customize-rootfs.txt
@@ -1,5 +1,8 @@
+// -*- mode:doc -*- ;
+
+[[rootfs-custom]]
 Customizing the generated target filesystem
--------------------------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 There are a few ways to customize the resulting target filesystem:
 
diff --git a/docs/manual/customize-toolchain.txt b/docs/manual/customize-toolchain.txt
index 08b60a2..91657cf 100644
--- a/docs/manual/customize-toolchain.txt
+++ b/docs/manual/customize-toolchain.txt
@@ -1,12 +1,14 @@
-Customizing the toolchain
--------------------------
+// -*- mode:doc -*- ;
+
 [[toolchain-custom]]
+Customizing the toolchain
+~~~~~~~~~~~~~~~~~~~~~~~~~
 
 There are three distinct types of toolchain backend supported in Buildroot,
 available under the menu +Toolchain+, invoking +make menuconfig+.
 
 Using the external toolchain backend
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 There is no way of tuning an external toolchain since Buildroot does not
 generate it.
@@ -15,7 +17,7 @@ It also requires to set the Buildroot settings according to the toolchain ones
 (see xref:external-toolchain[]).
 
 Using the internal Buildroot toolchain backend
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 The internal Buildroot toolchain backend *only* allows to generate
 *http://www.uclibc.org/[uClibc]-based toolchains*.
@@ -32,7 +34,7 @@ This is directly available after selecting the +Buildroot toolchain+ type in
 the menu +Toolchain+.
 
 Using the Crosstool-NG backend
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 The http://crosstool-ng.org[crosstool-NG] toolchain backend enables a rather
 limited set of settings under the Buildroot +Toolchain+ menu (ie. when invoking
diff --git a/docs/manual/customize-uclibc-config.txt b/docs/manual/customize-uclibc-config.txt
index e2e6799..88121ea 100644
--- a/docs/manual/customize-uclibc-config.txt
+++ b/docs/manual/customize-uclibc-config.txt
@@ -1,6 +1,8 @@
-Customizing the uClibc configuration
-------------------------------------
+// -*- mode:doc -*- ;
+
 [[uclibc-custom]]
+Customizing the uClibc configuration
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Just like xref:busybox-custom[BusyBox], http://www.uclibc.org/[uClibc]
 offers a lot of configuration options. They allow you to select
diff --git a/docs/manual/customize.txt b/docs/manual/customize.txt
index e8235de..1e6f4e8 100644
--- a/docs/manual/customize.txt
+++ b/docs/manual/customize.txt
@@ -1,5 +1,7 @@
+// -*- mode:doc; -*-
+
 Customization
-=============
+-------------
 
 include::customize-rootfs.txt[]
 
diff --git a/docs/manual/developer-guide.txt b/docs/manual/developer-guide.txt
new file mode 100644
index 0000000..37f703d
--- /dev/null
+++ b/docs/manual/developer-guide.txt
@@ -0,0 +1,8 @@
+// -*- mode:doc; -*-
+
+Developer Guidelines
+====================
+
+include::adding-packages.txt[]
+
+include::board-support.txt[]
diff --git a/docs/manual/download-location.txt b/docs/manual/download-location.txt
index cb6147f..8c66a76 100644
--- a/docs/manual/download-location.txt
+++ b/docs/manual/download-location.txt
@@ -1,5 +1,7 @@
+// -*- mode:doc; -*-
+
 Location of downloaded packages
-===============================
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 It might be useful to know that the various tarballs that are
 downloaded by the Makefiles are all stored in the +DL_DIR+ which by
diff --git a/docs/manual/external-toolchain.txt b/docs/manual/external-toolchain.txt
index 62eb0a3..b337376 100644
--- a/docs/manual/external-toolchain.txt
+++ b/docs/manual/external-toolchain.txt
@@ -1,6 +1,8 @@
-Using an external toolchain
-===========================
+// -*- mode:doc -*- ;
+
 [[external-toolchain]]
+Using an external toolchain
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Using an already existing toolchain is useful for different
 reasons:
diff --git a/docs/manual/getting.txt b/docs/manual/getting.txt
index 42ca009..a51caa0 100644
--- a/docs/manual/getting.txt
+++ b/docs/manual/getting.txt
@@ -1,5 +1,8 @@
+// -*- mode:doc -*- ;
+
+[[getting-buildroot]]
 Getting Buildroot
-=================
+-----------------
 
 Buildroot releases are made approximately every 3 months. Direct Git
 access and daily snapshots are also available, if you want more
diff --git a/docs/manual/going-further.txt b/docs/manual/going-further.txt
new file mode 100644
index 0000000..6f3cd6e
--- /dev/null
+++ b/docs/manual/going-further.txt
@@ -0,0 +1,6 @@
+Going further in Buildroot's innards
+====================================
+
+include::how-buildroot-works.txt[]
+
+include::advanced.txt[]
diff --git a/docs/manual/how-buildroot-works.txt b/docs/manual/how-buildroot-works.txt
index 481e5a4..879cff3 100644
--- a/docs/manual/how-buildroot-works.txt
+++ b/docs/manual/how-buildroot-works.txt
@@ -1,5 +1,7 @@
+// -*- mode:doc; -*-
+
 How Buildroot works
-===================
+-------------------
 
 As mentioned above, Buildroot is basically a set of Makefiles that
 download, configure, and compile software with the correct options. It
diff --git a/docs/manual/makedev-syntax.txt b/docs/manual/makedev-syntax.txt
index 4728c4b..4703b2f 100644
--- a/docs/manual/makedev-syntax.txt
+++ b/docs/manual/makedev-syntax.txt
@@ -1,3 +1,5 @@
+// -*- mode:doc -*- ;
+
 [[makedev-syntax]]
 Makedev syntax documentation
 ----------------------------
diff --git a/docs/manual/manual.txt b/docs/manual/manual.txt
index de4b594..00bd037 100644
--- a/docs/manual/manual.txt
+++ b/docs/manual/manual.txt
@@ -1,3 +1,5 @@
+// -*- mode:doc; -*-
+
 The Buildroot user manual
 =========================
 :toc:
@@ -11,25 +13,13 @@ image::logo.png[]
 
 include::introduction.txt[]
 
-include::getting.txt[]
-
-include::using.txt[]
-
-include::customize.txt[]
-
-include::rebuilding-packages.txt[]
-
-include::how-buildroot-works.txt[]
-
-include::using-buildroot-toolchain.txt[]
-
-include::external-toolchain.txt[]
+include::starting-up.txt[]
 
-include::ccache-support.txt[]
+include::working-with.txt[]
 
-include::download-location.txt[]
+include::going-further.txt[]
 
-include::adding-packages.txt[]
+include::developer-guide.txt[]
 
 include::faq.txt[]
 
diff --git a/docs/manual/rebuilding-packages.txt b/docs/manual/rebuilding-packages.txt
index fb6d696..824b35c 100644
--- a/docs/manual/rebuilding-packages.txt
+++ b/docs/manual/rebuilding-packages.txt
@@ -1,5 +1,7 @@
+// -*- mode:doc -*- ;
+
 Understanding how to rebuild packages
-=====================================
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 One of the most common questions asked by Buildroot users is how to
 rebuild a given package or how to remove a package without rebuilding
diff --git a/docs/manual/starting-up.txt b/docs/manual/starting-up.txt
new file mode 100644
index 0000000..8ba16c9
--- /dev/null
+++ b/docs/manual/starting-up.txt
@@ -0,0 +1,9 @@
+// -*- mode:doc; -*-
+
+Starting up
+===========
+
+include::getting.txt[]
+
+include::using.txt[]
+
diff --git a/docs/manual/using-buildroot-toolchain.txt b/docs/manual/using-buildroot-toolchain.txt
index 712e9a8..750fa99 100644
--- a/docs/manual/using-buildroot-toolchain.txt
+++ b/docs/manual/using-buildroot-toolchain.txt
@@ -1,5 +1,7 @@
+// -*- mode:doc; -*-
+
 Using the generated toolchain outside Buildroot
-===============================================
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 You may want to compile, for your target, your own programs or other
 software that are not packaged in Buildroot. In order to do this you
diff --git a/docs/manual/using.txt b/docs/manual/using.txt
index fcbd24b..5741473 100644
--- a/docs/manual/using.txt
+++ b/docs/manual/using.txt
@@ -1,8 +1,7 @@
-Using Buildroot
-===============
+// -*- mode:doc; -*-
 
-Configuration and general usage
--------------------------------
+Using Buildroot
+---------------
 
 Buildroot has a nice configuration tool similar to the one you can
 find in the http://www.kernel.org/[Linux kernel] or in
diff --git a/docs/manual/working-with.txt b/docs/manual/working-with.txt
new file mode 100644
index 0000000..3c57504
--- /dev/null
+++ b/docs/manual/working-with.txt
@@ -0,0 +1,21 @@
+// -*- mode:doc; -*-
+
+Working with Buildroot
+======================
+
+This section explains how you can customize Buildroot to fit your
+needs.
+
+include::customize.txt[]
+
+include::common-usage.txt[]
+
+Hacking Buildroot
+-----------------
+
+If Buildroot does not yet fit all your requirements, you may be
+interested in hacking it to add:
+
+* new packages: refer to the xref:adding-packages[Developer guide]
+
+* new board support: refer to the xref:board-support[Developer guide]
-- 
1.8.0

^ permalink raw reply related

* [Buildroot] [PATCH 05/23] manual: rework introduction.txt and add embedded-basics.txt
From: Samuel Martin @ 2012-11-11 13:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-1-git-send-email-s.martin49@gmail.com>

Split and rephrasing of introduction.txt.

Cross-toolchain explainations moved from introduction.txt into
embedded-basics.txt.

Signed-off-by: Samuel Martin <s.martin49@gmail.com>

 create mode 100644 docs/manual/embedded-basics.txt

diff --git a/docs/manual/embedded-basics.txt b/docs/manual/embedded-basics.txt
new file mode 100644
index 0000000..27dda37
--- /dev/null
+++ b/docs/manual/embedded-basics.txt
@@ -0,0 +1,110 @@
+// -*- mode:doc; -*-
+
+Embedded system basics
+----------------------
+
+When developing an embedded system, there are a number of choices to
+do:
+
+* the cross-toolchain: target architecture/C library/...
+* the bootloader
+* kernel options
+* the device management
+* the init system
+* the package selection (busybox vs. "real" programs, ...)
+* ...
+
+Some of them may be influenced by the target hardware.
+
+Some of them may also add some constraints when you will develop the
+final application for what your target is designed (e.g. some
+functions may be provided by soem C libraries and missing in some
+others, ...). So, these choices should be carefully done.
+
+Buildroot allows to set most of these options to fit your needs.
+
+Moreover, Buildroot provides an infrastructure for reproducing the
+build process of your kernel, cross-toolchain, and embedded root
+filesystem. Being able to reproduce the build process will be useful
+when a component needs to be patched or updated or when another person
+is supposed to take over the project.
+
+[[cross-compilation-and-cross-toolchain]]
+Cross-compilation & cross-toolchain
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+A compilation toolchain is the set of tools that allows you to compile
+code for your system. It consists of a compiler (in our case, +gcc+),
+binary utils like assembler and linker (in our case, +binutils+) and a
+C standard library (for example
+http://www.gnu.org/software/libc/libc.html[GNU Libc],
+http://www.uclibc.org/[uClibc] or
+http://www.fefe.de/dietlibc/[dietlibc]).
+
+The system installed on your development station certainly already has
+a compilation toolchain that you can use to compile an application
+that runs on your system. If you're using a PC, your compilation
+toolchain runs on an x86 processor and generates code for an x86
+processor. Under most Linux systems, the compilation toolchain uses
+the GNU libc (glibc) as the C standard library. This compilation
+toolchain is called the "host compilation toolchain". The machine on
+which it is running, and on which you're working, is called the "host
+system".
+
+The compilation toolchain is provided by your distribution, and
+Buildroot has nothing to do with it (other than using it to build a
+cross-compilation toolchain and other tools that are run on the
+development host).
+
+As said above, the compilation toolchain that comes with your system
+runs on and generates code for the processor in your host system. As
+your embedded system has a different processor, you need a
+cross-compilation toolchain - a compilation toolchain that runs on
+your _host system_ but generates code for your _target system_ (and
+target processor). For example, if your host system uses x86 and your
+target system uses ARM, the regular compilation toolchain on your host
+runs on x86 and generates code for x86, while the cross-compilation
+toolchain runs on x86 and generates code for ARM.
+
+Even if your embedded system uses an x86 processor, you might be
+interested in Buildroot for two reasons:
+
+* The compilation toolchain on your host certainly uses the GNU Libc
+  which is a complete but huge C standard library. Instead of using
+  GNU Libc on your target system, you can use uClibc which is a tiny C
+  standard library. If you want to use this C library, then you need a
+  compilation toolchain to generate binaries linked with it. Buildroot
+  can do that for you.
+
+* Buildroot automates the building of a root filesystem with all
+  needed tools like busybox. That makes it much easier than doing it
+  by hand.
+
+You might wonder why such a tool is needed when you can compile +gcc+,
++binutils+, +uClibc+ and all the other tools by hand. Of course doing
+so is possible but, dealing with all of the configure options and
+problems of every +gcc+ or +binutils+ version is very time-consuming
+and uninteresting.  Buildroot automates this process through the use
+of Makefiles and has a collection of patches for each +gcc+ and
++binutils+ version to make them work on most architectures.
+
+Buildroot offers a number of options and settings that can be tuned
+when defining the cross-toolchain (refer to xref:toolchain-custom[]).
+
+[[bootloader]]
+Bootloader
+~~~~~~~~~~
+
+TODO
+
+[[device-management]]
+Device management
+~~~~~~~~~~~~~~~~~
+
+TODO
+
+[[init-system]]
+Init system
+~~~~~~~~~~~
+
+TODO
diff --git a/docs/manual/going-further.txt b/docs/manual/going-further.txt
index 6f3cd6e..15324c4 100644
--- a/docs/manual/going-further.txt
+++ b/docs/manual/going-further.txt
@@ -1,6 +1,10 @@
+// -*- mode:doc; -*-
+
 Going further in Buildroot's innards
 ====================================
 
+include::embedded-basics.txt[]
+
 include::how-buildroot-works.txt[]
 
 include::advanced.txt[]
diff --git a/docs/manual/introduction.txt b/docs/manual/introduction.txt
index 476ce25..91ecb04 100644
--- a/docs/manual/introduction.txt
+++ b/docs/manual/introduction.txt
@@ -1,69 +1,21 @@
+// -*- mode:doc; -*-
+
 About Buildroot
 ===============
 
-Buildroot is a set of Makefiles and patches that allows you to easily
-generate a cross-compilation toolchain, a root filesystem and a Linux
-kernel image for your target. Buildroot can be used for one, two or
-all of these options, independently.
+Buildroot provides a full featured environment for cross-development.
+Buildroot is able to generate a cross-compilation toolchain, a root
+filesystem, a Linux kernel image and a bootloader for your target.
+Buildroot can be used for any combinaison of these options,
+independently.
 
 Buildroot is useful mainly for people working with embedded systems.
 Embedded systems often use processors that are not the regular x86
 processors everyone is used to having in his PC. They can be PowerPC
 processors, MIPS processors, ARM processors, etc.
 
-A compilation toolchain is the set of tools that allows you to compile
-code for your system. It consists of a compiler (in our case, +gcc+),
-binary utils like assembler and linker (in our case, +binutils+) and a
-C standard library (for example
-http://www.gnu.org/software/libc/libc.html[GNU Libc],
-http://www.uclibc.org/[uClibc] or
-http://www.fefe.de/dietlibc/[dietlibc]). The system installed on your
-development station certainly already has a compilation toolchain that
-you can use to compile an application that runs on your system. If
-you're using a PC, your compilation toolchain runs on an x86 processor
-and generates code for an x86 processor. Under most Linux systems, the
-compilation toolchain uses the GNU libc (glibc) as the C standard
-library.  This compilation toolchain is called the "host compilation
-toolchain". The machine on which it is running, and on which you're
-working, is called the "host system". The compilation toolchain is
-provided by your distribution, and Buildroot has nothing to do with it
-(other than using it to build a cross-compilation toolchain and other
-tools that are run on the development host).
-
-As said above, the compilation toolchain that comes with your system
-runs on and generates code for the processor in your host system. As
-your embedded system has a different processor, you need a
-cross-compilation toolchain - a compilation toolchain that runs on
-your host system but generates code for your target system (and target
-processor). For example, if your host system uses x86 and your target
-system uses ARM, the regular compilation toolchain on your host runs on
-x86 and generates code for x86, while the cross-compilation toolchain
-runs on x86 and generates code for ARM.
-
-Even if your embedded system uses an x86 processor, you might be
-interested in Buildroot for two reasons:
-
-* The compilation toolchain on your host certainly uses the GNU Libc
-  which is a complete but huge C standard library. Instead of using
-  GNU Libc on your target system, you can use uClibc which is a tiny C
-  standard library. If you want to use this C library, then you need a
-  compilation toolchain to generate binaries linked with it. Buildroot
-  can do that for you.
-
-* Buildroot automates the building of a root filesystem with all
-  needed tools like busybox. That makes it much easier than doing it
-  by hand.
-
-You might wonder why such a tool is needed when you can compile +gcc+,
-+binutils+, +uClibc+ and all the other tools by hand. Of course doing
-so is possible but, dealing with all of the configure options and
-problems of every +gcc+ or +binutils+ version is very time-consuming
-and uninteresting.  Buildroot automates this process through the use
-of Makefiles and has a collection of patches for each +gcc+ and
-+binutils+ version to make them work on most architectures.
-
-Moreover, Buildroot provides an infrastructure for reproducing the
-build process of your kernel, cross-toolchain, and embedded root
-filesystem. Being able to reproduce the build process will be useful
-when a component needs to be patched or updated or when another person
-is supposed to take over the project.
+Buildroot supports numerous processors and their variants; it also
+comes with default configuration for several boards available
+off-the-shelf. Besides, a number of third-party projects are based on
+or develop their BSP footnote:[BSP: Board Software Package] or
+SDK footnote:[SDK: Standard Development Kit] on top of Buildroot.
-- 
1.8.0

^ permalink raw reply related

* [Buildroot] [PATCH 06/23] manual: rework using.txt and update common-usage.txt
From: Samuel Martin @ 2012-11-11 13:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-1-git-send-email-s.martin49@gmail.com>

Consider the second chapter: "starting-up", as a tutorial.
Assuming that, using.txt only contains the very first commands used to get
configure and build its very first target system.

So, the following subsection from using.txt have been to common-usage.txt:
- Offline builds
- Building out-of-tree
- Environment variables

Signed-off-by: Samuel Martin <s.martin49@gmail.com>

diff --git a/docs/manual/common-usage.txt b/docs/manual/common-usage.txt
index b343606..c08c10e 100644
--- a/docs/manual/common-usage.txt
+++ b/docs/manual/common-usage.txt
@@ -4,3 +4,98 @@ Daily use
 ---------
 
 include::rebuilding-packages.txt[]
+
+Offline builds
+~~~~~~~~~~~~~~
+
+If you intend to do an offline build and just want to download
+all sources that you previously selected in the configurator
+('menuconfig', 'xconfig' or 'gconfig'), then issue:
+
+--------------------
+ $ make source
+--------------------
+
+You can now disconnect or copy the content of your +dl+
+directory to the build-host.
+
+Building out-of-tree
+~~~~~~~~~~~~~~~~~~~~
+
+As default, everything built by Buildroot is stored in the directory
++output+ in the buildroot tree.
+
+Buildroot also supports building out of tree with a syntax similar to
+the Linux kernel. To use it, add +O=<directory>+ to the make command
+line:
+
+--------------------
+ $ make O=/tmp/build
+--------------------
+
+Or:
+
+--------------------
+ $ cd /tmp/build; make O=$PWD -C path/to/buildroot
+--------------------
+
+All the output files will be located under +/tmp/build+.
+
+When using out-of-tree builds, the Buildroot +.config+ and temporary
+files are also stored in the output directory. This means that you can
+safely run multiple builds in parallel using the same source tree as
+long as they use unique output directories.
+
+For ease of use, Buildroot generates a Makefile wrapper in the output
+directory - So after the first run, you no longer need to pass +O=..+
+and +-C ..+, simply run (in the output directory):
+
+--------------------
+ $ make <target>
+--------------------
+
+[[env-vars]]
+
+Environment variables
+~~~~~~~~~~~~~~~~~~~~~
+
+Buildroot also honors some environment variables, when they are passed
+to +make+ or set in the environment:
+
+* +HOSTCXX+, the host C++ compiler to use
+* +HOSTCC+, the host C compiler to use
+* +UCLIBC_CONFIG_FILE=<path/to/.config>+, path to
+  the uClibc configuration file, used to compile uClibc, if an
+  internal toolchain is being built.
+  +
+  Note that the uClibc configuration file can also be set from the
+  configuration interface, so through the Buildroot .config file; this
+  the actual recommended way of setting it.
+  +
+* +BUSYBOX_CONFIG_FILE=<path/to/.config>+, path to
+  the Busybox configuration file.
+  +
+  Note that the Busybox configuration file can also be set from the
+  configuration interface, so through the Buildroot .config file; this
+  the actual recommended way of setting it.
+  +
+* +BUILDROOT_DL_DIR+ to override the directory in which
+  Buildroot stores/retrieves downloaded files
+  +
+  Note that the Buildroot download directory can also be set from the
+  configuration interface, so through the Buildroot .config file; this
+  the actual recommended way of setting it.
+
+An example that uses config files located in the toplevel directory and
+in your $HOME:
+
+--------------------
+ $ make UCLIBC_CONFIG_FILE=uClibc.config BUSYBOX_CONFIG_FILE=$HOME/bb.config
+--------------------
+
+If you want to use a compiler other than the default +gcc+
+or +g+++ for building helper-binaries on your host, then do
+
+--------------------
+ $ make HOSTCXX=g++-4.3-HEAD HOSTCC=gcc-4.3-HEAD
+--------------------
diff --git a/docs/manual/using.txt b/docs/manual/using.txt
index 5741473..56ed23b 100644
--- a/docs/manual/using.txt
+++ b/docs/manual/using.txt
@@ -5,8 +5,8 @@ Using Buildroot
 
 Buildroot has a nice configuration tool similar to the one you can
 find in the http://www.kernel.org/[Linux kernel] or in
-http://www.busybox.net/[Busybox]. Note that you can (and should) build
-everything as a normal user. There is no need to be root to configure
+http://www.busybox.net/[Busybox]. Note that you can *and should build
+everything as a normal user*. There is no need to be root to configure
 and use Buildroot. The first step is to run the configuration
 assistant:
 
@@ -29,12 +29,11 @@ or
 to run the Qt or GTK-based configurators.
 
 All of these "make" commands will need to build a configuration
-utility, so you may need to install "development" packages for
-relevant libraries used by the configuration utilities. On Debian-like
-systems, the +libncurses5-dev+ package is required to use the
-'menuconfig' interface, +libqt4-dev+ is required to use the 'xconfig'
-interface, and +libglib2.0-dev, libgtk2.0-dev and libglade2-dev+ are
-needed to use the 'gconfig' interface.
+utility (including the interface), so you may need to install
+"development" packages for relevant libraries used by the
+configuration utilities. Check the xref:requirement[] to know what
+Buildroot needs, and specifically the xref:requirement-optional[system requirements]
+to get the dependencies of favorite interface.
 
 For each menu entry in the configuration tool, you can find associated
 help that describes the purpose of the entry.
@@ -56,9 +55,9 @@ tell Buildroot to run each package compilation with +make -jN+.
 This command will generally perform the following steps:
 
 * Download source files (as required)
-* Configure, build and install the cross-compiling toolchain if an
-  internal toolchain is used, or import a toolchain if an external
-  toolchain is used
+* Configure, build and install the cross-compiling toolchain using the
+  appropriate toolchain backend is used, or simply import a toolchain
+  if an external toolchain
 * Build/install selected target packages
 * Build a kernel image, if selected
 * Build a bootloader image, if selected
@@ -105,81 +104,12 @@ This directory contains several subdirectories:
 * +toolchain/+ contains the build directories for the various
   components of the cross-compilation toolchain.
 
-Offline builds
---------------
+These commands, +make menuconfig|gconfig|xconfig+ and +make+, are the
+basic ones that allow to easily and quickly generate images fitting
+your needs, with all the supports and applications you enabled.
 
-If you intend to do an offline build and just want to download
-all sources that you previously selected in the configurator
-('menuconfig', 'xconfig' or 'gconfig'), then issue:
-
---------------------
- $ make source
---------------------
-
-You can now disconnect or copy the content of your +dl+
-directory to the build-host.
-
-Building out-of-tree
---------------------
-
-Buildroot supports building out of tree with a syntax similar to the
-Linux kernel. To use it, add +O=<directory>+ to the make command line:
-
---------------------
- $ make O=/tmp/build
---------------------
-
-Or:
-
---------------------
- $ cd /tmp/build; make O=$PWD -C path/to/buildroot
---------------------
-
-All the output files will be located under +/tmp/build+.
-
-When using out-of-tree builds, the Buildroot +.config+ and temporary
-files are also stored in the output directory. This means that you can
-safely run multiple builds in parallel using the same source tree as
-long as they use unique output directories.
-
-For ease of use, Buildroot generates a Makefile wrapper in the output
-directory - So after the first run, you no longer need to pass +O=..+
-and +-C ..+, simply run (in the output directory):
-
---------------------
- $ make <target>
---------------------
-
-Environment variables
----------------------
-[[env-vars]]
-
-Buildroot also honors some environment variables, when they are passed
-to +make+ or set in the environment:
-
-* +HOSTCXX+, the host C++ compiler to use
-* +HOSTCC+, the host C compiler to use
-* +UCLIBC_CONFIG_FILE=<path/to/.config>+, path to
-  the uClibc configuration file, used to compile uClibc, if an
-  internal toolchain is being built
-* +BUSYBOX_CONFIG_FILE=<path/to/.config>+, path to
-  the Busybox configuration file
-* +BUILDROOT_DL_DIR+ to override the directory in which
-  Buildroot stores/retrieves downloaded files
-
-An example that uses config files located in the toplevel directory and
-in your $HOME:
-
---------------------
- $ make UCLIBC_CONFIG_FILE=uClibc.config BUSYBOX_CONFIG_FILE=$HOME/bb.config
---------------------
-
-If you want to use a compiler other than the default +gcc+
-or +g+++ for building helper-binaries on your host, then do
-
---------------------
- $ make HOSTCXX=g++-4.3-HEAD HOSTCC=gcc-4.3-HEAD
---------------------
+More details about the "make" command usage are given in
+xref:make-tips[].
 
 Complying with opensource licenses
 ----------------------------------
-- 
1.8.0

^ permalink raw reply related

* [Buildroot] [PATCH 07/23] manual: customize-rootfs.txt: refactoring, misc. fixes and update
From: Samuel Martin @ 2012-11-11 13:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-1-git-send-email-s.martin49@gmail.com>


Signed-off-by: Samuel Martin <s.martin49@gmail.com>

diff --git a/docs/manual/customize-rootfs.txt b/docs/manual/customize-rootfs.txt
index 7ac5195..d6224ff 100644
--- a/docs/manual/customize-rootfs.txt
+++ b/docs/manual/customize-rootfs.txt
@@ -4,7 +4,8 @@
 Customizing the generated target filesystem
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-There are a few ways to customize the resulting target filesystem:
+Besides changing one or another configuration through +make *config+,
+there are a few ways to customize the resulting target filesystem:
 
 * Customize the target filesystem directly and rebuild the image.  The
   target filesystem is available under +output/target/+.  You can
@@ -12,28 +13,33 @@ There are a few ways to customize the resulting target filesystem:
   rebuild the target filesystem image. This method allows you to do
   anything to the target filesystem, but if you decide to completely
   rebuild your toolchain and tools, these changes will be lost.
+  _Changes are not resistent to the +make clean+ command_.
 
 * Create your own 'target skeleton'. You can start with the default
   skeleton available under +system/skeleton+ and then customize it to
   suit your needs. The +BR2_ROOTFS_SKELETON_CUSTOM+ and
   +BR2_ROOTFS_SKELETON_CUSTOM_PATH+ will allow you to specify the
-  location of your custom skeleton. At build time, the contents of the
+  location of your custom skeleton. These options can be found in the
+  +System configuration+ menu. At build time, the contents of the
   skeleton are copied to output/target before any package
   installation.
 
 * In the Buildroot configuration, you can specify the path to a
-  post-build script, that gets called 'after' Buildroot builds all the
+  *post-build script*, that gets called 'after' Buildroot builds all the
   selected software, but 'before' the rootfs packages are
-  assembled. The destination root filesystem folder is given as the
-  first argument to this script, and this script can then be used to
-  copy programs, static data or any other needed file to your target
-  filesystem. You should, however, use this feature with care.
-  Whenever you find that a certain package generates wrong or unneeded
-  files, you should fix that package rather than work around it with a
-  post-build cleanup script.
+  assembled. The +BR2_ROOTFS_POST_BUILD_SCRIPT+ will allow you to
+  specify the location of your post-build script. This option can be
+  found in the +System configuration+ menu. The destination root
+  filesystem folder *is given as the first argument to this script,
+  and this script can then be used to copy programs, static data or
+  any other needed file to your target filesystem. You should,
+  however, use this feature with care. Whenever you find that a
+  certain package generates wrong or unneeded files, you should fix
+  that package rather than work around it with a post-build cleanup
+  script. _Among these first 3 methods, this one should be prefere_d.
 
 * A special package, 'customize', stored in +package/customize+ can be
   used. You can put all the files that you want to see in the final
   target root filesystem in +package/customize/source+, and then
-  enable this special package in the configuration system.
-
+  enable this special package in the configuration system. _This
+  method is marked as deprecated_.
-- 
1.8.0

^ permalink raw reply related

* [Buildroot] [PATCH 08/23] manual: update rebuilding-packages.txt
From: Samuel Martin @ 2012-11-11 13:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-1-git-send-email-s.martin49@gmail.com>

- update "Understanding how to rebuild packages" section
- add "Understanding when a full rebuild is necessary" section

Signed-off-by: Samuel Martin <s.martin49@gmail.com>

diff --git a/docs/manual/rebuilding-packages.txt b/docs/manual/rebuilding-packages.txt
index 824b35c..2225200 100644
--- a/docs/manual/rebuilding-packages.txt
+++ b/docs/manual/rebuilding-packages.txt
@@ -1,5 +1,39 @@
 // -*- mode:doc -*- ;
 
+[[full-rebuild]]
+Understanding when a full rebuild is necessary
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+A full rebuild is achieved by running:
+
+---------------
+$ make clean all
+---------------
+
+In what cases, a full rebuild is mandatory:
+
+* each time the toolchain properties are changed, this includes:
+
+** after changing some toolchain option under the _Toolchain_ menu (if
+   the internal Buildroot backend is used);
+** after running +make ctng-menuconfig+ (if the crosstool-NG backend
+   is used);
+** after running +make uclibc-menuconfig+.
+
+* after removing some libraries from the package selection.
+
+In what cases, a full rebuild is recommended:
+
+* after adding some libraries to the package selection (otherwise,
+  some packages that can be optionally linked against those libraries
+  won't be rebuilt, so they won't support those new available
+  features).
+
+In other cases, it is up to you to decide if you should or not run a
+full rebuild, but you should know what is impacted and understand what
+you are doing anyway.
+
+[[rebuild-pkg]]
 Understanding how to rebuild packages
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
@@ -42,27 +76,10 @@ files are relevant:
   Buildroot will trigger the recompilation of the package from the
   compilation step (execution of +make+).
 
-For other packages, an analysis of the specific 'package.mk' file is
-needed. For example, the zlib Makefile used to look like this (before
-it was converted to the generic package infrastructure):
-
------------------
-$(ZLIB_DIR)/.configured: $(ZLIB_DIR)/.patched
-	(cd $(ZLIB_DIR); rm -rf config.cache; \
-		[...]
-	)
-	touch $@
-
-$(ZLIB_DIR)/libz.a: $(ZLIB_DIR)/.configured
-	$(MAKE) -C $(ZLIB_DIR) all libz.a
-	touch -c $@
------------------
-
-If you want to trigger the reconfiguration, you need to remove
-+output/build/zlib-version/.configured+. If you want to trigger only
-the recompilation, you need to remove
-+output/build/zlib-version/libz.a+.
-
-Note that most packages, if not all, will progressively be ported over
-to the generic or autotools infrastructure, making it much easier to
-rebuild individual packages.
+.Notes
+- Since the _Buildroot-2012.11_ release, all packages rely on the
+Buildroot infrastructures.
+- Only toolchain packages remain using custom makefiles (i.e. do not
+use any Buildroot infrastructure).
+- Most packages and toolchain packages, if not all, will progressively
+be ported over to the generic, autotools or CMake infrastructure,
-- 
1.8.0

^ permalink raw reply related

* [Buildroot] [PATCH 09/23] manual: adding-package-directory.txt: update, cleanup and typo fixes
From: Samuel Martin @ 2012-11-11 13:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-1-git-send-email-s.martin49@gmail.com>


Signed-off-by: Samuel Martin <s.martin49@gmail.com>

diff --git a/docs/manual/adding-packages-directory.txt b/docs/manual/adding-packages-directory.txt
index 6030e08..35d28b6 100644
--- a/docs/manual/adding-packages-directory.txt
+++ b/docs/manual/adding-packages-directory.txt
@@ -49,6 +49,7 @@ supposed to contain anything but the 'bare' name of the package.
 source "package/libfoo/Config.in"
 --------------------------
 
+[[depends-on-vs-select]]
 The +Config.in+ file of your package must also ensure that
 dependencies are enabled. Typically, Buildroot uses the following
 rules:
@@ -59,15 +60,26 @@ rules:
   dependencies are selected. For example, the _libgtk2_ package uses
   +select BR2_PACKAGE_LIBGLIB2+ to make sure this library is also
   enabled.
+  The +select+ keyword express the dependency with a backward
+  semantic.
 
 * Use a +depends on+ type of dependency when the user really needs to
   be aware of the dependency. Typically, Buildroot uses this type of
-  dependency for dependencies on toolchain options (large file
-  support, RPC support, IPV6 support), or for dependencies on "big"
-  things, such as the X.org system. In some cases, especially
-  dependency on toolchain options, it is recommended to add a
-  +comment+ displayed when the option is not enabled, so that the user
-  knows why the package is not available.
+  dependency for dependencies on toolchain options (target
+  architecture, MMU support, C library, C++ support, large file
+  support, thread support, RPC support, IPV6 support, WCHAR support),
+  or for dependencies on "big" things, such as the X.org system. In
+  some cases, especially dependency on toolchain options, it is
+  recommended to add a +comment+ displayed when the option is not
+  enabled, so that the user knows why the package is not available.
+  The +depends on+ keyword express the dependency with a forward
+  semantic.
+
+.Note
+The current problem with the _kconfig_ language is that these two
+dependency semantics are not internally linked. Therefore, it may be
+possible to select a package, whom one of its dependencies/requirement
+is not met.
 
 An example illustrates both the usage of +select+ and +depends on+.
 
@@ -147,6 +159,9 @@ is also enabled, but not necessarily built before your package. To do
 so, the dependency also needs to be expressed in the +.mk+ file of the
 package.
 
+Further formating details: see xref:writing-rules-config-in[the
+writing rules].
+
 The +.mk+ file
 ^^^^^^^^^^^^^^
 
@@ -182,8 +197,5 @@ different way, using different infrastructures:
    CMake. We cover them through a xref:cmake-package-tutorial[tutorial]
    and xref:cmake-package-reference[reference].
 
-* *Hand-written Makefiles:* These are currently obsolete, and no new
-  manual Makefiles should be added. However, since there are still
-  many of them in the tree, we keep them documented in a
-  xref:handwritten-tutorial[tutorial].
-
+Further formating details: see xref:writing-rules-mk[the writing
+rules].
-- 
1.8.0

^ permalink raw reply related


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