* [Buildroot] [PATCH 1/2] Give the path to the realdelf binary the the packages
From: Peter Korsgaard @ 2012-11-07 23:01 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352300481-825-2-git-send-email-maxime.ripard@free-electrons.com>
>>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes:
Committed with the commit message reworded, thanks.
Maxime> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH 1/1] qextserialport : fix download and bump version
From: Thomas Petazzoni @ 2012-11-07 23:02 UTC (permalink / raw)
To: buildroot
In-Reply-To: <874nl1avsi.fsf@dell.be.48ers.dk>
On Wed, 07 Nov 2012 23:32:45 +0100, Peter Korsgaard wrote:
> >>>>> "Sagaert" == Sagaert Johan <sagaert.johan@skynet.be> writes:
>
> Sagaert> Signed-off-by: Sagaert Johan <sagaert.johan@skynet.be>
>
> Thanks, but it still doesn't build with a base Qt config here as it
> tries to link with QtGui / QtNetwork, which imho doesn't make much sense
> for a serial lib.
>
> Now, I know next to nothing about qmake, but it is probably related to
> the windows version using QtGui.
>
> Thomas, can you take a look at it?
I'll have a look, but I can't say when. I'll most likely be very busy
over the next 3 weeks or so.
Best regards,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH 2/2] Add python3 package
From: Peter Korsgaard @ 2012-11-07 23:09 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352300481-825-3-git-send-email-maxime.ripard@free-electrons.com>
>>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes:
Maxime> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Maxime> +comment "python requires a toolchain with WCHAR support"
s/python/python3/
Maxime> +#
Maxime> +# Development files removal
Maxime> +#
Maxime> +define PYTHON3_REMOVE_DEVFILES
Maxime> + rm -f $(TARGET_DIR)/usr/bin/python$(PYTHON3_VERSION_MAJOR)-config
Maxime> + rm -f $(TARGET_DIR)/usr/bin/python-config
As far as I can see it doesn't install python-config.
Committed with these minor fixes, thanks!
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] Add python3 package
From: Peter Korsgaard @ 2012-11-07 23:10 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=03c4d57f1d9e2b0f516afdd7e7b3f082694d3c0a
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
[Peter: s/python/python3/]
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/Config.in | 1 +
package/python3/Config.in | 81 ++++++++++
...n3-3.3-000-generate-sysconfigdata-buildir.patch | 158 ++++++++++++++++++++
.../python3-3.3-001-support-for-build.patch | 68 +++++++++
| 72 +++++++++
| 41 +++++
...n3-3.3-004-no-import-when-cross-compiling.patch | 27 ++++
...python3-3.3-005-do-not-generate-pyo-files.patch | 40 +++++
.../python3-3.3-006-reread-environment.patch | 63 ++++++++
...ython3-3.3-007-change-pyconfig-h-location.patch | 76 ++++++++++
package/python3/python3-3.3-008-no-rpath.patch | 51 +++++++
.../python3-3.3-009-verbose-module-build.patch | 26 ++++
...3-010-distutils-cross-compilation-support.patch | 71 +++++++++
...python3-3.3-011-cross-compile-getaddrinfo.patch | 21 +++
package/python3/python3.mk | 152 +++++++++++++++++++
15 files changed, 948 insertions(+), 0 deletions(-)
diff --git a/package/Config.in b/package/Config.in
index bcd1b47..2ab6b6e 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -290,6 +290,7 @@ endif
source "package/microperl/Config.in"
source "package/php/Config.in"
source "package/python/Config.in"
+source "package/python3/Config.in"
if BR2_PACKAGE_PYTHON
menu "external python modules"
source "package/python-dpkt/Config.in"
diff --git a/package/python3/Config.in b/package/python3/Config.in
new file mode 100644
index 0000000..2e1e98b
--- /dev/null
+++ b/package/python3/Config.in
@@ -0,0 +1,81 @@
+config BR2_PACKAGE_PYTHON3
+ bool "python3"
+ depends on BR2_USE_WCHAR
+ select BR2_PACKAGE_LIBFFI
+ help
+ The python language interpreter.
+
+ http://www.python.org/
+
+comment "python3 requires a toolchain with WCHAR support"
+ depends on !BR2_USE_WCHAR
+
+if BR2_PACKAGE_PYTHON3
+
+choice
+ prompt "python3 module format to install"
+ default BR2_PACKAGE_PYTHON3_PYC_ONLY
+ help
+ Select Python module format to install on target (py, pyc or both)
+
+config BR2_PACKAGE_PYTHON3_PY_ONLY
+ bool ".py sources only"
+
+config BR2_PACKAGE_PYTHON3_PYC_ONLY
+ bool ".pyc compiled sources only"
+
+config BR2_PACKAGE_PYTHON3_PY_PYC
+ bool ".py sources and .pyc compiled"
+
+endchoice
+
+menu "core python3 modules"
+
+comment "The following modules are unusual or require extra libraries"
+
+config BR2_PACKAGE_PYTHON3_BZIP2
+ select BR2_PACKAGE_BZIP2
+ bool "bz2 module"
+ help
+ bzip2 module for Python3
+
+config BR2_PACKAGE_PYTHON3_CURSES
+ select BR2_PACKAGE_NCURSES
+ bool "curses module"
+ help
+ curses module for Python3.
+
+config BR2_PACKAGE_PYTHON3_PYEXPAT
+ select BR2_PACKAGE_EXPAT
+ bool "pyexpat"
+ help
+ pyexpat module for Python3.
+
+config BR2_PACKAGE_PYTHON3_READLINE
+ select BR2_PACKAGE_READLINE
+ bool "readline"
+ help
+ readline module for Python3 (required for command-line
+ editing in the Python shell).
+
+config BR2_PACKAGE_PYTHON3_SSL
+ select BR2_PACKAGE_OPENSSL
+ bool "ssl"
+ help
+ _ssl module for Python3 (required for https in urllib etc).
+
+config BR2_PACKAGE_PYTHON3_SQLITE
+ bool "sqlite module"
+ select BR2_PACKAGE_SQLITE
+ help
+ SQLite database support
+
+config BR2_PACKAGE_PYTHON3_ZLIB
+ bool "zlib module"
+ select BR2_PACKAGE_ZLIB
+ help
+ zlib support in Python3
+
+endmenu
+
+endif
diff --git a/package/python3/python3-3.3-000-generate-sysconfigdata-buildir.patch b/package/python3/python3-3.3-000-generate-sysconfigdata-buildir.patch
new file mode 100644
index 0000000..a29aa0f
--- /dev/null
+++ b/package/python3/python3-3.3-000-generate-sysconfigdata-buildir.patch
@@ -0,0 +1,158 @@
+changeset: 79745:f85c3f4d9b98
+parent: 79743:36b2ca7dc893
+parent: 79744:24d52d3060e8
+user: Trent Nelson <trent@trent.me>
+date: Tue Oct 16 08:17:11 2012 -0400
+summary: Merge issue #15298: ensure _sysconfigdata is generated in build directory,
+
+Taken from upstream.
+
+---
+ Lib/sysconfig.py | 11 ++++++++++-
+ Makefile.pre.in | 24 +++++++++++++-----------
+ setup.py | 14 --------------
+ 3 files changed, 23 insertions(+), 26 deletions(-)
+
+Index: Python-3.3.0/Lib/sysconfig.py
+===================================================================
+--- Python-3.3.0.orig/Lib/sysconfig.py
++++ Python-3.3.0/Lib/sysconfig.py
+@@ -390,13 +390,22 @@
+ if _PYTHON_BUILD:
+ vars['LDSHARED'] = vars['BLDSHARED']
+
+- destfile = os.path.join(os.path.dirname(__file__), '_sysconfigdata.py')
++ pybuilddir = 'build/lib.%s-%s' % (get_platform(), sys.version[:3])
++ if hasattr(sys, "gettotalrefcount"):
++ pybuilddir += '-pydebug'
++ os.makedirs(pybuilddir, exist_ok=True)
++ destfile = os.path.join(pybuilddir, '_sysconfigdata.py')
++
+ with open(destfile, 'w', encoding='utf8') as f:
+ f.write('# system configuration generated and used by'
+ ' the sysconfig module\n')
+ f.write('build_time_vars = ')
+ pprint.pprint(vars, stream=f)
+
++ # Create file used for sys.path fixup -- see Modules/getpath.c
++ with open('pybuilddir.txt', 'w', encoding='ascii') as f:
++ f.write(pybuilddir)
++
+ def _init_posix(vars):
+ """Initialize the module as appropriate for POSIX systems."""
+ # _sysconfigdata is generated at build time, see _generate_posix_vars()
+Index: Python-3.3.0/Makefile.pre.in
+===================================================================
+--- Python-3.3.0.orig/Makefile.pre.in
++++ Python-3.3.0/Makefile.pre.in
+@@ -410,8 +410,6 @@
+ Objects/unicodectype.o \
+ Objects/weakrefobject.o
+
+-SYSCONFIGDATA=$(srcdir)/Lib/_sysconfigdata.py
+-
+ ##########################################################################
+ # objects that get linked into the Python library
+ LIBRARY_OBJS_OMIT_FROZEN= \
+@@ -432,7 +430,7 @@
+
+ # Default target
+ all: build_all
+-build_all: $(BUILDPYTHON) $(SYSCONFIGDATA) oldsharedmods sharedmods gdbhooks Modules/_testembed
++build_all: $(BUILDPYTHON) oldsharedmods sharedmods gdbhooks Modules/_testembed
+
+ # Compile a binary with gcc profile guided optimization.
+ profile-opt:
+@@ -466,15 +464,17 @@
+ $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
+ $(LINKCC) $(PY_LDFLAGS) $(LINKFORSHARED) -o $@ Modules/python.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
+
+-platform: $(BUILDPYTHON) $(SYSCONFIGDATA)
++platform: $(BUILDPYTHON)
+ $(RUNSHARED) $(PYTHON_FOR_BUILD) -c 'import sys ; from sysconfig import get_platform ; print(get_platform()+"-"+sys.version[0:3])' >platform
+
+-# Generate the sysconfig build-time data
+-$(SYSCONFIGDATA): $(BUILDPYTHON)
++# Create build directory and generate the sysconfig build-time data there.
++# pybuilddir.txt contains the name of the build dir and is used for
++# sys.path fixup -- see Modules/getpath.c.
++pybuilddir.txt: $(BUILDPYTHON)
+ $(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars
+
+ # Build the shared modules
+-sharedmods: $(BUILDPYTHON) $(SYSCONFIGDATA)
++sharedmods: $(BUILDPYTHON) pybuilddir.txt
+ case $$MAKEFLAGS in *s*) quiet=-q; esac; \
+ $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
+ $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
+@@ -1036,7 +1036,7 @@
+ else true; \
+ fi; \
+ done
+- @for i in $(srcdir)/Lib/*.py ; \
++ @for i in $(srcdir)/Lib/*.py `cat pybuilddir.txt`/_sysconfigdata.py; \
+ do \
+ if test -x $$i; then \
+ $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
+@@ -1196,6 +1196,8 @@
+ --install-scripts=$(BINDIR) \
+ --install-platlib=$(DESTSHARED) \
+ --root=$(DESTDIR)/
++ -rm $(DESTDIR)$(DESTSHARED)/_sysconfigdata.py
++ -rm -r $(DESTDIR)$(DESTSHARED)/__pycache__
+
+ # Here are a couple of targets for MacOSX again, to install a full
+ # framework-based Python. frameworkinstall installs everything, the
+@@ -1341,9 +1343,10 @@
+ find . -name '*.s[ol]' -exec rm -f {} ';'
+ find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
+ find build -name 'fficonfig.h' -exec rm -f {} ';' || true
+- find build -name 'fficonfig.py' -exec rm -f {} ';' || true
++ find build -name '*.py' -exec rm -f {} ';' || true
++ find build -name '*.py[co]' -exec rm -f {} ';' || true
++ -rm -f pybuilddir.txt
+ -rm -f Lib/lib2to3/*Grammar*.pickle
+- -rm -f $(SYSCONFIGDATA)
+ -rm -f Modules/_testembed Modules/_freeze_importlib
+
+ profile-removal:
+@@ -1367,7 +1370,6 @@
+ Modules/Setup Modules/Setup.local Modules/Setup.config \
+ Modules/ld_so_aix Modules/python.exp Misc/python.pc
+ -rm -f python*-gdb.py
+- -rm -f pybuilddir.txt
+ find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
+ -o -name '[@,#]*' -o -name '*.old' \
+ -o -name '*.orig' -o -name '*.rej' \
+Index: Python-3.3.0/setup.py
+===================================================================
+--- Python-3.3.0.orig/setup.py
++++ Python-3.3.0/setup.py
+@@ -33,10 +33,6 @@
+ # This global variable is used to hold the list of modules to be disabled.
+ disabled_module_list = []
+
+-# File which contains the directory for shared mods (for sys.path fixup
+-# when running from the build dir, see Modules/getpath.c)
+-_BUILDDIR_COOKIE = "pybuilddir.txt"
+-
+ def add_dir_to_list(dirlist, dir):
+ """Add the directory 'dir' to the list 'dirlist' (after any relative
+ directories) if:
+@@ -252,16 +248,6 @@
+ args['compiler_so'] = compiler + ' ' + ccshared + ' ' + cflags
+ self.compiler.set_executables(**args)
+
+- # Not only do we write the builddir cookie, but we manually install
+- # the shared modules directory if it isn't already in sys.path.
+- # Otherwise trying to import the extensions after building them
+- # will fail.
+- with open(_BUILDDIR_COOKIE, "wb") as f:
+- f.write(self.build_lib.encode('utf-8', 'surrogateescape'))
+- abs_build_lib = os.path.join(os.getcwd(), self.build_lib)
+- if abs_build_lib not in sys.path:
+- sys.path.append(abs_build_lib)
+-
+ build_ext.build_extensions(self)
+
+ longest = max([len(e.name) for e in self.extensions])
diff --git a/package/python3/python3-3.3-001-support-for-build.patch b/package/python3/python3-3.3-001-support-for-build.patch
new file mode 100644
index 0000000..8c57cfb
--- /dev/null
+++ b/package/python3/python3-3.3-001-support-for-build.patch
@@ -0,0 +1,68 @@
+Add support in Python build system to specify host pgen
+
+Python needs a "pgen" program to build itself. Unfortunately, the
+Python build system assumes that it can use the pgen program it has
+just built to build itself. Obviously, this cannot work in
+cross-compilation mode since the pgen program have been built for the
+target.
+
+Therefore, this patch adds support in the Python build system for the
+new PGEN_FOR_BUILD variable, so that we can point Python ./configure
+script to the pgen program that have been previously built for the
+host.
+
+Patch ported to python2.7 by Maxime Ripard <ripard@archos.com>, and
+later significantly reworked by Thomas Petazzoni
+<thomas.petazzoni@free-electrons.com>, with some inspiration taken
+from the Python patches of the PTXdist project, and then ported to
+python3.3 by Maxime Ripard <maxime.ripard@free-electrons.com>
+
+Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
+---
+ Makefile.pre.in | 5 +++--
+ configure.ac | 5 +++++
+ 2 files changed, 8 insertions(+), 2 deletions(-)
+
+Index: Python-3.3.0/Makefile.pre.in
+===================================================================
+--- Python-3.3.0.orig/Makefile.pre.in
++++ Python-3.3.0/Makefile.pre.in
+@@ -239,6 +239,7 @@
+ ##########################################################################
+ # Parser
+ PGEN= Parser/pgen$(EXE)
++PGEN_FOR_BUILD=@PGEN_FOR_BUILD@
+
+ PSRCS= \
+ Parser/acceler.c \
+@@ -639,8 +640,8 @@
+
+ $(GRAMMAR_H): $(GRAMMAR_INPUT) $(PGENSRCS)
+ @$(MKDIR_P) Include
+- $(MAKE) $(PGEN)
+- $(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
++ $(MAKE) $(PGEN_FOR_BUILD)
++ $(PGEN_FOR_BUILD) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
+ $(GRAMMAR_C): $(GRAMMAR_H) $(GRAMMAR_INPUT) $(PGENSRCS)
+ $(MAKE) $(GRAMMAR_H)
+ touch $(GRAMMAR_C)
+Index: Python-3.3.0/configure.ac
+===================================================================
+--- Python-3.3.0.orig/configure.ac
++++ Python-3.3.0/configure.ac
+@@ -51,10 +51,15 @@
+ AC_MSG_RESULT($interp)
+ PYTHON_FOR_BUILD="_PYTHON_PROJECT_BASE=$srcdir"' _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(srcdir)/Lib:$(srcdir)/Lib/plat-$(MACHDEP) '$interp
+ fi
++ AC_MSG_CHECKING(pgen for build)
++ PGEN_FOR_BUILD="${PGEN_FOR_BUILD}"
++ AC_MSG_RESULT($PGEN_FOR_BUILD)
+ else
+ PYTHON_FOR_BUILD='./$(BUILDPYTHON) -E'
++ PGEN_FOR_BUILD='./$(PGEN)'
+ fi
+ AC_SUBST(PYTHON_FOR_BUILD)
++AC_SUBST(PGEN_FOR_BUILD)
+
+ dnl Ensure that if prefix is specified, it does not end in a slash. If
+ dnl it does, we get path names containing '//' which is both ugly and
--git a/package/python3/python3-3.3-002-no-host-headers-libs.patch b/package/python3/python3-3.3-002-no-host-headers-libs.patch
new file mode 100644
index 0000000..9783f28
--- /dev/null
+++ b/package/python3/python3-3.3-002-no-host-headers-libs.patch
@@ -0,0 +1,72 @@
+Do not look at host headers/libraries in cross-compile mode
+
+When we are cross-compiling, setup.py should never look in /usr or
+/usr/local to find headers or libraries. A later patch adds a
+mechanism to tell setup.py to look in a specific directory for headers
+and libraries.
+
+Patch first written by Thomas Petazzoni
+<thomas.petazzoni@free-electrons.com> for python2.7, and then ported
+to python3.3 by Maxime Ripard <maxime.ripard@free-electrons.com>
+
+Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
+---
+ setup.py | 23 +++++------------------
+ 1 file changed, 5 insertions(+), 18 deletions(-)
+
+Index: Python-3.3.0/setup.py
+===================================================================
+--- Python-3.3.0.orig/setup.py
++++ Python-3.3.0/setup.py
+@@ -447,10 +447,8 @@
+ if not cross_compiling:
+ add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
+ add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
+- # only change this for cross builds for 3.3, issues on Mageia
+- if cross_compiling:
+ self.add_gcc_paths()
+- self.add_multiarch_paths()
++ self.add_multiarch_paths()
+
+ # Add paths specified in the environment variables LDFLAGS and
+ # CPPFLAGS for header and library files.
+@@ -458,10 +456,7 @@
+ # directly since an inconsistently reproducible issue comes up where
+ # the environment variable is not set even though the value were passed
+ # into configure and stored in the Makefile (issue found on OS X 10.3).
+- for env_var, arg_name, dir_list in (
+- ('LDFLAGS', '-R', self.compiler.runtime_library_dirs),
+- ('LDFLAGS', '-L', self.compiler.library_dirs),
+- ('CPPFLAGS', '-I', self.compiler.include_dirs)):
++ for env_var, arg_name, dir_list in ():
+ env_val = sysconfig.get_config_var(env_var)
+ if env_val:
+ # To prevent optparse from raising an exception about any
+@@ -486,17 +481,6 @@
+ for directory in reversed(options.dirs):
+ add_dir_to_list(dir_list, directory)
+
+- if os.path.normpath(sys.base_prefix) != '/usr' \
+- and not sysconfig.get_config_var('PYTHONFRAMEWORK'):
+- # OSX note: Don't add LIBDIR and INCLUDEDIR to building a framework
+- # (PYTHONFRAMEWORK is set) to avoid # linking problems when
+- # building a framework with different architectures than
+- # the one that is currently installed (issue #7473)
+- add_dir_to_list(self.compiler.library_dirs,
+- sysconfig.get_config_var("LIBDIR"))
+- add_dir_to_list(self.compiler.include_dirs,
+- sysconfig.get_config_var("INCLUDEDIR"))
+-
+ # lib_dirs and inc_dirs are used to search for files;
+ # if a file is found in one of those directories, it can
+ # be assumed that no additional -I,-L directives are needed.
+@@ -506,6 +490,9 @@
+ '/lib', '/usr/lib',
+ ]
+ inc_dirs = self.compiler.include_dirs + ['/usr/include']
++ else:
++ lib_dirs = self.compiler.library_dirs
++ inc_dirs = self.compiler.include_dirs
+ exts = []
+ missing = []
+
--git a/package/python3/python3-3.3-003-staging-header-libs.patch b/package/python3/python3-3.3-003-staging-header-libs.patch
new file mode 100644
index 0000000..b0efe29
--- /dev/null
+++ b/package/python3/python3-3.3-003-staging-header-libs.patch
@@ -0,0 +1,41 @@
+Tell setup.py the location of headers/libraries
+
+Allow the libraries detection routine to look for headers and libs in
+other directories than /usr/include or /usr/lib through the
+environment variables PYTHON_MODULES_INCLUDE and PYTHON_MODULES_LIB.
+
+We can then use it to look for libraries in the buildroot staging
+directory.
+
+Ported to python3.3 by Maxime Ripard <maxime.ripard@free-electrons.com> based
+on the work by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
+---
+ setup.py | 13 +++++++++++++
+ 1 file changed, 13 insertions(+)
+
+Index: Python-3.3.0/setup.py
+===================================================================
+--- Python-3.3.0.orig/setup.py
++++ Python-3.3.0/setup.py
+@@ -441,6 +441,19 @@
+ os.unlink(tmpfile)
+
+ def detect_modules(self):
++ try:
++ modules_include_dirs = os.environ["PYTHON_MODULES_INCLUDE"].split()
++ except KeyError:
++ modules_include_dirs = ['/usr/include']
++ try:
++ modules_lib_dirs = os.environ["PYTHON_MODULES_LIB"].split()
++ except KeyError:
++ modules_lib_dirs = ['/usr/lib']
++ for dir in modules_include_dirs:
++ add_dir_to_list(self.compiler.include_dirs, dir)
++ for dir in modules_lib_dirs:
++ add_dir_to_list(self.compiler.library_dirs, dir)
++
+ # Ensure that /usr/local is always used, but the local build
+ # directories (i.e. '.' and 'Include') must be first. See issue
+ # 10520.
diff --git a/package/python3/python3-3.3-004-no-import-when-cross-compiling.patch b/package/python3/python3-3.3-004-no-import-when-cross-compiling.patch
new file mode 100644
index 0000000..cd5a437
--- /dev/null
+++ b/package/python3/python3-3.3-004-no-import-when-cross-compiling.patch
@@ -0,0 +1,27 @@
+Disable import check when cross-compiling
+
+Once Python has compiled an extension (i.e some C code, potentially
+linked to a library), it tries to import it. This cannot work in
+cross-compilation mode, so we just disable this check.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
+---
+ setup.py | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+Index: Python-3.3.0/setup.py
+===================================================================
+--- Python-3.3.0.orig/setup.py
++++ Python-3.3.0/setup.py
+@@ -318,6 +318,10 @@
+ self.announce('WARNING: skipping import check for Cygwin-based "%s"'
+ % ext.name)
+ return
++ if os.environ.get('CROSS_COMPILING') == 'yes':
++ self.announce('WARNING: skipping import check for cross compiled "%s"'
++ % ext.name)
++ return
+ ext_filename = os.path.join(
+ self.build_lib,
+ self.get_ext_filename(self.get_ext_fullname(ext.name)))
diff --git a/package/python3/python3-3.3-005-do-not-generate-pyo-files.patch b/package/python3/python3-3.3-005-do-not-generate-pyo-files.patch
new file mode 100644
index 0000000..983d546
--- /dev/null
+++ b/package/python3/python3-3.3-005-do-not-generate-pyo-files.patch
@@ -0,0 +1,40 @@
+Do not generate .pyo files
+
+By default, the Python installation byte-compiles all modules in two
+forms: the normal bytecode (.pyc) and an optimized bytecode (.pyo).
+
+According to
+http://www.network-theory.co.uk/docs/pytut/CompiledPythonfiles.html,
+the optimization do not do anything useful, and generating both the
+"non-optimized" and "optimized" bytecode variants takes time.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+---
+ Makefile.pre.in | 9 ---------
+ 1 file changed, 9 deletions(-)
+
+Index: Python-3.3.0/Makefile.pre.in
+===================================================================
+--- Python-3.3.0.orig/Makefile.pre.in
++++ Python-3.3.0/Makefile.pre.in
+@@ -1082,20 +1082,11 @@
+ -d $(LIBDEST) -f \
+ -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
+ $(DESTDIR)$(LIBDEST)
+- -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
+- $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
+- -d $(LIBDEST) -f \
+- -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
+- $(DESTDIR)$(LIBDEST)
+ -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
+ $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
+ -d $(LIBDEST)/site-packages -f \
+ -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
+ -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
+- $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
+- -d $(LIBDEST)/site-packages -f \
+- -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
+- -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
+ $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/Grammar.txt
+ -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
+ $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/PatternGrammar.txt
diff --git a/package/python3/python3-3.3-006-reread-environment.patch b/package/python3/python3-3.3-006-reread-environment.patch
new file mode 100644
index 0000000..752b15a
--- /dev/null
+++ b/package/python3/python3-3.3-006-reread-environment.patch
@@ -0,0 +1,63 @@
+Make sure setup.py reads the correct CONFIG_ARGS
+
+The setup.py script that builds and installs all the Python modules
+shipped with the interpreter looks at the CONFIG_ARGS variable stored
+in the "sysconfig" module to look at the ./configure options and
+adjust its behaviour accordingly.
+
+Unfortunately, when cross-compiling, the value of CONFIG_ARGS returned
+by the sysconfig are the one passed to the ./configure script of the
+*host* Python and not the one we're currently building for the target.
+
+In order to avoid that, we re-initialize the values in the sysconfig
+module by re-reading the environment at the beginning of the setup.py
+script, and we make sure that the CONFIG_ARGS variable is actually
+part of the environment of setup.py.
+
+See the beginning of
+http://article.gmane.org/gmane.comp.python.devel/99772 for the
+inspiration.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+---
+ Makefile.pre.in | 4 +++-
+ setup.py | 3 +++
+ 2 files changed, 6 insertions(+), 1 deletion(-)
+
+Index: Python-3.3.0/setup.py
+===================================================================
+--- Python-3.3.0.orig/setup.py
++++ Python-3.3.0/setup.py
+@@ -30,6 +30,9 @@
+ # Were we compiled --with-pydebug or with #define Py_DEBUG?
+ COMPILED_WITH_PYDEBUG = ('--with-pydebug' in sysconfig.get_config_var("CONFIG_ARGS"))
+
++sysconfig.get_config_vars()
++sysconfig._CONFIG_VARS.update(os.environ)
++
+ # This global variable is used to hold the list of modules to be disabled.
+ disabled_module_list = []
+
+Index: Python-3.3.0/Makefile.pre.in
+===================================================================
+--- Python-3.3.0.orig/Makefile.pre.in
++++ Python-3.3.0/Makefile.pre.in
+@@ -478,6 +478,7 @@
+ sharedmods: $(BUILDPYTHON) pybuilddir.txt
+ case $$MAKEFLAGS in *s*) quiet=-q; esac; \
+ $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
++ CONFIG_ARGS="$(CONFIG_ARGS)" \
+ $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
+
+ # Build static library
+@@ -1183,7 +1184,8 @@
+ # Install the dynamically loadable modules
+ # This goes into $(exec_prefix)
+ sharedinstall: sharedmods
+- $(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/setup.py install \
++ $(RUNSHARED) CONFIG_ARGS="$(CONFIG_ARGS)" \
++ $(PYTHON_FOR_BUILD) $(srcdir)/setup.py install \
+ --prefix=$(prefix) \
+ --install-scripts=$(BINDIR) \
+ --install-platlib=$(DESTSHARED) \
diff --git a/package/python3/python3-3.3-007-change-pyconfig-h-location.patch b/package/python3/python3-3.3-007-change-pyconfig-h-location.patch
new file mode 100644
index 0000000..8d45dae
--- /dev/null
+++ b/package/python3/python3-3.3-007-change-pyconfig-h-location.patch
@@ -0,0 +1,76 @@
+Change the location of pyconfig.h
+
+The Python interpreter has a really strange behaviour: at *runtime*,
+it reads a Makefile and a header file named pyconfig.h to get some
+information about the configuration.
+
+The Makefile is located in usr/lib/python3.3/config-3.3m, which is fine
+since this location is kept on the target.
+
+However, by default, the pyconfig.h is installed in
+usr/include/python3.3m, but we completely remove the usr/include
+directory for the target. Since making an exception just for
+pyconfig.h is annoying, this patch also installs pyconfig.h to
+usr/lib/python3.3/config-3.3m, and modifies the sysconfig module so that it
+looks in this location instead of usr/include.
+
+The pyconfig.h is still kept in usr/include/python3.3m, because it is
+needed in the $(STAGING_DIR) when building third-party Python
+extensions that contain C code.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+---
+ Lib/distutils/sysconfig.py | 3 ++-
+ Lib/sysconfig.py | 2 +-
+ Makefile.pre.in | 3 ++-
+ 3 files changed, 5 insertions(+), 3 deletions(-)
+
+Index: Python-3.3.0/Lib/distutils/sysconfig.py
+===================================================================
+--- Python-3.3.0.orig/Lib/distutils/sysconfig.py
++++ Python-3.3.0/Lib/distutils/sysconfig.py
+@@ -239,7 +239,8 @@
+ else:
+ inc_dir = _sys_home or project_base
+ else:
+- inc_dir = get_python_inc(plat_specific=1)
++ lib_dir = get_python_lib(plat_specific=1, standard_lib=1)
++ inc_dir = os.path.join(lib_dir, "config")
+ if get_python_version() < '2.2':
+ config_h = 'config.h'
+ else:
+Index: Python-3.3.0/Lib/sysconfig.py
+===================================================================
+--- Python-3.3.0.orig/Lib/sysconfig.py
++++ Python-3.3.0/Lib/sysconfig.py
+@@ -467,7 +467,7 @@
+ else:
+ inc_dir = _sys_home or _PROJECT_BASE
+ else:
+- inc_dir = get_path('platinclude')
++ inc_dir = os.path.join(get_path('stdlib'), "config")
+ return os.path.join(inc_dir, 'pyconfig.h')
+
+
+Index: Python-3.3.0/Makefile.pre.in
+===================================================================
+--- Python-3.3.0.orig/Makefile.pre.in
++++ Python-3.3.0/Makefile.pre.in
+@@ -1123,7 +1123,6 @@
+ echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
+ $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
+ done
+- $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
+
+ # Install the library and miscellaneous stuff needed for extending/embedding
+ # This goes into $(exec_prefix)
+@@ -1157,6 +1156,8 @@
+ $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
+ $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
+ $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
++ $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(LIBPL)/pyconfig.h
++ $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
+ $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
+ $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
+ $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
diff --git a/package/python3/python3-3.3-008-no-rpath.patch b/package/python3/python3-3.3-008-no-rpath.patch
new file mode 100644
index 0000000..cdeec22
--- /dev/null
+++ b/package/python3/python3-3.3-008-no-rpath.patch
@@ -0,0 +1,51 @@
+Remove runtime library paths
+
+For some extensions (sqlite and dbm), Python setup.py script
+hardcode a runtime path (rpath) into the extension. However, this
+runtime path is incorrect (because it points to the location of the
+library directory on the development machine) and useless (because on
+the target, all useful libraries are in a standard directory searched
+by the dynamic loader). For those reasons, we just get rid of the
+runtime paths in cross-compilation mode.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+---
+ setup.py | 12 ++++++++++--
+ 1 file changed, 10 insertions(+), 2 deletions(-)
+
+Index: Python-3.3.0/setup.py
+===================================================================
+--- Python-3.3.0.orig/setup.py
++++ Python-3.3.0/setup.py
+@@ -1134,11 +1134,15 @@
+ # can end up with a bad search path order.
+ if sqlite_incdir not in self.compiler.include_dirs:
+ include_dirs.append(sqlite_incdir)
++ if cross_compiling:
++ sqlite_runtime_libdir = None
++ else:
++ sqlite_runtime_libdir = sqlite_libdir
+ exts.append(Extension('_sqlite3', sqlite_srcs,
+ define_macros=sqlite_defines,
+ include_dirs=include_dirs,
+ library_dirs=sqlite_libdir,
+- runtime_library_dirs=sqlite_libdir,
++ runtime_library_dirs=sqlite_runtime_libdir,
+ extra_link_args=sqlite_extra_link_args,
+ libraries=["sqlite3",]))
+ else:
+@@ -1205,9 +1209,13 @@
+ elif cand == "bdb":
+ if db_incs is not None:
+ if dbm_setup_debug: print("building dbm using bdb")
++ if cross_compiling:
++ dblib_runtime_libdir = None
++ else:
++ dblib_runtime_libdir = dblib_dir
+ dbmext = Extension('_dbm', ['_dbmmodule.c'],
+ library_dirs=dblib_dir,
+- runtime_library_dirs=dblib_dir,
++ runtime_library_dirs=dblib_runtime_libdir,
+ include_dirs=db_incs,
+ define_macros=[
+ ('HAVE_BERKDB_H', None),
diff --git a/package/python3/python3-3.3-009-verbose-module-build.patch b/package/python3/python3-3.3-009-verbose-module-build.patch
new file mode 100644
index 0000000..60b6d79
--- /dev/null
+++ b/package/python3/python3-3.3-009-verbose-module-build.patch
@@ -0,0 +1,26 @@
+Enables verbose output when building modules
+
+Patch borrowed from OpenBricks.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+---
+ Makefile.pre.in | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+Index: Python-3.3.0/Makefile.pre.in
+===================================================================
+--- Python-3.3.0.orig/Makefile.pre.in
++++ Python-3.3.0/Makefile.pre.in
+@@ -476,10 +476,9 @@
+
+ # Build the shared modules
+ sharedmods: $(BUILDPYTHON) pybuilddir.txt
+- case $$MAKEFLAGS in *s*) quiet=-q; esac; \
+ $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
+ CONFIG_ARGS="$(CONFIG_ARGS)" \
+- $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
++ $(PYTHON_FOR_BUILD) $(srcdir)/setup.py build
+
+ # Build static library
+ # avoid long command lines, same as LIBRARY_OBJS
diff --git a/package/python3/python3-3.3-010-distutils-cross-compilation-support.patch b/package/python3/python3-3.3-010-distutils-cross-compilation-support.patch
new file mode 100644
index 0000000..0a51400
--- /dev/null
+++ b/package/python3/python3-3.3-010-distutils-cross-compilation-support.patch
@@ -0,0 +1,71 @@
+Add some cross-compilation fixes to distutils
+
+Inspired by work done by Marc Kleine-Budde <mkl@pengutronix.de> in
+PTXdist.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+---
+ Lib/distutils/sysconfig.py | 17 +++++++++++++----
+ configure.ac | 8 +++++++-
+ 2 files changed, 20 insertions(+), 5 deletions(-)
+
+Index: Python-3.3.0/Lib/distutils/sysconfig.py
+===================================================================
+--- Python-3.3.0.orig/Lib/distutils/sysconfig.py
++++ Python-3.3.0/Lib/distutils/sysconfig.py
+@@ -16,15 +16,24 @@
+ from .errors import DistutilsPlatformError
+
+ # These are needed in a couple of spots, so just compute them once.
+-PREFIX = os.path.normpath(sys.prefix)
+-EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
++EXECUTABLE_DIRNAME = os.path.dirname(os.path.realpath(sys.executable))
++if os.environ.get('CROSS_COMPILING') == 'yes':
++ _sysroot=os.environ.get('_python_sysroot')
++ PREFIX = os.path.normpath(_sysroot + os.environ.get('_python_prefix'))
++ EXEC_PREFIX = os.path.normpath(_sysroot + os.environ.get('_python_exec_prefix'))
++ if '_python_srcdir' in os.environ:
++ EXECUTABLE_DIRNAME = os.path.normpath(os.environ['_python_srcdir'])
++else:
++ PREFIX = os.path.normpath(sys.prefix)
++ EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
++
+ BASE_PREFIX = os.path.normpath(sys.base_prefix)
+ BASE_EXEC_PREFIX = os.path.normpath(sys.base_exec_prefix)
+
+ # Path to the base directory of the project. On Windows the binary may
+ # live in project/PCBuild9. If we're dealing with an x64 Windows build,
+ # it'll live in project/PCbuild/amd64.
+-project_base = os.path.dirname(os.path.abspath(sys.executable))
++project_base = EXECUTABLE_DIRNAME
+ if os.name == "nt" and "pcbuild" in project_base[-8:].lower():
+ project_base = os.path.abspath(os.path.join(project_base, os.path.pardir))
+ # PC/VS7.1
+@@ -98,7 +107,7 @@
+ # the build directory may not be the source directory, we
+ # must use "srcdir" from the makefile to find the "Include"
+ # directory.
+- base = _sys_home or os.path.dirname(os.path.abspath(sys.executable))
++ base = _sys_home or EXECUTABLE_DIRNAME
+ if plat_specific:
+ return base
+ if _sys_home:
+Index: Python-3.3.0/configure.ac
+===================================================================
+--- Python-3.3.0.orig/configure.ac
++++ Python-3.3.0/configure.ac
+@@ -963,7 +963,13 @@
+ fi
+
+ if test "$cross_compiling" = yes; then
+- RUNSHARED=
++ RUNSHARED=" \
++ CROSS_COMPILING=yes \
++ _python_cross_host=${ac_cv_host} \
++ _python_sysroot=\"\$(sysroot)\" \
++ _python_srcdir=\"\$(srcdir)\" \
++ _python_prefix=\"\$(prefix)\" \
++ _python_exec_prefix=\"\$(exec_prefix)\""
+ fi
+
+ AC_MSG_RESULT($LDLIBRARY)
diff --git a/package/python3/python3-3.3-011-cross-compile-getaddrinfo.patch b/package/python3/python3-3.3-011-cross-compile-getaddrinfo.patch
new file mode 100644
index 0000000..33286ce
--- /dev/null
+++ b/package/python3/python3-3.3-011-cross-compile-getaddrinfo.patch
@@ -0,0 +1,21 @@
+Disable buggy_getaddrinfo configure test when cross-compiling with IPv6 support
+
+Signed-off-by: Vanya Sergeev <vsergeev@gmail.com>
+
+---
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: Python-3.3.0/configure.ac
+===================================================================
+--- Python-3.3.0.orig/configure.ac
++++ Python-3.3.0/configure.ac
+@@ -3204,7 +3204,7 @@
+
+ AC_MSG_RESULT($ac_cv_buggy_getaddrinfo)
+
+-if test $have_getaddrinfo = no || test "$ac_cv_buggy_getaddrinfo" = yes
++if test $have_getaddrinfo = no || test "$cross_compiling" != "yes" -a "$ac_cv_buggy_getaddrinfo" = yes
+ then
+ if test $ipv6 = yes
+ then
diff --git a/package/python3/python3.mk b/package/python3/python3.mk
new file mode 100644
index 0000000..bcd83ea
--- /dev/null
+++ b/package/python3/python3.mk
@@ -0,0 +1,152 @@
+#############################################################
+#
+# python3
+#
+#############################################################
+PYTHON3_VERSION_MAJOR = 3.3
+PYTHON3_VERSION = $(PYTHON3_VERSION_MAJOR).0
+PYTHON3_SOURCE = Python-$(PYTHON3_VERSION).tar.bz2
+PYTHON3_SITE = http://python.org/ftp/python/$(PYTHON3_VERSION)
+
+# Python needs itself and a "pgen" program to build itself, both being
+# provided in the Python sources. So in order to cross-compile Python,
+# we need to build a host Python first. This host Python is also
+# installed in $(HOST_DIR), as it is needed when cross-compiling
+# third-party Python modules.
+
+HOST_PYTHON3_CONF_OPT += \
+ --without-cxx-main \
+ --disable-sqlite3 \
+ --disable-tk \
+ --with-expat=system \
+ --disable-curses \
+ --disable-codecs-cjk \
+ --disable-nis \
+ --disable-unicodedata \
+ --disable-dbm \
+ --disable-gdbm \
+ --disable-bsddb \
+ --disable-test-modules \
+ --disable-bz2 \
+ --disable-ssl
+
+HOST_PYTHON3_MAKE_ENV = \
+ PYTHON_MODULES_INCLUDE=$(HOST_DIR)/usr/include \
+ PYTHON_MODULES_LIB="$(HOST_DIR)/lib $(HOST_DIR)/usr/lib"
+
+HOST_PYTHON3_AUTORECONF = YES
+
+define HOST_PYTHON3_CONFIGURE_CMDS
+ (cd $(@D) && rm -rf config.cache; \
+ $(HOST_CONFIGURE_OPTS) \
+ CFLAGS="$(HOST_CFLAGS)" \
+ LDFLAGS="$(HOST_LDFLAGS)" \
+ $(HOST_PYTHON3_CONF_ENV) \
+ ./configure \
+ --prefix="$(HOST_DIR)/usr" \
+ --sysconfdir="$(HOST_DIR)/etc" \
+ $(HOST_PYTHON3_CONF_OPT) \
+ )
+endef
+
+PYTHON3_DEPENDENCIES = host-python3 libffi
+
+HOST_PYTHON3_DEPENDENCIES = host-expat host-zlib
+
+PYTHON3_INSTALL_STAGING = YES
+
+ifeq ($(BR2_PACKAGE_PYTHON3_READLINE),y)
+PYTHON3_DEPENDENCIES += readline
+endif
+
+ifeq ($(BR2_PACKAGE_PYTHON3_CURSES),y)
+PYTHON3_DEPENDENCIES += ncurses
+endif
+
+ifeq ($(BR2_PACKAGE_PYTHON3_PYEXPAT),y)
+PYTHON3_DEPENDENCIES += expat
+PYTHON3_CONF_OPT += --with-expat=system
+else
+PYTHON3_CONF_OPT += --with-expat=none
+endif
+
+ifeq ($(BR2_PACKAGE_PYTHON3_SQLITE),y)
+PYTHON3_DEPENDENCIES += sqlite
+endif
+
+ifeq ($(BR2_PACKAGE_PYTHON3_SSL),y)
+PYTHON_DEPENDENCIES += openssl
+endif
+
+ifeq ($(BR2_PACKAGE_PYTHON3_BZIP2),y)
+PYTHON_DEPENDENCIES += bzip2
+endif
+
+ifeq ($(BR2_PACKAGE_PYTHON3_ZLIB),y)
+PYTHON3_DEPENDENCIES += zlib
+endif
+
+PYTHON3_CONF_ENV += \
+ _PROJECT_BASE=$(PYTHON3_DIR) \
+ _PYTHON_HOST_PLATFORM=$(BR2_HOSTARCH) \
+ PYTHON_FOR_BUILD=$(HOST_PYTHON3_DIR)/python \
+ PGEN_FOR_BUILD=$(HOST_PYTHON3_DIR)/Parser/pgen \
+ ac_cv_have_long_long_format=yes \
+ ac_cv_file__dev_ptmx=yes \
+ ac_cv_file__dev_ptc=yes \
+
+PYTHON3_CONF_OPT += \
+ --without-cxx-main \
+ --with-system-ffi \
+ --disable-pydoc \
+ --disable-test-modules \
+ --disable-lib2to3 \
+ --disable-gdbm \
+ --disable-tk \
+ --disable-nis \
+ --disable-dbm
+
+PYTHON3_MAKE_ENV = \
+ _PROJECT_BASE=$(PYTHON3_DIR) \
+ _PYTHON_HOST_PLATFORM=$(BR2_HOSTARCH) \
+ PYTHON_MODULES_INCLUDE=$(STAGING_DIR)/usr/include \
+ PYTHON_MODULES_LIB="$(STAGING_DIR)/lib $(STAGING_DIR)/usr/lib"
+
+# python distutils adds -L$LIBDIR when linking binary extensions, causing
+# trouble for cross compilation
+define PYTHON3_FIXUP_LIBDIR
+ $(SED) 's|^LIBDIR=.*|LIBDIR= $(STAGING_DIR)/usr/lib|' \
+ $(STAGING_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/config-3.3m/Makefile
+endef
+
+PYTHON3_POST_INSTALL_STAGING_HOOKS += PYTHON3_FIXUP_LIBDIR
+
+#
+# Development files removal
+#
+define PYTHON3_REMOVE_DEVFILES
+ rm -f $(TARGET_DIR)/usr/bin/python$(PYTHON3_VERSION_MAJOR)-config
+ rm -f $(TARGET_DIR)/usr/bin/python3-config
+endef
+
+ifneq ($(BR2_HAVE_DEVFILES),y)
+PYTHON3_POST_INSTALL_TARGET_HOOKS += PYTHON3_REMOVE_DEVFILES
+endif
+
+#
+# Remove useless files. In the config/ directory, only the Makefile
+# and the pyconfig.h files are needed at runtime.
+#
+define PYTHON3_REMOVE_USELESS_FILES
+ for i in `find $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/config-3.3m/ \
+ -type f -not -name pyconfig.h -a -not -name Makefile` ; do \
+ rm -f $$i ; \
+ done
+endef
+
+PYTHON3_POST_INSTALL_TARGET_HOOKS += PYTHON3_REMOVE_USELESS_FILES
+
+PYTHON3_AUTORECONF = YES
+
+$(eval $(autotools-package))
+$(eval $(host-autotools-package))
^ permalink raw reply related
* [Buildroot] [PATCH 1/1] qextserialport : fix download and bump version
From: Thiago A. Corrêa @ 2012-11-07 23:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <874nl1avsi.fsf@dell.be.48ers.dk>
On Wed, Nov 7, 2012 at 8:32 PM, Peter Korsgaard <jacmet@uclibc.org> wrote:
>
> >>>>> "Sagaert" == Sagaert Johan <sagaert.johan@skynet.be> writes:
>
> Sagaert> Signed-off-by: Sagaert Johan <sagaert.johan@skynet.be>
>
> Thanks, but it still doesn't build with a base Qt config here as it
> tries to link with QtGui / QtNetwork, which imho doesn't make much sense
> for a serial lib.
>
It's quite likely one of the examples being built.
The changeset removes a patch that removes the examples, but you don't
actually have to do that, you can build from within src and the .pro
in there will most likely have a line with QT -= gui, just like the
QtSerialPort package I sent a while back.
The toplevel .pro file tells qmake that those listed folders should be
built and each contain a .pro file inside that matches the folder
name. It will simply iterate thru them and call qmake over them.
Those "subprojects" contain the actual description of how to build the
project, which qmake reads.
^ permalink raw reply
* [Buildroot] [PATCH] sstrip preserve permissions
From: Danomi Manchego @ 2012-11-08 2:47 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87hap1cfw8.fsf@dell.be.48ers.dk>
Hi Peter,
> Danomi> Unlike "strip", the "sstrip" does not preserve the file permissions
> Danomi> of its target. So if you have a package that sets special permissions,
> Danomi> such as the setuid bit, sstrip will remove it. This patch adds some
> Danomi> minimal lines to preserve the permissions of stripped files.
>
> What is the use case for this? From a quick look it seems sstrip just
We have a proprietary CGI app that gets called by lighttpd, so the
caller isn't root. I don't quite remember the exact operation that
caused us to do a chmod +s. That's when we noticed that the +s perms
were disappearing when sstrip was used, but conserved when strip was
used.
> truncates the source file, so permissions shouldn't change.
Nope. Just try it on a file that gets cut down. For example:
$ ll output/target/usr/bin/i2cdetect
-rwxr-xr-x 1 dmocelo dmocelo 34726 Nov 7 21:34
output/target/usr/bin/i2cdetect*
$ chmod a+s output/target/usr/bin/i2cdetect
$ ll output/target/usr/bin/i2cdetect
-rwsr-sr-x 1 dmocelo dmocelo 34726 Nov 7 21:34
output/target/usr/bin/i2cdetect*
$ # now I'll run a make with sstrip enabled
$ make
...
$ ll output/target/usr/bin/i2cdetect
-rwxr-xr-x 1 dmocelo dmocelo 11630 Nov 7 21:36
output/target/usr/bin/i2cdetect*
> setuid (to root) doesn't make much sense as we're building as non-root
> and fixing up permissions at the end using fakeroot (E.G. see
> BUSYBOX_PERMISSIONS).
We make our packages to be friendly to multiple build systems, so the
package makefile's install operation is taking care of the special
permission, rather than using a buildroot-specific mechanism.
But regardless, I was thinking that the difference compared to normal
strip operation was reason enough to want to preserve permissions.
No?
Danomi -
^ permalink raw reply
* [Buildroot] proc mount needed in both inittab and fstab?
From: Danomi Manchego @ 2012-11-08 2:53 UTC (permalink / raw)
To: buildroot
Hi, quick question: I noticed that the skeleton/etc/inittab has:
# Startup the system
null::sysinit:/bin/mount -t proc proc /proc
null::sysinit:/bin/mount -o remount,rw / # REMOUNT_ROOTFS_RW
null::sysinit:/bin/mkdir -p /dev/pts
null::sysinit:/bin/mkdir -p /dev/shm
null::sysinit:/bin/mount -a
...
and that fstab has:
# <file system> <mount pt> <type> <options> <dump> <pass>
/dev/root / ext2 rw,noauto 0 1
proc /proc proc defaults 0 0
...
I was wondering - is the /proc mount in inittab needed, since there is a
corresponding line in fstab?
Thanks in advance,
Danomi -
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121107/ed5327d7/attachment.html>
^ permalink raw reply
* [Buildroot] [PATCH 0/2] add support for xtensa back to buildroot
From: Chris Zankel @ 2012-11-08 3:38 UTC (permalink / raw)
To: buildroot
Hi,
It would be great if you could add support for Xtensa back to buildroot.
I understand that it was removed because it required a lot of additional
files and special handling, which became obsolete and hard to maintain
over time.
These two patches are much more aligned with other architectures with only
very minimal overhead. I also just recently updated uClibc and can build
buildroot out of the box, so we can now better support and maintain it.
Thanks,
-Chris
----------------------------------------------------------------
Chris Zankel (2):
xtensa: add support for the Xtensa architecture
xtensa: support configurable processor configurations
arch/Config.in | 8 ++++++++
arch/Config.in.common | 1 +
arch/Config.in.xtensa | 30 ++++++++++++++++++++++++++++++
linux/Config.in | 3 ++-
package/autoconf/Config.in | 6 ++++--
package/automake/Config.in | 6 ++++--
package/binutils/binutils.mk | 9 +++++++++
package/ltrace/Config.in | 1 +
package/perl/Config.in | 4 +++-
toolchain/gcc/gcc-uclibc-4.x.mk | 4 ++++
toolchain/gdb/gdb.mk | 4 ++++
toolchain/toolchain-common.in | 2 +-
toolchain/uClibc/uclibc.mk | 1 +
13 files changed, 72 insertions(+), 7 deletions(-)
create mode 100644 arch/Config.in.xtensa
^ permalink raw reply
* [Buildroot] [PATCH 1/2] xtensa: add support for the Xtensa architecture
From: Chris Zankel @ 2012-11-08 3:38 UTC (permalink / raw)
To: buildroot
The original support for the Xtensa architecture in buildroot required a lot
of special handling and additional files, so it became hard to maintain.
This implementation is much more aligned to other architectures with only
minimal overhead.
Signed-off-by: Chris Zankel <chris@zankel.net>
diff --git a/arch/Config.in b/arch/Config.in
index 4d1f81f..ad4a9e0 100644
--- a/arch/Config.in
+++ b/arch/Config.in
@@ -145,6 +145,13 @@ config BR2_x86_64
architecture compatible microprocessor).
http://en.wikipedia.org/wiki/X86_64
+config BR2_xtensa
+ bool "Xtensa"
+ help
+ Xtensa is a Tensilica processor IP architecture.
+ http://en.wikipedia.org/wiki/Xtensa
+ http://www.tensilica.com/
+
endchoice
config BR2_microblaze
@@ -158,4 +165,5 @@ source "arch/Config.in.powerpc"
source "arch/Config.in.sh"
source "arch/Config.in.sparc"
source "arch/Config.in.x86"
+source "arch/Config.in.xtensa"
source "arch/Config.in.common"
diff --git a/arch/Config.in.common b/arch/Config.in.common
index 1ed9929..d2bfd59 100644
--- a/arch/Config.in.common
+++ b/arch/Config.in.common
@@ -49,6 +49,7 @@ config BR2_ARCH
default "sh4aeb" if BR2_sh4aeb
default "sh64" if BR2_sh64
default "sparc" if BR2_sparc
+ default "xtensa" if BR2_xtensa
config BR2_ENDIAN
diff --git a/linux/Config.in b/linux/Config.in
index 277ef0e..29a2110 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -152,7 +152,8 @@ config BR2_LINUX_KERNEL_BZIMAGE
config BR2_LINUX_KERNEL_ZIMAGE
bool "zImage"
- depends on BR2_arm || BR2_armeb || BR2_powerpc || BR2_sparc || BR2_sh || BR2_sh64
+ depends on BR2_arm || BR2_armeb || BR2_powerpc || BR2_sparc || \
+ BR2_sh || BR2_sh64 || BR2_xtensa
config BR2_LINUX_KERNEL_APPENDED_ZIMAGE
bool "zImage with appended DT"
diff --git a/package/autoconf/Config.in b/package/autoconf/Config.in
index c304572..3622f3d 100644
--- a/package/autoconf/Config.in
+++ b/package/autoconf/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_AUTOCONF
bool "autoconf"
- depends on !(BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64)
+ depends on !(BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3)
+ depends on !(BR2_sh3eb || BR2_sh64 || BR2_xtensa)
select BR2_PACKAGE_PERL
help
Extensible program for developing configure scripts. These
@@ -9,4 +10,5 @@ config BR2_PACKAGE_AUTOCONF
http://www.gnu.org/software/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_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || \
+ BR2_sh3eb || BR2_sh64 || BR2_xtensa
diff --git a/package/automake/Config.in b/package/automake/Config.in
index f8d74ef..6e48517 100644
--- a/package/automake/Config.in
+++ b/package/automake/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_AUTOMAKE
bool "automake"
- depends on !(BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || BR2_sh3eb || BR2_sh64)
+ depends on !(BR2_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3)
+ depends on !(BR2_sh3eb || BR2_sh64 || BR2_xtensa)
select BR2_PACKAGE_AUTOCONF
select BR2_PACKAGE_PERL
help
@@ -10,4 +11,5 @@ config BR2_PACKAGE_AUTOMAKE
http://www.gnu.org/software/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_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || \
+ BR2_sh3eb || BR2_sh64 || BR2_xtensa
diff --git a/package/ltrace/Config.in b/package/ltrace/Config.in
index a65ca48..4cce767 100644
--- a/package/ltrace/Config.in
+++ b/package/ltrace/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_LTRACE
bool "ltrace"
depends on !(BR2_avr32 || BR2_mips || BR2_mipsel || BR2_sh || BR2_sh64)
+ depends on !BR2_xtensa
select BR2_PACKAGE_LIBELF
help
Debugging program which runs a specified command until it exits.
diff --git a/package/perl/Config.in b/package/perl/Config.in
index 0642deb..2906714 100644
--- a/package/perl/Config.in
+++ b/package/perl/Config.in
@@ -7,6 +7,7 @@ config BR2_PACKAGE_PERL
depends on !BR2_sh3
depends on !BR2_sh3eb
depends on !BR2_sh64
+ depends on !BR2_xtensa
help
Larry Wall's Practical Extraction and Report Language
An interpreted scripting language, known among some as "Unix's Swiss
@@ -47,4 +48,5 @@ config BR2_PACKAGE_PERL_GDBM_FILE
endif
comment "perl 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_avr32 || BR2_bfin || BR2_sh2 || BR2_sh2a || BR2_sh3 || \
+ BR2_sh3eb || BR2_sh64 || BR2_xtensa
diff --git a/toolchain/toolchain-common.in b/toolchain/toolchain-common.in
index 4c2a28b..9f11a39 100644
--- a/toolchain/toolchain-common.in
+++ b/toolchain/toolchain-common.in
@@ -93,7 +93,7 @@ config BR2_NEEDS_GETTEXT_IF_LOCALE
default y if (BR2_NEEDS_GETTEXT && BR2_ENABLE_LOCALE)
config BR2_USE_MMU
- bool "Enable MMU support" if BR2_arm || BR2_armeb || BR2_mips || BR2_mipsel || BR2_sh
+ bool "Enable MMU support" if BR2_arm || BR2_armeb || BR2_mips || BR2_mipsel || BR2_sh || BR2_xtensa
default y if !BR2_bfin
help
If your target has a MMU, you should say Y here. If you
diff --git a/toolchain/uClibc/uclibc.mk b/toolchain/uClibc/uclibc.mk
index 8cf59bc..055267c 100644
--- a/toolchain/uClibc/uclibc.mk
+++ b/toolchain/uClibc/uclibc.mk
@@ -38,6 +38,7 @@ UCLIBC_TARGET_ARCH:=$(shell $(SHELL) -c "echo $(ARCH) | sed \
-e 's/sh[234].*/sh/' \
-e 's/mips.*/mips/' \
-e 's/cris.*/cris/' \
+ -e 's/xtensa.*/xtensa/' \
")
UCLIBC_TARGET_ENDIAN:=$(call qstrip,$(BR2_ENDIAN))
^ permalink raw reply related
* [Buildroot] [PATCH 2/2] xtensa: support configurable processor configurations
From: Chris Zankel @ 2012-11-08 3:38 UTC (permalink / raw)
To: buildroot
Xtensa is a configurable processor architecture, which allows to define
additional instructions and registers. The required variant specific
information for the toolchain is delivered in an 'overlay' file, which
needs to be 'untarred' to the corresponding directories after the
source is installed and patched.
This patch provides support for binutils, gcc, and gdb with a very
limited changes to the build scripts. These additions are only executed
for the Xtensa architecture and have no effect on other architectures.
Signed-off-by: Chris Zankel <chris@zankel.net>
diff --git a/arch/Config.in.xtensa b/arch/Config.in.xtensa
new file mode 100644
index 0000000..61c0235
--- /dev/null
+++ b/arch/Config.in.xtensa
@@ -0,0 +1,30 @@
+choice
+ prompt "Target ABI"
+ depends on BR2_xtensa
+ default BR2_xtensa_fsf
+config BR2_xtensa_custom
+ bool "Custom Xtensa processor configuration"
+config BR2_xtensa_fsf
+ bool "fsf - Default configuration"
+endchoice
+
+config BR2_xtensa_custom_name
+ string "Custom Xtensa processor configuration anme"
+ depends on BR2_xtensa_custom
+ default ""
+ help
+ Name given to a custom Xtensa processor configuration.
+
+config BR2_xtensa_core_name
+ string
+ default BR2_xtensa_custom_name if BR2_xtensa_custom
+ default "" if BR2_xtensa_fsf
+
+config BR2_xtensa_overlay_dir
+ string "Overlay directory for custom configuration"
+ depends on BR2_xtensa_custom
+ default ""
+ help
+ Provide a directory path that contains the overlay files
+ for the custom configuration. The path is based on the
+ buildroot top directory.
diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk
index e1aac9b..0c69cb5 100644
--- a/package/binutils/binutils.mk
+++ b/package/binutils/binutils.mk
@@ -66,5 +66,14 @@ define BINUTILS_INSTALL_TARGET_CMDS
endef
endif
+XTENSA_CORE_NAME = $(call qstrip, $(BR2_xtensa_core_name))
+ifneq ($(XTENSA_CORE_NAME),)
+define BINUTILS_XTENSA_PRE_PATCH
+ tar xf $(BR2_xtensa_overlay_dir)/xtensa_$(XTENSA_CORE_NAME).tar \
+ -C $(@D) bfd include ld
+endef
+HOST_BINUTILS_PRE_PATCH_HOOKS += BINUTILS_XTENSA_PRE_PATCH
+endif
+
$(eval $(autotools-package))
$(eval $(host-autotools-package))
diff --git a/toolchain/gcc/gcc-uclibc-4.x.mk b/toolchain/gcc/gcc-uclibc-4.x.mk
index 1a075cc..1710070 100644
--- a/toolchain/gcc/gcc-uclibc-4.x.mk
+++ b/toolchain/gcc/gcc-uclibc-4.x.mk
@@ -251,6 +251,10 @@ $(GCC_DIR)/.unpacked: $(DL_DIR)/$(GCC_SOURCE)
rm -rf $(GCC_DIR)
$(GCC_CAT) $(DL_DIR)/$(GCC_SOURCE) | tar -C $(TOOLCHAIN_DIR) $(TAR_OPTIONS) -
$(call CONFIG_UPDATE,$(@D))
+ifneq ($(call qstrip, $(BR2_xtensa_core_name)),)
+ tar xf $(BR2_xtensa_overlay_dir)/xtensa_$(call qstrip,\
+ $(BR2_xtensa_core_name)).tar -C $(@D) include
+endif
touch $@
gcc-patched: $(GCC_DIR)/.patched
diff --git a/toolchain/gdb/gdb.mk b/toolchain/gdb/gdb.mk
index 6b029a8..dc305a6 100644
--- a/toolchain/gdb/gdb.mk
+++ b/toolchain/gdb/gdb.mk
@@ -25,6 +25,10 @@ gdb-unpacked: $(GDB_DIR)/.unpacked
$(GDB_DIR)/.unpacked: $(DL_DIR)/$(GDB_SOURCE)
mkdir -p $(GDB_DIR)
$(GDB_CAT) $(DL_DIR)/$(GDB_SOURCE) | tar -C $(GDB_DIR) $(TAR_STRIP_COMPONENTS)=1 $(TAR_OPTIONS) -
+ifneq ($(call qstrip, $(BR2_xtensa_core_name)),)
+ tar xf $(BR2_xtensa_overlay_dir)/xtensa_$(call qstrip, \
+ $(BR2_xtensa_core_name)).tar -C $(@D) bfd include gdb
+endif
ifneq ($(wildcard $(GDB_PATCH_DIR)),)
support/scripts/apply-patches.sh $(GDB_DIR) $(GDB_PATCH_DIR) \*.patch
endif
^ permalink raw reply related
* [Buildroot] proc mount needed in both inittab and fstab?
From: Thomas Petazzoni @ 2012-11-08 7:19 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CANxTyt7FzVFqwS8Rx1-W=sgoatYE9NZkCeedUf6mWDkd4Q9zwA@mail.gmail.com>
Dear Danomi Manchego,
On Wed, 7 Nov 2012 21:53:15 -0500, Danomi Manchego wrote:
> I was wondering - is the /proc mount in inittab needed, since there is a
> corresponding line in fstab?
I /think/ yes, because I believe 'mount -a' needs /proc/mounts to be
available in order to work properly.
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH 0/2] add support for xtensa back to buildroot
From: Thomas Petazzoni @ 2012-11-08 7:22 UTC (permalink / raw)
To: buildroot
In-Reply-To: <509b2928.67dc440a.70c6.6325@mx.google.com>
Dear Chris Zankel,
On Wed, 07 Nov 2012 19:38:14 -0800, Chris Zankel wrote:
> It would be great if you could add support for Xtensa back to buildroot.
> I understand that it was removed because it required a lot of additional
> files and special handling, which became obsolete and hard to maintain
> over time.
> These two patches are much more aligned with other architectures with only
> very minimal overhead. I also just recently updated uClibc and can build
> buildroot out of the box, so we can now better support and maintain it.
I just skimmed through the patches, but it indeed looks a lot more
reasonable than the support we originally had for Xtensa, thanks for
this work!. One thing that should be added is to make sure that the
Crosstool-NG backend cannot be selected for Xtensa, as it doesn't
support this architecture.
Also, the issue we had with the original Xtensa implementation is that
the original submitters sent some patches that we merged, and
subsequently never maintained them. Do you have plans to use this
Xtensa architecture on a regular basis, and help us fixing build issues
related to this architecture? Of course, we don't require you any sort
of strict commitment or anything like that, I'd just like to know how
much you'll be using this architecture.
Thanks again for having worked on this,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH 1/1] qextserialport : fix download and bump version
From: Thomas Petazzoni @ 2012-11-08 7:24 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAExDhvZVYFjMHZvcoC4MAMjWS+cyaPt33tBNfFvtA9GavXc54A@mail.gmail.com>
Dear Thiago A. Corr?a,
On Wed, 7 Nov 2012 21:26:19 -0200, Thiago A. Corr?a wrote:
> It's quite likely one of the examples being built.
Indeed. The examples patch removal was here for a reason: it shouldn't
have been removed. Some of the examples requires the GUI, and I didn't
bother making the examples conditional on whether the GUI was available
or not. This example patch should be re-added in one form or another.
Best regards,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-11-07
From: Thomas Petazzoni @ 2012-11-08 7:33 UTC (permalink / raw)
To: buildroot
Hello,
On 2012-11-07, 252 random build tests have been done and
submitted on autobuild.buildroot.net.
35 builds have been successful
217 builds have failed
Below the results of the failed builds. Successful builds are omitted.
Build d4bdfdec981eb79cb7fe15ad6468ea7da6a52169
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 00:19:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5a6392228a4f9383c40005bbd0b41ebda977d3cd
End of log : http://autobuild.buildroot.net/results/d4bdfdec981eb79cb7fe15ad6468ea7da6a52169/build-end.log
Complete log : http://autobuild.buildroot.net/results/d4bdfdec981eb79cb7fe15ad6468ea7da6a52169/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d4bdfdec981eb79cb7fe15ad6468ea7da6a52169/config
Defconfig : http://autobuild.buildroot.net/results/d4bdfdec981eb79cb7fe15ad6468ea7da6a52169/defconfig
Build a5c5b763a67a11cf3f493dc5e33b8088a5b0a433
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 00:23:13
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5a6392228a4f9383c40005bbd0b41ebda977d3cd
End of log : http://autobuild.buildroot.net/results/a5c5b763a67a11cf3f493dc5e33b8088a5b0a433/build-end.log
Complete log : http://autobuild.buildroot.net/results/a5c5b763a67a11cf3f493dc5e33b8088a5b0a433/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a5c5b763a67a11cf3f493dc5e33b8088a5b0a433/config
Defconfig : http://autobuild.buildroot.net/results/a5c5b763a67a11cf3f493dc5e33b8088a5b0a433/defconfig
Build e68d7506356bb04e49c07493430669c11c2697d2
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 00:24:38
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5a6392228a4f9383c40005bbd0b41ebda977d3cd
End of log : http://autobuild.buildroot.net/results/e68d7506356bb04e49c07493430669c11c2697d2/build-end.log
Complete log : http://autobuild.buildroot.net/results/e68d7506356bb04e49c07493430669c11c2697d2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e68d7506356bb04e49c07493430669c11c2697d2/config
Defconfig : http://autobuild.buildroot.net/results/e68d7506356bb04e49c07493430669c11c2697d2/defconfig
Build 469a78ea1644a7a4682c99808400c7ac227de322
==============================================
Status : NOK
Failure reason : cairo-1.10.2
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 00:34:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/469a78ea1644a7a4682c99808400c7ac227de322/build-end.log
Complete log : http://autobuild.buildroot.net/results/469a78ea1644a7a4682c99808400c7ac227de322/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/469a78ea1644a7a4682c99808400c7ac227de322/config
Defconfig : http://autobuild.buildroot.net/results/469a78ea1644a7a4682c99808400c7ac227de322/defconfig
Build c379bbcf959570b247158bcec5bb09f697f48daa
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 00:37:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/c379bbcf959570b247158bcec5bb09f697f48daa/build-end.log
Complete log : http://autobuild.buildroot.net/results/c379bbcf959570b247158bcec5bb09f697f48daa/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c379bbcf959570b247158bcec5bb09f697f48daa/config
Defconfig : http://autobuild.buildroot.net/results/c379bbcf959570b247158bcec5bb09f697f48daa/defconfig
Build e90d4f7a084a2f6d53822715aec3ed77a75c6954
==============================================
Status : NOK
Failure reason : xlib_libX11-1.4.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 00:43:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/e90d4f7a084a2f6d53822715aec3ed77a75c6954/build-end.log
Complete log : http://autobuild.buildroot.net/results/e90d4f7a084a2f6d53822715aec3ed77a75c6954/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e90d4f7a084a2f6d53822715aec3ed77a75c6954/config
Defconfig : http://autobuild.buildroot.net/results/e90d4f7a084a2f6d53822715aec3ed77a75c6954/defconfig
Build 50c378a7d2f81be11e8f2e514b82770206fe80ff
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 00:46:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/50c378a7d2f81be11e8f2e514b82770206fe80ff/build-end.log
Complete log : http://autobuild.buildroot.net/results/50c378a7d2f81be11e8f2e514b82770206fe80ff/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/50c378a7d2f81be11e8f2e514b82770206fe80ff/config
Defconfig : http://autobuild.buildroot.net/results/50c378a7d2f81be11e8f2e514b82770206fe80ff/defconfig
Build 17a1ce09e2c36eeb7cdfa791bf42755d7747fc51
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 00:49:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/17a1ce09e2c36eeb7cdfa791bf42755d7747fc51/build-end.log
Complete log : http://autobuild.buildroot.net/results/17a1ce09e2c36eeb7cdfa791bf42755d7747fc51/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/17a1ce09e2c36eeb7cdfa791bf42755d7747fc51/config
Defconfig : http://autobuild.buildroot.net/results/17a1ce09e2c36eeb7cdfa791bf42755d7747fc51/defconfig
Build 7f05b23c8041cc1b768d411b6150fc163f170ec5
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 00:50:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/7f05b23c8041cc1b768d411b6150fc163f170ec5/build-end.log
Complete log : http://autobuild.buildroot.net/results/7f05b23c8041cc1b768d411b6150fc163f170ec5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7f05b23c8041cc1b768d411b6150fc163f170ec5/config
Defconfig : http://autobuild.buildroot.net/results/7f05b23c8041cc1b768d411b6150fc163f170ec5/defconfig
Build bfd6fe1cdb9ab6804e6926ce51bebe1850b0584d
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 01:01:55
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/bfd6fe1cdb9ab6804e6926ce51bebe1850b0584d/build-end.log
Complete log : http://autobuild.buildroot.net/results/bfd6fe1cdb9ab6804e6926ce51bebe1850b0584d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bfd6fe1cdb9ab6804e6926ce51bebe1850b0584d/config
Defconfig : http://autobuild.buildroot.net/results/bfd6fe1cdb9ab6804e6926ce51bebe1850b0584d/defconfig
Build 7b15a950c2678949bc77b8efdb22c890769db652
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 01:02:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/7b15a950c2678949bc77b8efdb22c890769db652/build-end.log
Complete log : http://autobuild.buildroot.net/results/7b15a950c2678949bc77b8efdb22c890769db652/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7b15a950c2678949bc77b8efdb22c890769db652/config
Defconfig : http://autobuild.buildroot.net/results/7b15a950c2678949bc77b8efdb22c890769db652/defconfig
Build 6e2cbd3a95a110358cd4628630c3ddbd19f2fc36
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 01:02:37
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/6e2cbd3a95a110358cd4628630c3ddbd19f2fc36/build-end.log
Complete log : http://autobuild.buildroot.net/results/6e2cbd3a95a110358cd4628630c3ddbd19f2fc36/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6e2cbd3a95a110358cd4628630c3ddbd19f2fc36/config
Defconfig : http://autobuild.buildroot.net/results/6e2cbd3a95a110358cd4628630c3ddbd19f2fc36/defconfig
Build 9be09334566fef3594abe9ff716a642e75b7f172
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 01:20:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/9be09334566fef3594abe9ff716a642e75b7f172/build-end.log
Complete log : http://autobuild.buildroot.net/results/9be09334566fef3594abe9ff716a642e75b7f172/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9be09334566fef3594abe9ff716a642e75b7f172/config
Defconfig : http://autobuild.buildroot.net/results/9be09334566fef3594abe9ff716a642e75b7f172/defconfig
Build a3a39992e4a6183482c3a86cfea767d724e37714
==============================================
Status : NOK
Failure reason : dbus-1.4.24
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 01:22:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/a3a39992e4a6183482c3a86cfea767d724e37714/build-end.log
Complete log : http://autobuild.buildroot.net/results/a3a39992e4a6183482c3a86cfea767d724e37714/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a3a39992e4a6183482c3a86cfea767d724e37714/config
Defconfig : http://autobuild.buildroot.net/results/a3a39992e4a6183482c3a86cfea767d724e37714/defconfig
Build 992c00aec381eaf6ce9c452880b36a21974bbf14
==============================================
Status : NOK
Failure reason : libnspr-4.8.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 01:30:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/992c00aec381eaf6ce9c452880b36a21974bbf14/build-end.log
Complete log : http://autobuild.buildroot.net/results/992c00aec381eaf6ce9c452880b36a21974bbf14/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/992c00aec381eaf6ce9c452880b36a21974bbf14/config
Defconfig : http://autobuild.buildroot.net/results/992c00aec381eaf6ce9c452880b36a21974bbf14/defconfig
Build d7d2d977b3fb995639924f2dc102ae3a4ef9096a
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 01:33:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/d7d2d977b3fb995639924f2dc102ae3a4ef9096a/build-end.log
Complete log : http://autobuild.buildroot.net/results/d7d2d977b3fb995639924f2dc102ae3a4ef9096a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d7d2d977b3fb995639924f2dc102ae3a4ef9096a/config
Defconfig : http://autobuild.buildroot.net/results/d7d2d977b3fb995639924f2dc102ae3a4ef9096a/defconfig
Build 2dcbb209640f278c485613027b896007f2250698
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 01:37:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/2dcbb209640f278c485613027b896007f2250698/build-end.log
Complete log : http://autobuild.buildroot.net/results/2dcbb209640f278c485613027b896007f2250698/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2dcbb209640f278c485613027b896007f2250698/config
Defconfig : http://autobuild.buildroot.net/results/2dcbb209640f278c485613027b896007f2250698/defconfig
Build ae1bc5d9bc656360ef47de50774e1dd61c8ed657
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 01:43:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/ae1bc5d9bc656360ef47de50774e1dd61c8ed657/build-end.log
Complete log : http://autobuild.buildroot.net/results/ae1bc5d9bc656360ef47de50774e1dd61c8ed657/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ae1bc5d9bc656360ef47de50774e1dd61c8ed657/config
Defconfig : http://autobuild.buildroot.net/results/ae1bc5d9bc656360ef47de50774e1dd61c8ed657/defconfig
Build 6115c5fe1c6cbea4f9878fbe7d98a321ebfeed71
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 01:50:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/6115c5fe1c6cbea4f9878fbe7d98a321ebfeed71/build-end.log
Complete log : http://autobuild.buildroot.net/results/6115c5fe1c6cbea4f9878fbe7d98a321ebfeed71/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6115c5fe1c6cbea4f9878fbe7d98a321ebfeed71/config
Defconfig : http://autobuild.buildroot.net/results/6115c5fe1c6cbea4f9878fbe7d98a321ebfeed71/defconfig
Build ccacb1499a722d9afd86bba11a7157513830dae6
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 02:04:26
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/ccacb1499a722d9afd86bba11a7157513830dae6/build-end.log
Complete log : http://autobuild.buildroot.net/results/ccacb1499a722d9afd86bba11a7157513830dae6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ccacb1499a722d9afd86bba11a7157513830dae6/config
Defconfig : http://autobuild.buildroot.net/results/ccacb1499a722d9afd86bba11a7157513830dae6/defconfig
Build bb7f42327b420a598f442861f85e6b9ae4017a2f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 02:08:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/bb7f42327b420a598f442861f85e6b9ae4017a2f/build-end.log
Complete log : http://autobuild.buildroot.net/results/bb7f42327b420a598f442861f85e6b9ae4017a2f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bb7f42327b420a598f442861f85e6b9ae4017a2f/config
Defconfig : http://autobuild.buildroot.net/results/bb7f42327b420a598f442861f85e6b9ae4017a2f/defconfig
Build 48a14aeee49571ee0ab9658c97e16483137d25eb
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 02:10:26
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/48a14aeee49571ee0ab9658c97e16483137d25eb/build-end.log
Complete log : http://autobuild.buildroot.net/results/48a14aeee49571ee0ab9658c97e16483137d25eb/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/48a14aeee49571ee0ab9658c97e16483137d25eb/config
Defconfig : http://autobuild.buildroot.net/results/48a14aeee49571ee0ab9658c97e16483137d25eb/defconfig
Build 59a723e9ff8f4b1f4ddfeebb9069ca536234cc06
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 02:23:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/59a723e9ff8f4b1f4ddfeebb9069ca536234cc06/build-end.log
Complete log : http://autobuild.buildroot.net/results/59a723e9ff8f4b1f4ddfeebb9069ca536234cc06/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/59a723e9ff8f4b1f4ddfeebb9069ca536234cc06/config
Defconfig : http://autobuild.buildroot.net/results/59a723e9ff8f4b1f4ddfeebb9069ca536234cc06/defconfig
Build 04e13acb24d4f8ed281b4c7291cfd83dc5ab349e
==============================================
Status : NOK
Failure reason : gdbhost-7.4.1
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 02:24:28
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/04e13acb24d4f8ed281b4c7291cfd83dc5ab349e/build-end.log
Complete log : http://autobuild.buildroot.net/results/04e13acb24d4f8ed281b4c7291cfd83dc5ab349e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/04e13acb24d4f8ed281b4c7291cfd83dc5ab349e/config
Defconfig : http://autobuild.buildroot.net/results/04e13acb24d4f8ed281b4c7291cfd83dc5ab349e/defconfig
Build 007736c05904f04764e813533ade16504a3cc93c
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 02:26:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/007736c05904f04764e813533ade16504a3cc93c/build-end.log
Complete log : http://autobuild.buildroot.net/results/007736c05904f04764e813533ade16504a3cc93c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/007736c05904f04764e813533ade16504a3cc93c/config
Defconfig : http://autobuild.buildroot.net/results/007736c05904f04764e813533ade16504a3cc93c/defconfig
Build e6235176f455ca60c0f0559afe7dff7d02fd3aca
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 02:29:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/e6235176f455ca60c0f0559afe7dff7d02fd3aca/build-end.log
Complete log : http://autobuild.buildroot.net/results/e6235176f455ca60c0f0559afe7dff7d02fd3aca/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e6235176f455ca60c0f0559afe7dff7d02fd3aca/config
Defconfig : http://autobuild.buildroot.net/results/e6235176f455ca60c0f0559afe7dff7d02fd3aca/defconfig
Build dcf5713c90907373e6fb7f0513a1c0ac35e3792f
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 02:33:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/dcf5713c90907373e6fb7f0513a1c0ac35e3792f/build-end.log
Complete log : http://autobuild.buildroot.net/results/dcf5713c90907373e6fb7f0513a1c0ac35e3792f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/dcf5713c90907373e6fb7f0513a1c0ac35e3792f/config
Defconfig : http://autobuild.buildroot.net/results/dcf5713c90907373e6fb7f0513a1c0ac35e3792f/defconfig
Build 33006abb3bcb6b7b112768acb4434c5a2a603b68
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 02:43:00
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/33006abb3bcb6b7b112768acb4434c5a2a603b68/build-end.log
Complete log : http://autobuild.buildroot.net/results/33006abb3bcb6b7b112768acb4434c5a2a603b68/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/33006abb3bcb6b7b112768acb4434c5a2a603b68/config
Defconfig : http://autobuild.buildroot.net/results/33006abb3bcb6b7b112768acb4434c5a2a603b68/defconfig
Build 1320d221ebe09330684b9bd8ded6baabeb89fa5a
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 02:45:52
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/1320d221ebe09330684b9bd8ded6baabeb89fa5a/build-end.log
Complete log : http://autobuild.buildroot.net/results/1320d221ebe09330684b9bd8ded6baabeb89fa5a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1320d221ebe09330684b9bd8ded6baabeb89fa5a/config
Defconfig : http://autobuild.buildroot.net/results/1320d221ebe09330684b9bd8ded6baabeb89fa5a/defconfig
Build 3ee675a91609a29654cf1dac66fd55e7130c1877
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 02:50:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/3ee675a91609a29654cf1dac66fd55e7130c1877/build-end.log
Complete log : http://autobuild.buildroot.net/results/3ee675a91609a29654cf1dac66fd55e7130c1877/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3ee675a91609a29654cf1dac66fd55e7130c1877/config
Defconfig : http://autobuild.buildroot.net/results/3ee675a91609a29654cf1dac66fd55e7130c1877/defconfig
Build 14ecfe1a753db1e0d85fa386d3ced042b24fd3a0
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 03:00:00
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/14ecfe1a753db1e0d85fa386d3ced042b24fd3a0/build-end.log
Complete log : http://autobuild.buildroot.net/results/14ecfe1a753db1e0d85fa386d3ced042b24fd3a0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/14ecfe1a753db1e0d85fa386d3ced042b24fd3a0/config
Defconfig : http://autobuild.buildroot.net/results/14ecfe1a753db1e0d85fa386d3ced042b24fd3a0/defconfig
Build 8bbccd6d3f4b64f7d64e68c951c9ab02a589831b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 03:00:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/8bbccd6d3f4b64f7d64e68c951c9ab02a589831b/build-end.log
Complete log : http://autobuild.buildroot.net/results/8bbccd6d3f4b64f7d64e68c951c9ab02a589831b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8bbccd6d3f4b64f7d64e68c951c9ab02a589831b/config
Defconfig : http://autobuild.buildroot.net/results/8bbccd6d3f4b64f7d64e68c951c9ab02a589831b/defconfig
Build 1d320287f401f1829ecf811f320c9ba82d7ae56c
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 03:03:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/1d320287f401f1829ecf811f320c9ba82d7ae56c/build-end.log
Complete log : http://autobuild.buildroot.net/results/1d320287f401f1829ecf811f320c9ba82d7ae56c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1d320287f401f1829ecf811f320c9ba82d7ae56c/config
Defconfig : http://autobuild.buildroot.net/results/1d320287f401f1829ecf811f320c9ba82d7ae56c/defconfig
Build 28949e0f2449c94962da80af28c86086010d5f1c
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 03:04:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/28949e0f2449c94962da80af28c86086010d5f1c/build-end.log
Complete log : http://autobuild.buildroot.net/results/28949e0f2449c94962da80af28c86086010d5f1c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/28949e0f2449c94962da80af28c86086010d5f1c/config
Defconfig : http://autobuild.buildroot.net/results/28949e0f2449c94962da80af28c86086010d5f1c/defconfig
Build 193d8b1240886e29a6da6aa52f76b25bc7b49168
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 03:13:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/193d8b1240886e29a6da6aa52f76b25bc7b49168/build-end.log
Complete log : http://autobuild.buildroot.net/results/193d8b1240886e29a6da6aa52f76b25bc7b49168/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/193d8b1240886e29a6da6aa52f76b25bc7b49168/config
Defconfig : http://autobuild.buildroot.net/results/193d8b1240886e29a6da6aa52f76b25bc7b49168/defconfig
Build 8ff011a6f590c6af4a46324d805790fcb2fb6d50
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 03:15:25
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/8ff011a6f590c6af4a46324d805790fcb2fb6d50/build-end.log
Complete log : http://autobuild.buildroot.net/results/8ff011a6f590c6af4a46324d805790fcb2fb6d50/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8ff011a6f590c6af4a46324d805790fcb2fb6d50/config
Defconfig : http://autobuild.buildroot.net/results/8ff011a6f590c6af4a46324d805790fcb2fb6d50/defconfig
Build c827832cd0448d0689b760208edea8045e359d6a
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 03:16:56
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/c827832cd0448d0689b760208edea8045e359d6a/build-end.log
Complete log : http://autobuild.buildroot.net/results/c827832cd0448d0689b760208edea8045e359d6a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c827832cd0448d0689b760208edea8045e359d6a/config
Defconfig : http://autobuild.buildroot.net/results/c827832cd0448d0689b760208edea8045e359d6a/defconfig
Build b63ac99c473981a0e16f71e9d778551b8bbdc90d
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 03:22:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/b63ac99c473981a0e16f71e9d778551b8bbdc90d/build-end.log
Complete log : http://autobuild.buildroot.net/results/b63ac99c473981a0e16f71e9d778551b8bbdc90d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b63ac99c473981a0e16f71e9d778551b8bbdc90d/config
Defconfig : http://autobuild.buildroot.net/results/b63ac99c473981a0e16f71e9d778551b8bbdc90d/defconfig
Build 86b14913106525fc931fb165def5b66797cf4c6c
==============================================
Status : NOK
Failure reason : libnspr-4.8.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 03:26:44
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/86b14913106525fc931fb165def5b66797cf4c6c/build-end.log
Complete log : http://autobuild.buildroot.net/results/86b14913106525fc931fb165def5b66797cf4c6c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/86b14913106525fc931fb165def5b66797cf4c6c/config
Defconfig : http://autobuild.buildroot.net/results/86b14913106525fc931fb165def5b66797cf4c6c/defconfig
Build 2f13fea6a2c7e8be6896463ef8e6d38c8194028c
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 03:36:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/2f13fea6a2c7e8be6896463ef8e6d38c8194028c/build-end.log
Complete log : http://autobuild.buildroot.net/results/2f13fea6a2c7e8be6896463ef8e6d38c8194028c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2f13fea6a2c7e8be6896463ef8e6d38c8194028c/config
Defconfig : http://autobuild.buildroot.net/results/2f13fea6a2c7e8be6896463ef8e6d38c8194028c/defconfig
Build cb0955a64c9ba2e5bedadf4ded453d5bdf807341
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 03:38:52
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/cb0955a64c9ba2e5bedadf4ded453d5bdf807341/build-end.log
Complete log : http://autobuild.buildroot.net/results/cb0955a64c9ba2e5bedadf4ded453d5bdf807341/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cb0955a64c9ba2e5bedadf4ded453d5bdf807341/config
Defconfig : http://autobuild.buildroot.net/results/cb0955a64c9ba2e5bedadf4ded453d5bdf807341/defconfig
Build 3ca6603158458a7ddec65c6a8631f451ad039015
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 03:40:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/3ca6603158458a7ddec65c6a8631f451ad039015/build-end.log
Complete log : http://autobuild.buildroot.net/results/3ca6603158458a7ddec65c6a8631f451ad039015/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3ca6603158458a7ddec65c6a8631f451ad039015/config
Defconfig : http://autobuild.buildroot.net/results/3ca6603158458a7ddec65c6a8631f451ad039015/defconfig
Build 5649d7f27037b9f1ab6c6ec0bf8d834fb00c8fb3
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 03:42:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/5649d7f27037b9f1ab6c6ec0bf8d834fb00c8fb3/build-end.log
Complete log : http://autobuild.buildroot.net/results/5649d7f27037b9f1ab6c6ec0bf8d834fb00c8fb3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5649d7f27037b9f1ab6c6ec0bf8d834fb00c8fb3/config
Defconfig : http://autobuild.buildroot.net/results/5649d7f27037b9f1ab6c6ec0bf8d834fb00c8fb3/defconfig
Build babf8e70102528c20d4acb28e41fab67d4989b00
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 03:53:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/babf8e70102528c20d4acb28e41fab67d4989b00/build-end.log
Complete log : http://autobuild.buildroot.net/results/babf8e70102528c20d4acb28e41fab67d4989b00/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/babf8e70102528c20d4acb28e41fab67d4989b00/config
Defconfig : http://autobuild.buildroot.net/results/babf8e70102528c20d4acb28e41fab67d4989b00/defconfig
Build 586db868ff3c6fc2308ac5f117d9673a3c5d6d84
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 03:55:26
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/586db868ff3c6fc2308ac5f117d9673a3c5d6d84/build-end.log
Complete log : http://autobuild.buildroot.net/results/586db868ff3c6fc2308ac5f117d9673a3c5d6d84/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/586db868ff3c6fc2308ac5f117d9673a3c5d6d84/config
Defconfig : http://autobuild.buildroot.net/results/586db868ff3c6fc2308ac5f117d9673a3c5d6d84/defconfig
Build 7b2ad02defacedc36b845f68ff50382a2dba5e74
==============================================
Status : NOK
Failure reason : imagemagick-6.7.8-8
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 04:03:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/7b2ad02defacedc36b845f68ff50382a2dba5e74/build-end.log
Complete log : http://autobuild.buildroot.net/results/7b2ad02defacedc36b845f68ff50382a2dba5e74/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7b2ad02defacedc36b845f68ff50382a2dba5e74/config
Defconfig : http://autobuild.buildroot.net/results/7b2ad02defacedc36b845f68ff50382a2dba5e74/defconfig
Build 776b40f1d2138afb6267877d8177ac8c9a41f767
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 04:12:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/776b40f1d2138afb6267877d8177ac8c9a41f767/build-end.log
Complete log : http://autobuild.buildroot.net/results/776b40f1d2138afb6267877d8177ac8c9a41f767/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/776b40f1d2138afb6267877d8177ac8c9a41f767/config
Defconfig : http://autobuild.buildroot.net/results/776b40f1d2138afb6267877d8177ac8c9a41f767/defconfig
Build 68564e3d17717ca92087c922f4900b0d76d3b8b0
==============================================
Status : NOK
Failure reason : quota-4.00
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 04:17:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/68564e3d17717ca92087c922f4900b0d76d3b8b0/build-end.log
Complete log : http://autobuild.buildroot.net/results/68564e3d17717ca92087c922f4900b0d76d3b8b0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/68564e3d17717ca92087c922f4900b0d76d3b8b0/config
Defconfig : http://autobuild.buildroot.net/results/68564e3d17717ca92087c922f4900b0d76d3b8b0/defconfig
Build b835e964ec95b6868ef1141bdc3438cf6da30f15
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 04:21:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/b835e964ec95b6868ef1141bdc3438cf6da30f15/build-end.log
Complete log : http://autobuild.buildroot.net/results/b835e964ec95b6868ef1141bdc3438cf6da30f15/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b835e964ec95b6868ef1141bdc3438cf6da30f15/config
Defconfig : http://autobuild.buildroot.net/results/b835e964ec95b6868ef1141bdc3438cf6da30f15/defconfig
Build 25f57704fa2191e2916e092cf24ef4996ada094c
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 04:26:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/25f57704fa2191e2916e092cf24ef4996ada094c/build-end.log
Complete log : http://autobuild.buildroot.net/results/25f57704fa2191e2916e092cf24ef4996ada094c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/25f57704fa2191e2916e092cf24ef4996ada094c/config
Defconfig : http://autobuild.buildroot.net/results/25f57704fa2191e2916e092cf24ef4996ada094c/defconfig
Build 63a8139f231754bee02c07252750b4fb06bc1712
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 04:31:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/63a8139f231754bee02c07252750b4fb06bc1712/build-end.log
Complete log : http://autobuild.buildroot.net/results/63a8139f231754bee02c07252750b4fb06bc1712/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/63a8139f231754bee02c07252750b4fb06bc1712/config
Defconfig : http://autobuild.buildroot.net/results/63a8139f231754bee02c07252750b4fb06bc1712/defconfig
Build 89bd2421af4d6464a47282df8e61c69b2ed4634e
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 04:34:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/89bd2421af4d6464a47282df8e61c69b2ed4634e/build-end.log
Complete log : http://autobuild.buildroot.net/results/89bd2421af4d6464a47282df8e61c69b2ed4634e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/89bd2421af4d6464a47282df8e61c69b2ed4634e/config
Defconfig : http://autobuild.buildroot.net/results/89bd2421af4d6464a47282df8e61c69b2ed4634e/defconfig
Build 21e83aec849b90f68170342d0259778a25deda3c
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 04:38:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/21e83aec849b90f68170342d0259778a25deda3c/build-end.log
Complete log : http://autobuild.buildroot.net/results/21e83aec849b90f68170342d0259778a25deda3c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/21e83aec849b90f68170342d0259778a25deda3c/config
Defconfig : http://autobuild.buildroot.net/results/21e83aec849b90f68170342d0259778a25deda3c/defconfig
Build 38e1beb393a7be7ff24550bb983cee7874c4f738
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 04:41:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/38e1beb393a7be7ff24550bb983cee7874c4f738/build-end.log
Complete log : http://autobuild.buildroot.net/results/38e1beb393a7be7ff24550bb983cee7874c4f738/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/38e1beb393a7be7ff24550bb983cee7874c4f738/config
Defconfig : http://autobuild.buildroot.net/results/38e1beb393a7be7ff24550bb983cee7874c4f738/defconfig
Build 89ae032b3aa0658133acad6bb5a7e649f516bff8
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 04:45:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/89ae032b3aa0658133acad6bb5a7e649f516bff8/build-end.log
Complete log : http://autobuild.buildroot.net/results/89ae032b3aa0658133acad6bb5a7e649f516bff8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/89ae032b3aa0658133acad6bb5a7e649f516bff8/config
Defconfig : http://autobuild.buildroot.net/results/89ae032b3aa0658133acad6bb5a7e649f516bff8/defconfig
Build 144500df4a174a30fdb93f20bd8be1806d45f2c6
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 04:48:38
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/144500df4a174a30fdb93f20bd8be1806d45f2c6/build-end.log
Complete log : http://autobuild.buildroot.net/results/144500df4a174a30fdb93f20bd8be1806d45f2c6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/144500df4a174a30fdb93f20bd8be1806d45f2c6/config
Defconfig : http://autobuild.buildroot.net/results/144500df4a174a30fdb93f20bd8be1806d45f2c6/defconfig
Build 3ab166dbff2453c7481b352b9f1988c452b1446a
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 04:56:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/3ab166dbff2453c7481b352b9f1988c452b1446a/build-end.log
Complete log : http://autobuild.buildroot.net/results/3ab166dbff2453c7481b352b9f1988c452b1446a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3ab166dbff2453c7481b352b9f1988c452b1446a/config
Defconfig : http://autobuild.buildroot.net/results/3ab166dbff2453c7481b352b9f1988c452b1446a/defconfig
Build 07b3e085c5b2520fdb861b1485741c004a748cae
==============================================
Status : NOK
Failure reason : gdbhost-7.4.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 05:01:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/07b3e085c5b2520fdb861b1485741c004a748cae/build-end.log
Complete log : http://autobuild.buildroot.net/results/07b3e085c5b2520fdb861b1485741c004a748cae/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/07b3e085c5b2520fdb861b1485741c004a748cae/config
Defconfig : http://autobuild.buildroot.net/results/07b3e085c5b2520fdb861b1485741c004a748cae/defconfig
Build 9e0aa562609affea5f5440e34966d19e48088478
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 05:18:18
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/9e0aa562609affea5f5440e34966d19e48088478/build-end.log
Complete log : http://autobuild.buildroot.net/results/9e0aa562609affea5f5440e34966d19e48088478/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9e0aa562609affea5f5440e34966d19e48088478/config
Defconfig : http://autobuild.buildroot.net/results/9e0aa562609affea5f5440e34966d19e48088478/defconfig
Build 132e30ef420635be97561143d581c1d2f5df047e
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 05:23:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/132e30ef420635be97561143d581c1d2f5df047e/build-end.log
Complete log : http://autobuild.buildroot.net/results/132e30ef420635be97561143d581c1d2f5df047e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/132e30ef420635be97561143d581c1d2f5df047e/config
Defconfig : http://autobuild.buildroot.net/results/132e30ef420635be97561143d581c1d2f5df047e/defconfig
Build 7edbcd7b4adbac653e0665de5839d2f60e12391f
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 05:30:13
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/7edbcd7b4adbac653e0665de5839d2f60e12391f/build-end.log
Complete log : http://autobuild.buildroot.net/results/7edbcd7b4adbac653e0665de5839d2f60e12391f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7edbcd7b4adbac653e0665de5839d2f60e12391f/config
Defconfig : http://autobuild.buildroot.net/results/7edbcd7b4adbac653e0665de5839d2f60e12391f/defconfig
Build 5ea1f9d50533f58e62ac1d164d1587b8764c0ace
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 05:44:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/5ea1f9d50533f58e62ac1d164d1587b8764c0ace/build-end.log
Complete log : http://autobuild.buildroot.net/results/5ea1f9d50533f58e62ac1d164d1587b8764c0ace/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5ea1f9d50533f58e62ac1d164d1587b8764c0ace/config
Defconfig : http://autobuild.buildroot.net/results/5ea1f9d50533f58e62ac1d164d1587b8764c0ace/defconfig
Build f5ed68efc0d0cf66f3c592e1f611726c77dbc764
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 06:04:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/f5ed68efc0d0cf66f3c592e1f611726c77dbc764/build-end.log
Complete log : http://autobuild.buildroot.net/results/f5ed68efc0d0cf66f3c592e1f611726c77dbc764/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f5ed68efc0d0cf66f3c592e1f611726c77dbc764/config
Defconfig : http://autobuild.buildroot.net/results/f5ed68efc0d0cf66f3c592e1f611726c77dbc764/defconfig
Build 76a705ac3e8183fef2bc667e4631594ad09dd4ce
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 06:13:32
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/76a705ac3e8183fef2bc667e4631594ad09dd4ce/build-end.log
Complete log : http://autobuild.buildroot.net/results/76a705ac3e8183fef2bc667e4631594ad09dd4ce/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/76a705ac3e8183fef2bc667e4631594ad09dd4ce/config
Defconfig : http://autobuild.buildroot.net/results/76a705ac3e8183fef2bc667e4631594ad09dd4ce/defconfig
Build 36ced67d56efd5f0024eb6752c6880b8cd6c29e6
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 06:29:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/36ced67d56efd5f0024eb6752c6880b8cd6c29e6/build-end.log
Complete log : http://autobuild.buildroot.net/results/36ced67d56efd5f0024eb6752c6880b8cd6c29e6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/36ced67d56efd5f0024eb6752c6880b8cd6c29e6/config
Defconfig : http://autobuild.buildroot.net/results/36ced67d56efd5f0024eb6752c6880b8cd6c29e6/defconfig
Build a40fe086c2da0c6e13a6e6b6792b67b812ea9e11
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 06:43:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/a40fe086c2da0c6e13a6e6b6792b67b812ea9e11/build-end.log
Complete log : http://autobuild.buildroot.net/results/a40fe086c2da0c6e13a6e6b6792b67b812ea9e11/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a40fe086c2da0c6e13a6e6b6792b67b812ea9e11/config
Defconfig : http://autobuild.buildroot.net/results/a40fe086c2da0c6e13a6e6b6792b67b812ea9e11/defconfig
Build ffbcc2c0de20fb7424d0d4e92a3308bd522557e8
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 06:46:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/ffbcc2c0de20fb7424d0d4e92a3308bd522557e8/build-end.log
Complete log : http://autobuild.buildroot.net/results/ffbcc2c0de20fb7424d0d4e92a3308bd522557e8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ffbcc2c0de20fb7424d0d4e92a3308bd522557e8/config
Defconfig : http://autobuild.buildroot.net/results/ffbcc2c0de20fb7424d0d4e92a3308bd522557e8/defconfig
Build 2ae8191c590683d4c8c90456925d8e5d9b1be3e6
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 06:53:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/2ae8191c590683d4c8c90456925d8e5d9b1be3e6/build-end.log
Complete log : http://autobuild.buildroot.net/results/2ae8191c590683d4c8c90456925d8e5d9b1be3e6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2ae8191c590683d4c8c90456925d8e5d9b1be3e6/config
Defconfig : http://autobuild.buildroot.net/results/2ae8191c590683d4c8c90456925d8e5d9b1be3e6/defconfig
Build a044135e461164167105c02ef33024c560070822
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 07:08:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/a044135e461164167105c02ef33024c560070822/build-end.log
Complete log : http://autobuild.buildroot.net/results/a044135e461164167105c02ef33024c560070822/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a044135e461164167105c02ef33024c560070822/config
Defconfig : http://autobuild.buildroot.net/results/a044135e461164167105c02ef33024c560070822/defconfig
Build 2eaae76f4acc90d7d663a15fbdbc258712806102
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 07:10:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/2eaae76f4acc90d7d663a15fbdbc258712806102/build-end.log
Complete log : http://autobuild.buildroot.net/results/2eaae76f4acc90d7d663a15fbdbc258712806102/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2eaae76f4acc90d7d663a15fbdbc258712806102/config
Defconfig : http://autobuild.buildroot.net/results/2eaae76f4acc90d7d663a15fbdbc258712806102/defconfig
Build 915a3d4d4407df9ef739e2f2d2b560ff6d9b016f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 07:17:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/915a3d4d4407df9ef739e2f2d2b560ff6d9b016f/build-end.log
Complete log : http://autobuild.buildroot.net/results/915a3d4d4407df9ef739e2f2d2b560ff6d9b016f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/915a3d4d4407df9ef739e2f2d2b560ff6d9b016f/config
Defconfig : http://autobuild.buildroot.net/results/915a3d4d4407df9ef739e2f2d2b560ff6d9b016f/defconfig
Build a995548af6ffde5b3e7f1f5a3614390e7d8af32b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 07:23:35
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/a995548af6ffde5b3e7f1f5a3614390e7d8af32b/build-end.log
Complete log : http://autobuild.buildroot.net/results/a995548af6ffde5b3e7f1f5a3614390e7d8af32b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a995548af6ffde5b3e7f1f5a3614390e7d8af32b/config
Defconfig : http://autobuild.buildroot.net/results/a995548af6ffde5b3e7f1f5a3614390e7d8af32b/defconfig
Build 0473f5a4f30a133e95075931e48c5776a5dbaec6
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 07:28:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/0473f5a4f30a133e95075931e48c5776a5dbaec6/build-end.log
Complete log : http://autobuild.buildroot.net/results/0473f5a4f30a133e95075931e48c5776a5dbaec6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0473f5a4f30a133e95075931e48c5776a5dbaec6/config
Defconfig : http://autobuild.buildroot.net/results/0473f5a4f30a133e95075931e48c5776a5dbaec6/defconfig
Build f12d59b3941674d27c0ae66b7ffe9dbf1fc7c34e
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 07:29:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/f12d59b3941674d27c0ae66b7ffe9dbf1fc7c34e/build-end.log
Complete log : http://autobuild.buildroot.net/results/f12d59b3941674d27c0ae66b7ffe9dbf1fc7c34e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f12d59b3941674d27c0ae66b7ffe9dbf1fc7c34e/config
Defconfig : http://autobuild.buildroot.net/results/f12d59b3941674d27c0ae66b7ffe9dbf1fc7c34e/defconfig
Build 79d9d3c592ba33f66f7286b85cc01064b999427b
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 07:35:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/79d9d3c592ba33f66f7286b85cc01064b999427b/build-end.log
Complete log : http://autobuild.buildroot.net/results/79d9d3c592ba33f66f7286b85cc01064b999427b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/79d9d3c592ba33f66f7286b85cc01064b999427b/config
Defconfig : http://autobuild.buildroot.net/results/79d9d3c592ba33f66f7286b85cc01064b999427b/defconfig
Build 3ccc87b0a47d5f84798cc56c7cd57cfc92ad5a40
==============================================
Status : NOK
Failure reason : gdbhost-7.4.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 07:42:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/3ccc87b0a47d5f84798cc56c7cd57cfc92ad5a40/build-end.log
Complete log : http://autobuild.buildroot.net/results/3ccc87b0a47d5f84798cc56c7cd57cfc92ad5a40/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3ccc87b0a47d5f84798cc56c7cd57cfc92ad5a40/config
Defconfig : http://autobuild.buildroot.net/results/3ccc87b0a47d5f84798cc56c7cd57cfc92ad5a40/defconfig
Build 9d1fe0b169be2cf050222e32ad2fbff70fd927df
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 07:53:22
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/9d1fe0b169be2cf050222e32ad2fbff70fd927df/build-end.log
Complete log : http://autobuild.buildroot.net/results/9d1fe0b169be2cf050222e32ad2fbff70fd927df/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9d1fe0b169be2cf050222e32ad2fbff70fd927df/config
Defconfig : http://autobuild.buildroot.net/results/9d1fe0b169be2cf050222e32ad2fbff70fd927df/defconfig
Build 35a5a75a57b1ebac3b3072f05524a5411ad32435
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 08:20:44
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/35a5a75a57b1ebac3b3072f05524a5411ad32435/build-end.log
Complete log : http://autobuild.buildroot.net/results/35a5a75a57b1ebac3b3072f05524a5411ad32435/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/35a5a75a57b1ebac3b3072f05524a5411ad32435/config
Defconfig : http://autobuild.buildroot.net/results/35a5a75a57b1ebac3b3072f05524a5411ad32435/defconfig
Build a2514f550c89ab53f96b50dc419cd9eb4e6bdad6
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 08:25:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/a2514f550c89ab53f96b50dc419cd9eb4e6bdad6/build-end.log
Complete log : http://autobuild.buildroot.net/results/a2514f550c89ab53f96b50dc419cd9eb4e6bdad6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a2514f550c89ab53f96b50dc419cd9eb4e6bdad6/config
Defconfig : http://autobuild.buildroot.net/results/a2514f550c89ab53f96b50dc419cd9eb4e6bdad6/defconfig
Build 6f7ff35a9590ae3e06ace277b7148756e9c5cef9
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 08:36:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/6f7ff35a9590ae3e06ace277b7148756e9c5cef9/build-end.log
Complete log : http://autobuild.buildroot.net/results/6f7ff35a9590ae3e06ace277b7148756e9c5cef9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6f7ff35a9590ae3e06ace277b7148756e9c5cef9/config
Defconfig : http://autobuild.buildroot.net/results/6f7ff35a9590ae3e06ace277b7148756e9c5cef9/defconfig
Build aeb7bc6faa7c61f84cbe7e2fbd05160435196d30
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 08:37:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/aeb7bc6faa7c61f84cbe7e2fbd05160435196d30/build-end.log
Complete log : http://autobuild.buildroot.net/results/aeb7bc6faa7c61f84cbe7e2fbd05160435196d30/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/aeb7bc6faa7c61f84cbe7e2fbd05160435196d30/config
Defconfig : http://autobuild.buildroot.net/results/aeb7bc6faa7c61f84cbe7e2fbd05160435196d30/defconfig
Build 62a1662d8d4f926f6a78d1d2b742e3980f554f05
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 08:39:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/62a1662d8d4f926f6a78d1d2b742e3980f554f05/build-end.log
Complete log : http://autobuild.buildroot.net/results/62a1662d8d4f926f6a78d1d2b742e3980f554f05/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/62a1662d8d4f926f6a78d1d2b742e3980f554f05/config
Defconfig : http://autobuild.buildroot.net/results/62a1662d8d4f926f6a78d1d2b742e3980f554f05/defconfig
Build 9737749861994f9de5545b1986ccc7ffdd0376b0
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 08:42:37
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/9737749861994f9de5545b1986ccc7ffdd0376b0/build-end.log
Complete log : http://autobuild.buildroot.net/results/9737749861994f9de5545b1986ccc7ffdd0376b0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9737749861994f9de5545b1986ccc7ffdd0376b0/config
Defconfig : http://autobuild.buildroot.net/results/9737749861994f9de5545b1986ccc7ffdd0376b0/defconfig
Build 7565547508b160ad7a1ddbd7d7a326886d1ca128
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 08:46:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/7565547508b160ad7a1ddbd7d7a326886d1ca128/build-end.log
Complete log : http://autobuild.buildroot.net/results/7565547508b160ad7a1ddbd7d7a326886d1ca128/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7565547508b160ad7a1ddbd7d7a326886d1ca128/config
Defconfig : http://autobuild.buildroot.net/results/7565547508b160ad7a1ddbd7d7a326886d1ca128/defconfig
Build ad410309da261cc81b086db986cdebbdb7cd3d48
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 08:52:43
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/ad410309da261cc81b086db986cdebbdb7cd3d48/build-end.log
Complete log : http://autobuild.buildroot.net/results/ad410309da261cc81b086db986cdebbdb7cd3d48/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ad410309da261cc81b086db986cdebbdb7cd3d48/config
Defconfig : http://autobuild.buildroot.net/results/ad410309da261cc81b086db986cdebbdb7cd3d48/defconfig
Build 344b7e8d5fcd829385e9ae926f63b9c05350c413
==============================================
Status : NOK
Failure reason : xlib_libX11-1.4.2
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 08:57:32
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/344b7e8d5fcd829385e9ae926f63b9c05350c413/build-end.log
Complete log : http://autobuild.buildroot.net/results/344b7e8d5fcd829385e9ae926f63b9c05350c413/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/344b7e8d5fcd829385e9ae926f63b9c05350c413/config
Defconfig : http://autobuild.buildroot.net/results/344b7e8d5fcd829385e9ae926f63b9c05350c413/defconfig
Build 5909073fad626d93265c667d3c026f7e466808a1
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 09:21:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/5909073fad626d93265c667d3c026f7e466808a1/build-end.log
Complete log : http://autobuild.buildroot.net/results/5909073fad626d93265c667d3c026f7e466808a1/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5909073fad626d93265c667d3c026f7e466808a1/config
Defconfig : http://autobuild.buildroot.net/results/5909073fad626d93265c667d3c026f7e466808a1/defconfig
Build b6e067707c51c4b9fea4662c65a12bfc1952ba99
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 09:45:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/b6e067707c51c4b9fea4662c65a12bfc1952ba99/build-end.log
Complete log : http://autobuild.buildroot.net/results/b6e067707c51c4b9fea4662c65a12bfc1952ba99/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b6e067707c51c4b9fea4662c65a12bfc1952ba99/config
Defconfig : http://autobuild.buildroot.net/results/b6e067707c51c4b9fea4662c65a12bfc1952ba99/defconfig
Build a6bfada39ce8e8bf8f249f20bb800eed97793984
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 09:49:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/a6bfada39ce8e8bf8f249f20bb800eed97793984/build-end.log
Complete log : http://autobuild.buildroot.net/results/a6bfada39ce8e8bf8f249f20bb800eed97793984/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a6bfada39ce8e8bf8f249f20bb800eed97793984/config
Defconfig : http://autobuild.buildroot.net/results/a6bfada39ce8e8bf8f249f20bb800eed97793984/defconfig
Build 10c3a27da6b46e5ec5b9537fe276c53083cedf1c
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 09:50:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/10c3a27da6b46e5ec5b9537fe276c53083cedf1c/build-end.log
Complete log : http://autobuild.buildroot.net/results/10c3a27da6b46e5ec5b9537fe276c53083cedf1c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/10c3a27da6b46e5ec5b9537fe276c53083cedf1c/config
Defconfig : http://autobuild.buildroot.net/results/10c3a27da6b46e5ec5b9537fe276c53083cedf1c/defconfig
Build 666b1749ffa72c23a1c970b2f82d8b534413ff31
==============================================
Status : NOK
Failure reason : dbus-1.4.24
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 09:50:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/666b1749ffa72c23a1c970b2f82d8b534413ff31/build-end.log
Complete log : http://autobuild.buildroot.net/results/666b1749ffa72c23a1c970b2f82d8b534413ff31/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/666b1749ffa72c23a1c970b2f82d8b534413ff31/config
Defconfig : http://autobuild.buildroot.net/results/666b1749ffa72c23a1c970b2f82d8b534413ff31/defconfig
Build 87b97bff80f895560a5dae84ed1f45bc46043795
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 09:55:19
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/87b97bff80f895560a5dae84ed1f45bc46043795/build-end.log
Complete log : http://autobuild.buildroot.net/results/87b97bff80f895560a5dae84ed1f45bc46043795/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/87b97bff80f895560a5dae84ed1f45bc46043795/config
Defconfig : http://autobuild.buildroot.net/results/87b97bff80f895560a5dae84ed1f45bc46043795/defconfig
Build a2c9e60670eb111cd24fc536a134875e238c67eb
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 10:04:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/a2c9e60670eb111cd24fc536a134875e238c67eb/build-end.log
Complete log : http://autobuild.buildroot.net/results/a2c9e60670eb111cd24fc536a134875e238c67eb/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a2c9e60670eb111cd24fc536a134875e238c67eb/config
Defconfig : http://autobuild.buildroot.net/results/a2c9e60670eb111cd24fc536a134875e238c67eb/defconfig
Build cd623ed74be7d2b614a92312e164d41dc426f5ae
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 10:09:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/cd623ed74be7d2b614a92312e164d41dc426f5ae/build-end.log
Complete log : http://autobuild.buildroot.net/results/cd623ed74be7d2b614a92312e164d41dc426f5ae/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cd623ed74be7d2b614a92312e164d41dc426f5ae/config
Defconfig : http://autobuild.buildroot.net/results/cd623ed74be7d2b614a92312e164d41dc426f5ae/defconfig
Build b833e62b5009a2a32ebc6cebfbdf1c21112f6e7f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 10:18:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/b833e62b5009a2a32ebc6cebfbdf1c21112f6e7f/build-end.log
Complete log : http://autobuild.buildroot.net/results/b833e62b5009a2a32ebc6cebfbdf1c21112f6e7f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b833e62b5009a2a32ebc6cebfbdf1c21112f6e7f/config
Defconfig : http://autobuild.buildroot.net/results/b833e62b5009a2a32ebc6cebfbdf1c21112f6e7f/defconfig
Build 1f1f0a3861e5d81b1519c7990d16d47dad2e8aa9
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 10:19:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/1f1f0a3861e5d81b1519c7990d16d47dad2e8aa9/build-end.log
Complete log : http://autobuild.buildroot.net/results/1f1f0a3861e5d81b1519c7990d16d47dad2e8aa9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1f1f0a3861e5d81b1519c7990d16d47dad2e8aa9/config
Defconfig : http://autobuild.buildroot.net/results/1f1f0a3861e5d81b1519c7990d16d47dad2e8aa9/defconfig
Build 668c9684b96a93ab793957b3957674342266e5f3
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 10:28:25
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/668c9684b96a93ab793957b3957674342266e5f3/build-end.log
Complete log : http://autobuild.buildroot.net/results/668c9684b96a93ab793957b3957674342266e5f3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/668c9684b96a93ab793957b3957674342266e5f3/config
Defconfig : http://autobuild.buildroot.net/results/668c9684b96a93ab793957b3957674342266e5f3/defconfig
Build e671b07bdf8c72d2803f08d57a2399820cad91c6
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 10:32:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/e671b07bdf8c72d2803f08d57a2399820cad91c6/build-end.log
Complete log : http://autobuild.buildroot.net/results/e671b07bdf8c72d2803f08d57a2399820cad91c6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e671b07bdf8c72d2803f08d57a2399820cad91c6/config
Defconfig : http://autobuild.buildroot.net/results/e671b07bdf8c72d2803f08d57a2399820cad91c6/defconfig
Build 5a61c58d5e2029d9203f7e61e17155e8beaa011b
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 10:47:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/5a61c58d5e2029d9203f7e61e17155e8beaa011b/build-end.log
Complete log : http://autobuild.buildroot.net/results/5a61c58d5e2029d9203f7e61e17155e8beaa011b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5a61c58d5e2029d9203f7e61e17155e8beaa011b/config
Defconfig : http://autobuild.buildroot.net/results/5a61c58d5e2029d9203f7e61e17155e8beaa011b/defconfig
Build 6daa81d3f51e4db00f51f6adfc6437b15b1cd8fb
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 10:52:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/6daa81d3f51e4db00f51f6adfc6437b15b1cd8fb/build-end.log
Complete log : http://autobuild.buildroot.net/results/6daa81d3f51e4db00f51f6adfc6437b15b1cd8fb/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6daa81d3f51e4db00f51f6adfc6437b15b1cd8fb/config
Defconfig : http://autobuild.buildroot.net/results/6daa81d3f51e4db00f51f6adfc6437b15b1cd8fb/defconfig
Build 43623560b3e7b7773b17cb2c86a046138d60ba05
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 10:57:19
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/43623560b3e7b7773b17cb2c86a046138d60ba05/build-end.log
Complete log : http://autobuild.buildroot.net/results/43623560b3e7b7773b17cb2c86a046138d60ba05/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/43623560b3e7b7773b17cb2c86a046138d60ba05/config
Defconfig : http://autobuild.buildroot.net/results/43623560b3e7b7773b17cb2c86a046138d60ba05/defconfig
Build 7f50e7d0be82086b5f165f18045588f987d43643
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 11:11:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/7f50e7d0be82086b5f165f18045588f987d43643/build-end.log
Complete log : http://autobuild.buildroot.net/results/7f50e7d0be82086b5f165f18045588f987d43643/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7f50e7d0be82086b5f165f18045588f987d43643/config
Defconfig : http://autobuild.buildroot.net/results/7f50e7d0be82086b5f165f18045588f987d43643/defconfig
Build 845219213f5e8b13bc1f32b37cb6e8c300e270de
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 11:16:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=cf76170cc3418f36dd9e4daa2f3d0618ce3dc389
End of log : http://autobuild.buildroot.net/results/845219213f5e8b13bc1f32b37cb6e8c300e270de/build-end.log
Complete log : http://autobuild.buildroot.net/results/845219213f5e8b13bc1f32b37cb6e8c300e270de/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/845219213f5e8b13bc1f32b37cb6e8c300e270de/config
Defconfig : http://autobuild.buildroot.net/results/845219213f5e8b13bc1f32b37cb6e8c300e270de/defconfig
Build baa26af765e48fde359c49bc90bc86581e82a6aa
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 11:38:55
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7103905fdeb4a92e4572045e16396e53cd1bf749
End of log : http://autobuild.buildroot.net/results/baa26af765e48fde359c49bc90bc86581e82a6aa/build-end.log
Complete log : http://autobuild.buildroot.net/results/baa26af765e48fde359c49bc90bc86581e82a6aa/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/baa26af765e48fde359c49bc90bc86581e82a6aa/config
Defconfig : http://autobuild.buildroot.net/results/baa26af765e48fde359c49bc90bc86581e82a6aa/defconfig
Build 54dc1d2d257d6008ca3d9aa90ea31f061fc71e8c
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 11:40:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7103905fdeb4a92e4572045e16396e53cd1bf749
End of log : http://autobuild.buildroot.net/results/54dc1d2d257d6008ca3d9aa90ea31f061fc71e8c/build-end.log
Complete log : http://autobuild.buildroot.net/results/54dc1d2d257d6008ca3d9aa90ea31f061fc71e8c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/54dc1d2d257d6008ca3d9aa90ea31f061fc71e8c/config
Defconfig : http://autobuild.buildroot.net/results/54dc1d2d257d6008ca3d9aa90ea31f061fc71e8c/defconfig
Build c8be6e50f48892b02a6d9fda794c08bd6276fdb4
==============================================
Status : NOK
Failure reason : arptables-0.0.3
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 11:41:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7103905fdeb4a92e4572045e16396e53cd1bf749
End of log : http://autobuild.buildroot.net/results/c8be6e50f48892b02a6d9fda794c08bd6276fdb4/build-end.log
Complete log : http://autobuild.buildroot.net/results/c8be6e50f48892b02a6d9fda794c08bd6276fdb4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c8be6e50f48892b02a6d9fda794c08bd6276fdb4/config
Defconfig : http://autobuild.buildroot.net/results/c8be6e50f48892b02a6d9fda794c08bd6276fdb4/defconfig
Build 331e5f11b6cb060196209c3d3c0489862b6d66c9
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 11:41:52
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7103905fdeb4a92e4572045e16396e53cd1bf749
End of log : http://autobuild.buildroot.net/results/331e5f11b6cb060196209c3d3c0489862b6d66c9/build-end.log
Complete log : http://autobuild.buildroot.net/results/331e5f11b6cb060196209c3d3c0489862b6d66c9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/331e5f11b6cb060196209c3d3c0489862b6d66c9/config
Defconfig : http://autobuild.buildroot.net/results/331e5f11b6cb060196209c3d3c0489862b6d66c9/defconfig
Build 57f8122afde87f785fa7384df2f34928ccd04641
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 11:44:56
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7103905fdeb4a92e4572045e16396e53cd1bf749
End of log : http://autobuild.buildroot.net/results/57f8122afde87f785fa7384df2f34928ccd04641/build-end.log
Complete log : http://autobuild.buildroot.net/results/57f8122afde87f785fa7384df2f34928ccd04641/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/57f8122afde87f785fa7384df2f34928ccd04641/config
Defconfig : http://autobuild.buildroot.net/results/57f8122afde87f785fa7384df2f34928ccd04641/defconfig
Build 2466ddfdbf5a83d621ac89785a8a330607888f4f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 11:49:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7103905fdeb4a92e4572045e16396e53cd1bf749
End of log : http://autobuild.buildroot.net/results/2466ddfdbf5a83d621ac89785a8a330607888f4f/build-end.log
Complete log : http://autobuild.buildroot.net/results/2466ddfdbf5a83d621ac89785a8a330607888f4f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2466ddfdbf5a83d621ac89785a8a330607888f4f/config
Defconfig : http://autobuild.buildroot.net/results/2466ddfdbf5a83d621ac89785a8a330607888f4f/defconfig
Build a63df7c4615c15aed7bc046bb8f662b02cc73a17
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 12:07:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7103905fdeb4a92e4572045e16396e53cd1bf749
End of log : http://autobuild.buildroot.net/results/a63df7c4615c15aed7bc046bb8f662b02cc73a17/build-end.log
Complete log : http://autobuild.buildroot.net/results/a63df7c4615c15aed7bc046bb8f662b02cc73a17/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a63df7c4615c15aed7bc046bb8f662b02cc73a17/config
Defconfig : http://autobuild.buildroot.net/results/a63df7c4615c15aed7bc046bb8f662b02cc73a17/defconfig
Build 4ea4ae5f47c3c6afbc484c53a2e615ce558a3c6d
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 12:12:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7103905fdeb4a92e4572045e16396e53cd1bf749
End of log : http://autobuild.buildroot.net/results/4ea4ae5f47c3c6afbc484c53a2e615ce558a3c6d/build-end.log
Complete log : http://autobuild.buildroot.net/results/4ea4ae5f47c3c6afbc484c53a2e615ce558a3c6d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4ea4ae5f47c3c6afbc484c53a2e615ce558a3c6d/config
Defconfig : http://autobuild.buildroot.net/results/4ea4ae5f47c3c6afbc484c53a2e615ce558a3c6d/defconfig
Build fe410d200aa3f802e7eaff35976a90f819f5444a
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 12:19:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7103905fdeb4a92e4572045e16396e53cd1bf749
End of log : http://autobuild.buildroot.net/results/fe410d200aa3f802e7eaff35976a90f819f5444a/build-end.log
Complete log : http://autobuild.buildroot.net/results/fe410d200aa3f802e7eaff35976a90f819f5444a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/fe410d200aa3f802e7eaff35976a90f819f5444a/config
Defconfig : http://autobuild.buildroot.net/results/fe410d200aa3f802e7eaff35976a90f819f5444a/defconfig
Build 8d8d3e06de615f4c1eec6fa0a8765be101b33509
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 12:25:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/8d8d3e06de615f4c1eec6fa0a8765be101b33509/build-end.log
Complete log : http://autobuild.buildroot.net/results/8d8d3e06de615f4c1eec6fa0a8765be101b33509/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8d8d3e06de615f4c1eec6fa0a8765be101b33509/config
Defconfig : http://autobuild.buildroot.net/results/8d8d3e06de615f4c1eec6fa0a8765be101b33509/defconfig
Build a08637c29297181ac3243e00f6c65dc98543d0e2
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 12:28:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/a08637c29297181ac3243e00f6c65dc98543d0e2/build-end.log
Complete log : http://autobuild.buildroot.net/results/a08637c29297181ac3243e00f6c65dc98543d0e2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a08637c29297181ac3243e00f6c65dc98543d0e2/config
Defconfig : http://autobuild.buildroot.net/results/a08637c29297181ac3243e00f6c65dc98543d0e2/defconfig
Build 33f8f7cc9f9fee83b62761c0ae3e3172762c6149
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 12:31:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/33f8f7cc9f9fee83b62761c0ae3e3172762c6149/build-end.log
Complete log : http://autobuild.buildroot.net/results/33f8f7cc9f9fee83b62761c0ae3e3172762c6149/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/33f8f7cc9f9fee83b62761c0ae3e3172762c6149/config
Defconfig : http://autobuild.buildroot.net/results/33f8f7cc9f9fee83b62761c0ae3e3172762c6149/defconfig
Build 9d10732607239c859689e967f4217fe107a43010
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 12:33:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/9d10732607239c859689e967f4217fe107a43010/build-end.log
Complete log : http://autobuild.buildroot.net/results/9d10732607239c859689e967f4217fe107a43010/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9d10732607239c859689e967f4217fe107a43010/config
Defconfig : http://autobuild.buildroot.net/results/9d10732607239c859689e967f4217fe107a43010/defconfig
Build 7533489de5f66ec11aaf0102537195b5b8977e06
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 12:38:35
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/7533489de5f66ec11aaf0102537195b5b8977e06/build-end.log
Complete log : http://autobuild.buildroot.net/results/7533489de5f66ec11aaf0102537195b5b8977e06/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7533489de5f66ec11aaf0102537195b5b8977e06/config
Defconfig : http://autobuild.buildroot.net/results/7533489de5f66ec11aaf0102537195b5b8977e06/defconfig
Build ca426827dbf2765809fa30ba8f39a2e5e70b1fb3
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 12:46:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7103905fdeb4a92e4572045e16396e53cd1bf749
End of log : http://autobuild.buildroot.net/results/ca426827dbf2765809fa30ba8f39a2e5e70b1fb3/build-end.log
Complete log : http://autobuild.buildroot.net/results/ca426827dbf2765809fa30ba8f39a2e5e70b1fb3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ca426827dbf2765809fa30ba8f39a2e5e70b1fb3/config
Defconfig : http://autobuild.buildroot.net/results/ca426827dbf2765809fa30ba8f39a2e5e70b1fb3/defconfig
Build 7cd414b7a4fd4bedab0b7bf3abf6b1a5487a0b1a
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 12:48:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/7cd414b7a4fd4bedab0b7bf3abf6b1a5487a0b1a/build-end.log
Complete log : http://autobuild.buildroot.net/results/7cd414b7a4fd4bedab0b7bf3abf6b1a5487a0b1a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7cd414b7a4fd4bedab0b7bf3abf6b1a5487a0b1a/config
Defconfig : http://autobuild.buildroot.net/results/7cd414b7a4fd4bedab0b7bf3abf6b1a5487a0b1a/defconfig
Build 32079dabdb867547d9409f80df20e3b3cdc89266
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 12:48:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/32079dabdb867547d9409f80df20e3b3cdc89266/build-end.log
Complete log : http://autobuild.buildroot.net/results/32079dabdb867547d9409f80df20e3b3cdc89266/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/32079dabdb867547d9409f80df20e3b3cdc89266/config
Defconfig : http://autobuild.buildroot.net/results/32079dabdb867547d9409f80df20e3b3cdc89266/defconfig
Build ca5e866c180418c848f834b7214ff2fb1f899cf7
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 12:52:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/ca5e866c180418c848f834b7214ff2fb1f899cf7/build-end.log
Complete log : http://autobuild.buildroot.net/results/ca5e866c180418c848f834b7214ff2fb1f899cf7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ca5e866c180418c848f834b7214ff2fb1f899cf7/config
Defconfig : http://autobuild.buildroot.net/results/ca5e866c180418c848f834b7214ff2fb1f899cf7/defconfig
Build f92d3a7e3cc520bcc1eb11df050dcb23fc36ef21
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 12:54:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/f92d3a7e3cc520bcc1eb11df050dcb23fc36ef21/build-end.log
Complete log : http://autobuild.buildroot.net/results/f92d3a7e3cc520bcc1eb11df050dcb23fc36ef21/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f92d3a7e3cc520bcc1eb11df050dcb23fc36ef21/config
Defconfig : http://autobuild.buildroot.net/results/f92d3a7e3cc520bcc1eb11df050dcb23fc36ef21/defconfig
Build 4a7c7d19f22746f96d0107a2ee50fad61d4c8902
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 12:59:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/4a7c7d19f22746f96d0107a2ee50fad61d4c8902/build-end.log
Complete log : http://autobuild.buildroot.net/results/4a7c7d19f22746f96d0107a2ee50fad61d4c8902/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4a7c7d19f22746f96d0107a2ee50fad61d4c8902/config
Defconfig : http://autobuild.buildroot.net/results/4a7c7d19f22746f96d0107a2ee50fad61d4c8902/defconfig
Build 9484ed66c984c096e27c4c509ae21a40d4ed8848
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 13:02:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/9484ed66c984c096e27c4c509ae21a40d4ed8848/build-end.log
Complete log : http://autobuild.buildroot.net/results/9484ed66c984c096e27c4c509ae21a40d4ed8848/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9484ed66c984c096e27c4c509ae21a40d4ed8848/config
Defconfig : http://autobuild.buildroot.net/results/9484ed66c984c096e27c4c509ae21a40d4ed8848/defconfig
Build 4cb83bd3517439f16cc0bcffffb5733416e25a97
==============================================
Status : NOK
Failure reason : dbus-1.4.24
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 13:03:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/4cb83bd3517439f16cc0bcffffb5733416e25a97/build-end.log
Complete log : http://autobuild.buildroot.net/results/4cb83bd3517439f16cc0bcffffb5733416e25a97/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4cb83bd3517439f16cc0bcffffb5733416e25a97/config
Defconfig : http://autobuild.buildroot.net/results/4cb83bd3517439f16cc0bcffffb5733416e25a97/defconfig
Build cd989428b10552b0adec3004a4ac04af5dc404f2
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 13:15:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/cd989428b10552b0adec3004a4ac04af5dc404f2/build-end.log
Complete log : http://autobuild.buildroot.net/results/cd989428b10552b0adec3004a4ac04af5dc404f2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cd989428b10552b0adec3004a4ac04af5dc404f2/config
Defconfig : http://autobuild.buildroot.net/results/cd989428b10552b0adec3004a4ac04af5dc404f2/defconfig
Build 794bef8bb941d1049522a9fee94b73404d6b74f3
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 13:21:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/794bef8bb941d1049522a9fee94b73404d6b74f3/build-end.log
Complete log : http://autobuild.buildroot.net/results/794bef8bb941d1049522a9fee94b73404d6b74f3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/794bef8bb941d1049522a9fee94b73404d6b74f3/config
Defconfig : http://autobuild.buildroot.net/results/794bef8bb941d1049522a9fee94b73404d6b74f3/defconfig
Build 5b9c7a17273b3b753a9cca79a2292d706a8141b4
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 13:27:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/5b9c7a17273b3b753a9cca79a2292d706a8141b4/build-end.log
Complete log : http://autobuild.buildroot.net/results/5b9c7a17273b3b753a9cca79a2292d706a8141b4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5b9c7a17273b3b753a9cca79a2292d706a8141b4/config
Defconfig : http://autobuild.buildroot.net/results/5b9c7a17273b3b753a9cca79a2292d706a8141b4/defconfig
Build f5758ebf300a20d31c88a1c0e4dc3ea8568521d9
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 13:29:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/f5758ebf300a20d31c88a1c0e4dc3ea8568521d9/build-end.log
Complete log : http://autobuild.buildroot.net/results/f5758ebf300a20d31c88a1c0e4dc3ea8568521d9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f5758ebf300a20d31c88a1c0e4dc3ea8568521d9/config
Defconfig : http://autobuild.buildroot.net/results/f5758ebf300a20d31c88a1c0e4dc3ea8568521d9/defconfig
Build 86b7a9761744c9228dc2b1ba28ca0c2bc87616dd
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 13:34:18
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/86b7a9761744c9228dc2b1ba28ca0c2bc87616dd/build-end.log
Complete log : http://autobuild.buildroot.net/results/86b7a9761744c9228dc2b1ba28ca0c2bc87616dd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/86b7a9761744c9228dc2b1ba28ca0c2bc87616dd/config
Defconfig : http://autobuild.buildroot.net/results/86b7a9761744c9228dc2b1ba28ca0c2bc87616dd/defconfig
Build 229bd0825922d4137b7d037532ac645ee3090d98
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 13:44:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/229bd0825922d4137b7d037532ac645ee3090d98/build-end.log
Complete log : http://autobuild.buildroot.net/results/229bd0825922d4137b7d037532ac645ee3090d98/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/229bd0825922d4137b7d037532ac645ee3090d98/config
Defconfig : http://autobuild.buildroot.net/results/229bd0825922d4137b7d037532ac645ee3090d98/defconfig
Build 19705ca028f0c42cff0d4a57d9deea39862c31ef
==============================================
Status : NOK
Failure reason : php-5.3.18
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 13:47:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/19705ca028f0c42cff0d4a57d9deea39862c31ef/build-end.log
Complete log : http://autobuild.buildroot.net/results/19705ca028f0c42cff0d4a57d9deea39862c31ef/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/19705ca028f0c42cff0d4a57d9deea39862c31ef/config
Defconfig : http://autobuild.buildroot.net/results/19705ca028f0c42cff0d4a57d9deea39862c31ef/defconfig
Build 30cd86b7b5c68bb02081ba291bd9e67f1df25f30
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 13:49:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/30cd86b7b5c68bb02081ba291bd9e67f1df25f30/build-end.log
Complete log : http://autobuild.buildroot.net/results/30cd86b7b5c68bb02081ba291bd9e67f1df25f30/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/30cd86b7b5c68bb02081ba291bd9e67f1df25f30/config
Defconfig : http://autobuild.buildroot.net/results/30cd86b7b5c68bb02081ba291bd9e67f1df25f30/defconfig
Build 35cefe24b5317c79bcfd15c551e16a61a856bcde
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 13:50:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/35cefe24b5317c79bcfd15c551e16a61a856bcde/build-end.log
Complete log : http://autobuild.buildroot.net/results/35cefe24b5317c79bcfd15c551e16a61a856bcde/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/35cefe24b5317c79bcfd15c551e16a61a856bcde/config
Defconfig : http://autobuild.buildroot.net/results/35cefe24b5317c79bcfd15c551e16a61a856bcde/defconfig
Build 84d956df0ffd3249f700021d62f7e25ce46a1f3e
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 14:05:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/84d956df0ffd3249f700021d62f7e25ce46a1f3e/build-end.log
Complete log : http://autobuild.buildroot.net/results/84d956df0ffd3249f700021d62f7e25ce46a1f3e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/84d956df0ffd3249f700021d62f7e25ce46a1f3e/config
Defconfig : http://autobuild.buildroot.net/results/84d956df0ffd3249f700021d62f7e25ce46a1f3e/defconfig
Build 156665843938c577ee75a6521723f2a5569c4212
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 14:12:22
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/156665843938c577ee75a6521723f2a5569c4212/build-end.log
Complete log : http://autobuild.buildroot.net/results/156665843938c577ee75a6521723f2a5569c4212/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/156665843938c577ee75a6521723f2a5569c4212/config
Defconfig : http://autobuild.buildroot.net/results/156665843938c577ee75a6521723f2a5569c4212/defconfig
Build eb2e5677be0ff9e6f46532191a894167bd420eba
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 14:31:18
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/eb2e5677be0ff9e6f46532191a894167bd420eba/build-end.log
Complete log : http://autobuild.buildroot.net/results/eb2e5677be0ff9e6f46532191a894167bd420eba/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/eb2e5677be0ff9e6f46532191a894167bd420eba/config
Defconfig : http://autobuild.buildroot.net/results/eb2e5677be0ff9e6f46532191a894167bd420eba/defconfig
Build 19a03a042407828242662cc76f1c6213d45969f9
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 14:40:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/19a03a042407828242662cc76f1c6213d45969f9/build-end.log
Complete log : http://autobuild.buildroot.net/results/19a03a042407828242662cc76f1c6213d45969f9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/19a03a042407828242662cc76f1c6213d45969f9/config
Defconfig : http://autobuild.buildroot.net/results/19a03a042407828242662cc76f1c6213d45969f9/defconfig
Build 2c5cc53540fa9dd7c0dcc9b0376bfbe80597d9d1
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 14:43:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/2c5cc53540fa9dd7c0dcc9b0376bfbe80597d9d1/build-end.log
Complete log : http://autobuild.buildroot.net/results/2c5cc53540fa9dd7c0dcc9b0376bfbe80597d9d1/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2c5cc53540fa9dd7c0dcc9b0376bfbe80597d9d1/config
Defconfig : http://autobuild.buildroot.net/results/2c5cc53540fa9dd7c0dcc9b0376bfbe80597d9d1/defconfig
Build 1758265d08294d6d6307bc69a2f279f4b371158b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 14:54:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/1758265d08294d6d6307bc69a2f279f4b371158b/build-end.log
Complete log : http://autobuild.buildroot.net/results/1758265d08294d6d6307bc69a2f279f4b371158b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1758265d08294d6d6307bc69a2f279f4b371158b/config
Defconfig : http://autobuild.buildroot.net/results/1758265d08294d6d6307bc69a2f279f4b371158b/defconfig
Build f0ff478d21d11ce65f3544d105d5eed18e0fbbbc
==============================================
Status : NOK
Failure reason : quota-4.00
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 14:54:18
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/f0ff478d21d11ce65f3544d105d5eed18e0fbbbc/build-end.log
Complete log : http://autobuild.buildroot.net/results/f0ff478d21d11ce65f3544d105d5eed18e0fbbbc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f0ff478d21d11ce65f3544d105d5eed18e0fbbbc/config
Defconfig : http://autobuild.buildroot.net/results/f0ff478d21d11ce65f3544d105d5eed18e0fbbbc/defconfig
Build 89d375e51850de2e14c8f7d12d632a1d84d67f05
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 15:06:37
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/89d375e51850de2e14c8f7d12d632a1d84d67f05/build-end.log
Complete log : http://autobuild.buildroot.net/results/89d375e51850de2e14c8f7d12d632a1d84d67f05/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/89d375e51850de2e14c8f7d12d632a1d84d67f05/config
Defconfig : http://autobuild.buildroot.net/results/89d375e51850de2e14c8f7d12d632a1d84d67f05/defconfig
Build a69b6a649fb6aa36ddf96bd5ec53861f83257f43
==============================================
Status : NOK
Failure reason : php-5.3.18
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 15:10:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/a69b6a649fb6aa36ddf96bd5ec53861f83257f43/build-end.log
Complete log : http://autobuild.buildroot.net/results/a69b6a649fb6aa36ddf96bd5ec53861f83257f43/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a69b6a649fb6aa36ddf96bd5ec53861f83257f43/config
Defconfig : http://autobuild.buildroot.net/results/a69b6a649fb6aa36ddf96bd5ec53861f83257f43/defconfig
Build 694a843ea53470d6ac8fff624e845ad96a877191
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 15:17:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/694a843ea53470d6ac8fff624e845ad96a877191/build-end.log
Complete log : http://autobuild.buildroot.net/results/694a843ea53470d6ac8fff624e845ad96a877191/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/694a843ea53470d6ac8fff624e845ad96a877191/config
Defconfig : http://autobuild.buildroot.net/results/694a843ea53470d6ac8fff624e845ad96a877191/defconfig
Build ba35ed9ec30c518eb499879d947af1c8b97855db
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 15:18:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/ba35ed9ec30c518eb499879d947af1c8b97855db/build-end.log
Complete log : http://autobuild.buildroot.net/results/ba35ed9ec30c518eb499879d947af1c8b97855db/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ba35ed9ec30c518eb499879d947af1c8b97855db/config
Defconfig : http://autobuild.buildroot.net/results/ba35ed9ec30c518eb499879d947af1c8b97855db/defconfig
Build 5201db39602c1d06cc402cfd0cf3827f86e26834
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 15:28:18
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/5201db39602c1d06cc402cfd0cf3827f86e26834/build-end.log
Complete log : http://autobuild.buildroot.net/results/5201db39602c1d06cc402cfd0cf3827f86e26834/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5201db39602c1d06cc402cfd0cf3827f86e26834/config
Defconfig : http://autobuild.buildroot.net/results/5201db39602c1d06cc402cfd0cf3827f86e26834/defconfig
Build 3ef7d5092426bd5ccc19a435713c8f813cee8051
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 15:31:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/3ef7d5092426bd5ccc19a435713c8f813cee8051/build-end.log
Complete log : http://autobuild.buildroot.net/results/3ef7d5092426bd5ccc19a435713c8f813cee8051/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3ef7d5092426bd5ccc19a435713c8f813cee8051/config
Defconfig : http://autobuild.buildroot.net/results/3ef7d5092426bd5ccc19a435713c8f813cee8051/defconfig
Build 21ebc06bdfef6b133518b352101bdf0c6262f012
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 15:34:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/21ebc06bdfef6b133518b352101bdf0c6262f012/build-end.log
Complete log : http://autobuild.buildroot.net/results/21ebc06bdfef6b133518b352101bdf0c6262f012/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/21ebc06bdfef6b133518b352101bdf0c6262f012/config
Defconfig : http://autobuild.buildroot.net/results/21ebc06bdfef6b133518b352101bdf0c6262f012/defconfig
Build ed82871eb6c1ef2c152e1f6f70ccb203c8a6e597
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 15:35:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/ed82871eb6c1ef2c152e1f6f70ccb203c8a6e597/build-end.log
Complete log : http://autobuild.buildroot.net/results/ed82871eb6c1ef2c152e1f6f70ccb203c8a6e597/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ed82871eb6c1ef2c152e1f6f70ccb203c8a6e597/config
Defconfig : http://autobuild.buildroot.net/results/ed82871eb6c1ef2c152e1f6f70ccb203c8a6e597/defconfig
Build fedbc44d94fd2133785901a219f4e8d2b571fbc4
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 15:39:38
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/fedbc44d94fd2133785901a219f4e8d2b571fbc4/build-end.log
Complete log : http://autobuild.buildroot.net/results/fedbc44d94fd2133785901a219f4e8d2b571fbc4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/fedbc44d94fd2133785901a219f4e8d2b571fbc4/config
Defconfig : http://autobuild.buildroot.net/results/fedbc44d94fd2133785901a219f4e8d2b571fbc4/defconfig
Build 2f7d62e1cb9a47cc97d4114e26bcf5b85213d55c
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 15:51:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/2f7d62e1cb9a47cc97d4114e26bcf5b85213d55c/build-end.log
Complete log : http://autobuild.buildroot.net/results/2f7d62e1cb9a47cc97d4114e26bcf5b85213d55c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2f7d62e1cb9a47cc97d4114e26bcf5b85213d55c/config
Defconfig : http://autobuild.buildroot.net/results/2f7d62e1cb9a47cc97d4114e26bcf5b85213d55c/defconfig
Build a5ebb82523df763b70eb7603578b7e67036c024c
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 16:00:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/a5ebb82523df763b70eb7603578b7e67036c024c/build-end.log
Complete log : http://autobuild.buildroot.net/results/a5ebb82523df763b70eb7603578b7e67036c024c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a5ebb82523df763b70eb7603578b7e67036c024c/config
Defconfig : http://autobuild.buildroot.net/results/a5ebb82523df763b70eb7603578b7e67036c024c/defconfig
Build cbd6e74b594d6261a2080f7079159976953f685d
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 16:01:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/cbd6e74b594d6261a2080f7079159976953f685d/build-end.log
Complete log : http://autobuild.buildroot.net/results/cbd6e74b594d6261a2080f7079159976953f685d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cbd6e74b594d6261a2080f7079159976953f685d/config
Defconfig : http://autobuild.buildroot.net/results/cbd6e74b594d6261a2080f7079159976953f685d/defconfig
Build ad936641dc8a0348b29e924404f94c0e0469e618
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 16:06:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/ad936641dc8a0348b29e924404f94c0e0469e618/build-end.log
Complete log : http://autobuild.buildroot.net/results/ad936641dc8a0348b29e924404f94c0e0469e618/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ad936641dc8a0348b29e924404f94c0e0469e618/config
Defconfig : http://autobuild.buildroot.net/results/ad936641dc8a0348b29e924404f94c0e0469e618/defconfig
Build c391051ea91a78f41129e63e8ce15c3e96208bf0
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 16:42:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/c391051ea91a78f41129e63e8ce15c3e96208bf0/build-end.log
Complete log : http://autobuild.buildroot.net/results/c391051ea91a78f41129e63e8ce15c3e96208bf0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c391051ea91a78f41129e63e8ce15c3e96208bf0/config
Defconfig : http://autobuild.buildroot.net/results/c391051ea91a78f41129e63e8ce15c3e96208bf0/defconfig
Build 72d5e930b646d7b73573ba62741cc392cb1581b0
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 16:50:28
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/72d5e930b646d7b73573ba62741cc392cb1581b0/build-end.log
Complete log : http://autobuild.buildroot.net/results/72d5e930b646d7b73573ba62741cc392cb1581b0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/72d5e930b646d7b73573ba62741cc392cb1581b0/config
Defconfig : http://autobuild.buildroot.net/results/72d5e930b646d7b73573ba62741cc392cb1581b0/defconfig
Build 787c8c778f11e0468ca164d834b3cd9a0f5c70e5
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 16:57:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/787c8c778f11e0468ca164d834b3cd9a0f5c70e5/build-end.log
Complete log : http://autobuild.buildroot.net/results/787c8c778f11e0468ca164d834b3cd9a0f5c70e5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/787c8c778f11e0468ca164d834b3cd9a0f5c70e5/config
Defconfig : http://autobuild.buildroot.net/results/787c8c778f11e0468ca164d834b3cd9a0f5c70e5/defconfig
Build 7fda106c2094856957eb87067316401c39398bbd
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 17:02:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/7fda106c2094856957eb87067316401c39398bbd/build-end.log
Complete log : http://autobuild.buildroot.net/results/7fda106c2094856957eb87067316401c39398bbd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7fda106c2094856957eb87067316401c39398bbd/config
Defconfig : http://autobuild.buildroot.net/results/7fda106c2094856957eb87067316401c39398bbd/defconfig
Build 1e2d0e6fe437a28a8794b1291ea4d4400582bf2d
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 17:11:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/1e2d0e6fe437a28a8794b1291ea4d4400582bf2d/build-end.log
Complete log : http://autobuild.buildroot.net/results/1e2d0e6fe437a28a8794b1291ea4d4400582bf2d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1e2d0e6fe437a28a8794b1291ea4d4400582bf2d/config
Defconfig : http://autobuild.buildroot.net/results/1e2d0e6fe437a28a8794b1291ea4d4400582bf2d/defconfig
Build 455d0b15139915176ba40adaae8689fdb4aa1130
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 17:20:26
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/455d0b15139915176ba40adaae8689fdb4aa1130/build-end.log
Complete log : http://autobuild.buildroot.net/results/455d0b15139915176ba40adaae8689fdb4aa1130/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/455d0b15139915176ba40adaae8689fdb4aa1130/config
Defconfig : http://autobuild.buildroot.net/results/455d0b15139915176ba40adaae8689fdb4aa1130/defconfig
Build e4d96cc731f9ec64c4950e8913027ca49ec8e797
==============================================
Status : NOK
Failure reason : libnss-3.12.9
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 17:35:56
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/e4d96cc731f9ec64c4950e8913027ca49ec8e797/build-end.log
Complete log : http://autobuild.buildroot.net/results/e4d96cc731f9ec64c4950e8913027ca49ec8e797/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e4d96cc731f9ec64c4950e8913027ca49ec8e797/config
Defconfig : http://autobuild.buildroot.net/results/e4d96cc731f9ec64c4950e8913027ca49ec8e797/defconfig
Build 2056c8f43c34bba880342e727f65d2f14c632be3
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 17:43:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/2056c8f43c34bba880342e727f65d2f14c632be3/build-end.log
Complete log : http://autobuild.buildroot.net/results/2056c8f43c34bba880342e727f65d2f14c632be3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2056c8f43c34bba880342e727f65d2f14c632be3/config
Defconfig : http://autobuild.buildroot.net/results/2056c8f43c34bba880342e727f65d2f14c632be3/defconfig
Build 714c42ad2177610b43e63082f610ac7ee3378b6e
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 17:48:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/714c42ad2177610b43e63082f610ac7ee3378b6e/build-end.log
Complete log : http://autobuild.buildroot.net/results/714c42ad2177610b43e63082f610ac7ee3378b6e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/714c42ad2177610b43e63082f610ac7ee3378b6e/config
Defconfig : http://autobuild.buildroot.net/results/714c42ad2177610b43e63082f610ac7ee3378b6e/defconfig
Build 0ba65acd9843fd05fadfd62299f55aabd8236b41
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 17:52:35
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/0ba65acd9843fd05fadfd62299f55aabd8236b41/build-end.log
Complete log : http://autobuild.buildroot.net/results/0ba65acd9843fd05fadfd62299f55aabd8236b41/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0ba65acd9843fd05fadfd62299f55aabd8236b41/config
Defconfig : http://autobuild.buildroot.net/results/0ba65acd9843fd05fadfd62299f55aabd8236b41/defconfig
Build 1550c98508bb1eacf49c8dc6318e228d04d47870
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 17:53:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/1550c98508bb1eacf49c8dc6318e228d04d47870/build-end.log
Complete log : http://autobuild.buildroot.net/results/1550c98508bb1eacf49c8dc6318e228d04d47870/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1550c98508bb1eacf49c8dc6318e228d04d47870/config
Defconfig : http://autobuild.buildroot.net/results/1550c98508bb1eacf49c8dc6318e228d04d47870/defconfig
Build 9e89e4482b8c48d043dba5b7e13802d920742eb0
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 17:57:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/9e89e4482b8c48d043dba5b7e13802d920742eb0/build-end.log
Complete log : http://autobuild.buildroot.net/results/9e89e4482b8c48d043dba5b7e13802d920742eb0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9e89e4482b8c48d043dba5b7e13802d920742eb0/config
Defconfig : http://autobuild.buildroot.net/results/9e89e4482b8c48d043dba5b7e13802d920742eb0/defconfig
Build 13b5689c4d41f06c4b40968f6354c46477d849d0
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 18:02:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/13b5689c4d41f06c4b40968f6354c46477d849d0/build-end.log
Complete log : http://autobuild.buildroot.net/results/13b5689c4d41f06c4b40968f6354c46477d849d0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/13b5689c4d41f06c4b40968f6354c46477d849d0/config
Defconfig : http://autobuild.buildroot.net/results/13b5689c4d41f06c4b40968f6354c46477d849d0/defconfig
Build 0b3b2b6e39717a8f879f3dd5229b461325596506
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 18:13:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/0b3b2b6e39717a8f879f3dd5229b461325596506/build-end.log
Complete log : http://autobuild.buildroot.net/results/0b3b2b6e39717a8f879f3dd5229b461325596506/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0b3b2b6e39717a8f879f3dd5229b461325596506/config
Defconfig : http://autobuild.buildroot.net/results/0b3b2b6e39717a8f879f3dd5229b461325596506/defconfig
Build b5e039c8d813fb68ede718d83b0de0ac74d8aed4
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 18:34:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/b5e039c8d813fb68ede718d83b0de0ac74d8aed4/build-end.log
Complete log : http://autobuild.buildroot.net/results/b5e039c8d813fb68ede718d83b0de0ac74d8aed4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b5e039c8d813fb68ede718d83b0de0ac74d8aed4/config
Defconfig : http://autobuild.buildroot.net/results/b5e039c8d813fb68ede718d83b0de0ac74d8aed4/defconfig
Build 51a828d285a91c6e6c8d417295853f074ed37ac5
==============================================
Status : NOK
Failure reason : gdb-7.4.1-target
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 18:36:30
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/51a828d285a91c6e6c8d417295853f074ed37ac5/build-end.log
Complete log : http://autobuild.buildroot.net/results/51a828d285a91c6e6c8d417295853f074ed37ac5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/51a828d285a91c6e6c8d417295853f074ed37ac5/config
Defconfig : http://autobuild.buildroot.net/results/51a828d285a91c6e6c8d417295853f074ed37ac5/defconfig
Build c2e9df7693fea304e0459d1e187c5bfdbb93e00a
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 18:44:52
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/c2e9df7693fea304e0459d1e187c5bfdbb93e00a/build-end.log
Complete log : http://autobuild.buildroot.net/results/c2e9df7693fea304e0459d1e187c5bfdbb93e00a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c2e9df7693fea304e0459d1e187c5bfdbb93e00a/config
Defconfig : http://autobuild.buildroot.net/results/c2e9df7693fea304e0459d1e187c5bfdbb93e00a/defconfig
Build 3c61847dbb9ef9686f5d4f7dcf7ed32c190e285f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 18:50:13
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/3c61847dbb9ef9686f5d4f7dcf7ed32c190e285f/build-end.log
Complete log : http://autobuild.buildroot.net/results/3c61847dbb9ef9686f5d4f7dcf7ed32c190e285f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3c61847dbb9ef9686f5d4f7dcf7ed32c190e285f/config
Defconfig : http://autobuild.buildroot.net/results/3c61847dbb9ef9686f5d4f7dcf7ed32c190e285f/defconfig
Build 9c449c0b29b76093cd4577aaf7cb1f67578a4000
==============================================
Status : NOK
Failure reason : quota-4.00
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 18:52:45
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/9c449c0b29b76093cd4577aaf7cb1f67578a4000/build-end.log
Complete log : http://autobuild.buildroot.net/results/9c449c0b29b76093cd4577aaf7cb1f67578a4000/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9c449c0b29b76093cd4577aaf7cb1f67578a4000/config
Defconfig : http://autobuild.buildroot.net/results/9c449c0b29b76093cd4577aaf7cb1f67578a4000/defconfig
Build a772780788541f4622b16aaff3b7ec623e8cc5f4
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 18:58:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/a772780788541f4622b16aaff3b7ec623e8cc5f4/build-end.log
Complete log : http://autobuild.buildroot.net/results/a772780788541f4622b16aaff3b7ec623e8cc5f4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a772780788541f4622b16aaff3b7ec623e8cc5f4/config
Defconfig : http://autobuild.buildroot.net/results/a772780788541f4622b16aaff3b7ec623e8cc5f4/defconfig
Build 9cf57ed093a825afd0c0597d80f293281a562a0a
==============================================
Status : NOK
Failure reason : libhid-0.2.16
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 19:08:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/9cf57ed093a825afd0c0597d80f293281a562a0a/build-end.log
Complete log : http://autobuild.buildroot.net/results/9cf57ed093a825afd0c0597d80f293281a562a0a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9cf57ed093a825afd0c0597d80f293281a562a0a/config
Defconfig : http://autobuild.buildroot.net/results/9cf57ed093a825afd0c0597d80f293281a562a0a/defconfig
Build dc7baf392684a3d0e438e50f60d02c7923f4e6ce
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 19:18:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/dc7baf392684a3d0e438e50f60d02c7923f4e6ce/build-end.log
Complete log : http://autobuild.buildroot.net/results/dc7baf392684a3d0e438e50f60d02c7923f4e6ce/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/dc7baf392684a3d0e438e50f60d02c7923f4e6ce/config
Defconfig : http://autobuild.buildroot.net/results/dc7baf392684a3d0e438e50f60d02c7923f4e6ce/defconfig
Build cf7325a212949ae87915f66f6ac8dac41ce8e751
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 19:21:38
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/cf7325a212949ae87915f66f6ac8dac41ce8e751/build-end.log
Complete log : http://autobuild.buildroot.net/results/cf7325a212949ae87915f66f6ac8dac41ce8e751/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cf7325a212949ae87915f66f6ac8dac41ce8e751/config
Defconfig : http://autobuild.buildroot.net/results/cf7325a212949ae87915f66f6ac8dac41ce8e751/defconfig
Build 6ddac60f5cc2df4343b732781734e8adf456f8cb
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 19:27:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/6ddac60f5cc2df4343b732781734e8adf456f8cb/build-end.log
Complete log : http://autobuild.buildroot.net/results/6ddac60f5cc2df4343b732781734e8adf456f8cb/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6ddac60f5cc2df4343b732781734e8adf456f8cb/config
Defconfig : http://autobuild.buildroot.net/results/6ddac60f5cc2df4343b732781734e8adf456f8cb/defconfig
Build 3e30af8e4a0e0c9eff27a0e772d40a73b983914f
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 19:31:19
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/3e30af8e4a0e0c9eff27a0e772d40a73b983914f/build-end.log
Complete log : http://autobuild.buildroot.net/results/3e30af8e4a0e0c9eff27a0e772d40a73b983914f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3e30af8e4a0e0c9eff27a0e772d40a73b983914f/config
Defconfig : http://autobuild.buildroot.net/results/3e30af8e4a0e0c9eff27a0e772d40a73b983914f/defconfig
Build a2ea2d1269cc64fe6867e04d4f9574ba5f375b85
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 19:52:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/a2ea2d1269cc64fe6867e04d4f9574ba5f375b85/build-end.log
Complete log : http://autobuild.buildroot.net/results/a2ea2d1269cc64fe6867e04d4f9574ba5f375b85/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a2ea2d1269cc64fe6867e04d4f9574ba5f375b85/config
Defconfig : http://autobuild.buildroot.net/results/a2ea2d1269cc64fe6867e04d4f9574ba5f375b85/defconfig
Build d946ece786ae48b830967691fa0a719207b5622b
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 19:56:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/d946ece786ae48b830967691fa0a719207b5622b/build-end.log
Complete log : http://autobuild.buildroot.net/results/d946ece786ae48b830967691fa0a719207b5622b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d946ece786ae48b830967691fa0a719207b5622b/config
Defconfig : http://autobuild.buildroot.net/results/d946ece786ae48b830967691fa0a719207b5622b/defconfig
Build 0da333ed7c95f266150765c778024d2d54ea61d3
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 19:58:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/0da333ed7c95f266150765c778024d2d54ea61d3/build-end.log
Complete log : http://autobuild.buildroot.net/results/0da333ed7c95f266150765c778024d2d54ea61d3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0da333ed7c95f266150765c778024d2d54ea61d3/config
Defconfig : http://autobuild.buildroot.net/results/0da333ed7c95f266150765c778024d2d54ea61d3/defconfig
Build a552cc77bc29e053217743481af9b971dcc76c8c
==============================================
Status : NOK
Failure reason : cairo-1.10.2
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 19:58:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/a552cc77bc29e053217743481af9b971dcc76c8c/build-end.log
Complete log : http://autobuild.buildroot.net/results/a552cc77bc29e053217743481af9b971dcc76c8c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a552cc77bc29e053217743481af9b971dcc76c8c/config
Defconfig : http://autobuild.buildroot.net/results/a552cc77bc29e053217743481af9b971dcc76c8c/defconfig
Build 07af42bf85b1a41dd8704cc00b0cd2ed0c8a24de
==============================================
Status : NOK
Failure reason : libatomic_ops-1.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 20:04:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/07af42bf85b1a41dd8704cc00b0cd2ed0c8a24de/build-end.log
Complete log : http://autobuild.buildroot.net/results/07af42bf85b1a41dd8704cc00b0cd2ed0c8a24de/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/07af42bf85b1a41dd8704cc00b0cd2ed0c8a24de/config
Defconfig : http://autobuild.buildroot.net/results/07af42bf85b1a41dd8704cc00b0cd2ed0c8a24de/defconfig
Build 9a589568b2e863bf33fca039ea26d74ff5cb1352
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 20:12:13
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/9a589568b2e863bf33fca039ea26d74ff5cb1352/build-end.log
Complete log : http://autobuild.buildroot.net/results/9a589568b2e863bf33fca039ea26d74ff5cb1352/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9a589568b2e863bf33fca039ea26d74ff5cb1352/config
Defconfig : http://autobuild.buildroot.net/results/9a589568b2e863bf33fca039ea26d74ff5cb1352/defconfig
Build b2303c50b60ed88e127658876cc379331ddbe396
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 20:27:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/b2303c50b60ed88e127658876cc379331ddbe396/build-end.log
Complete log : http://autobuild.buildroot.net/results/b2303c50b60ed88e127658876cc379331ddbe396/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b2303c50b60ed88e127658876cc379331ddbe396/config
Defconfig : http://autobuild.buildroot.net/results/b2303c50b60ed88e127658876cc379331ddbe396/defconfig
Build 46e855fb6ee69c78d93c0821dddc400847f8b53f
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 20:41:43
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7e61918f9d5d3c5bc1fb435ae9e6c8013cf5ab07
End of log : http://autobuild.buildroot.net/results/46e855fb6ee69c78d93c0821dddc400847f8b53f/build-end.log
Complete log : http://autobuild.buildroot.net/results/46e855fb6ee69c78d93c0821dddc400847f8b53f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/46e855fb6ee69c78d93c0821dddc400847f8b53f/config
Defconfig : http://autobuild.buildroot.net/results/46e855fb6ee69c78d93c0821dddc400847f8b53f/defconfig
Build 961cdf530453a45b49a5db51fb7d68f159e26e19
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 20:47:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=c957f604d53d75e851370b6e0503388c93501e87
End of log : http://autobuild.buildroot.net/results/961cdf530453a45b49a5db51fb7d68f159e26e19/build-end.log
Complete log : http://autobuild.buildroot.net/results/961cdf530453a45b49a5db51fb7d68f159e26e19/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/961cdf530453a45b49a5db51fb7d68f159e26e19/config
Defconfig : http://autobuild.buildroot.net/results/961cdf530453a45b49a5db51fb7d68f159e26e19/defconfig
Build e60ac0fc6924b77737671050f6287b0f4edbb4cd
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 21:15:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/e60ac0fc6924b77737671050f6287b0f4edbb4cd/build-end.log
Complete log : http://autobuild.buildroot.net/results/e60ac0fc6924b77737671050f6287b0f4edbb4cd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e60ac0fc6924b77737671050f6287b0f4edbb4cd/config
Defconfig : http://autobuild.buildroot.net/results/e60ac0fc6924b77737671050f6287b0f4edbb4cd/defconfig
Build a705b8842c3203712bc2bc03cc3b36fa3020f61a
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 21:15:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=c957f604d53d75e851370b6e0503388c93501e87
End of log : http://autobuild.buildroot.net/results/a705b8842c3203712bc2bc03cc3b36fa3020f61a/build-end.log
Complete log : http://autobuild.buildroot.net/results/a705b8842c3203712bc2bc03cc3b36fa3020f61a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a705b8842c3203712bc2bc03cc3b36fa3020f61a/config
Defconfig : http://autobuild.buildroot.net/results/a705b8842c3203712bc2bc03cc3b36fa3020f61a/defconfig
Build fee5af85af4f6ffb05aa1380b0ac09a78d761cb6
==============================================
Status : NOK
Failure reason : quota-4.00
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 21:16:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=c957f604d53d75e851370b6e0503388c93501e87
End of log : http://autobuild.buildroot.net/results/fee5af85af4f6ffb05aa1380b0ac09a78d761cb6/build-end.log
Complete log : http://autobuild.buildroot.net/results/fee5af85af4f6ffb05aa1380b0ac09a78d761cb6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/fee5af85af4f6ffb05aa1380b0ac09a78d761cb6/config
Defconfig : http://autobuild.buildroot.net/results/fee5af85af4f6ffb05aa1380b0ac09a78d761cb6/defconfig
Build ee86c8afa9433907041beb6bcd2452ddd1c6584f
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 21:22:25
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/ee86c8afa9433907041beb6bcd2452ddd1c6584f/build-end.log
Complete log : http://autobuild.buildroot.net/results/ee86c8afa9433907041beb6bcd2452ddd1c6584f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ee86c8afa9433907041beb6bcd2452ddd1c6584f/config
Defconfig : http://autobuild.buildroot.net/results/ee86c8afa9433907041beb6bcd2452ddd1c6584f/defconfig
Build c0b765fcf161565a6fde422e7ac027839ea05682
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 21:25:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/c0b765fcf161565a6fde422e7ac027839ea05682/build-end.log
Complete log : http://autobuild.buildroot.net/results/c0b765fcf161565a6fde422e7ac027839ea05682/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c0b765fcf161565a6fde422e7ac027839ea05682/config
Defconfig : http://autobuild.buildroot.net/results/c0b765fcf161565a6fde422e7ac027839ea05682/defconfig
Build 4be67b928c7292cdbe95d97770fa3367cc449ba9
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 21:26:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/4be67b928c7292cdbe95d97770fa3367cc449ba9/build-end.log
Complete log : http://autobuild.buildroot.net/results/4be67b928c7292cdbe95d97770fa3367cc449ba9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4be67b928c7292cdbe95d97770fa3367cc449ba9/config
Defconfig : http://autobuild.buildroot.net/results/4be67b928c7292cdbe95d97770fa3367cc449ba9/defconfig
Build da39924f19cd0062a9d10159bf5d9d3d1b06c05e
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 21:46:05
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/da39924f19cd0062a9d10159bf5d9d3d1b06c05e/build-end.log
Complete log : http://autobuild.buildroot.net/results/da39924f19cd0062a9d10159bf5d9d3d1b06c05e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/da39924f19cd0062a9d10159bf5d9d3d1b06c05e/config
Defconfig : http://autobuild.buildroot.net/results/da39924f19cd0062a9d10159bf5d9d3d1b06c05e/defconfig
Build 52b05d27d811476d9603b0ab5c4d1c8b4b49274e
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 21:53:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/52b05d27d811476d9603b0ab5c4d1c8b4b49274e/build-end.log
Complete log : http://autobuild.buildroot.net/results/52b05d27d811476d9603b0ab5c4d1c8b4b49274e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/52b05d27d811476d9603b0ab5c4d1c8b4b49274e/config
Defconfig : http://autobuild.buildroot.net/results/52b05d27d811476d9603b0ab5c4d1c8b4b49274e/defconfig
Build 3d973d5630f036f99d9196ed4d4e6e260fa62ee9
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 22:06:28
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/3d973d5630f036f99d9196ed4d4e6e260fa62ee9/build-end.log
Complete log : http://autobuild.buildroot.net/results/3d973d5630f036f99d9196ed4d4e6e260fa62ee9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3d973d5630f036f99d9196ed4d4e6e260fa62ee9/config
Defconfig : http://autobuild.buildroot.net/results/3d973d5630f036f99d9196ed4d4e6e260fa62ee9/defconfig
Build 5066d2b53150751bac51fc81615174af54be3cc7
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 22:07:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/5066d2b53150751bac51fc81615174af54be3cc7/build-end.log
Complete log : http://autobuild.buildroot.net/results/5066d2b53150751bac51fc81615174af54be3cc7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5066d2b53150751bac51fc81615174af54be3cc7/config
Defconfig : http://autobuild.buildroot.net/results/5066d2b53150751bac51fc81615174af54be3cc7/defconfig
Build a3f7f102d1352a82969976ead9f791c3976459c7
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 22:11:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/a3f7f102d1352a82969976ead9f791c3976459c7/build-end.log
Complete log : http://autobuild.buildroot.net/results/a3f7f102d1352a82969976ead9f791c3976459c7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a3f7f102d1352a82969976ead9f791c3976459c7/config
Defconfig : http://autobuild.buildroot.net/results/a3f7f102d1352a82969976ead9f791c3976459c7/defconfig
Build 59118690f846da5b2e309d6132a5ec34c274dcad
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 22:14:32
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/59118690f846da5b2e309d6132a5ec34c274dcad/build-end.log
Complete log : http://autobuild.buildroot.net/results/59118690f846da5b2e309d6132a5ec34c274dcad/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/59118690f846da5b2e309d6132a5ec34c274dcad/config
Defconfig : http://autobuild.buildroot.net/results/59118690f846da5b2e309d6132a5ec34c274dcad/defconfig
Build ef865e2c6cc84b6c26612089f353b3f6c6506fd5
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 22:19:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/ef865e2c6cc84b6c26612089f353b3f6c6506fd5/build-end.log
Complete log : http://autobuild.buildroot.net/results/ef865e2c6cc84b6c26612089f353b3f6c6506fd5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ef865e2c6cc84b6c26612089f353b3f6c6506fd5/config
Defconfig : http://autobuild.buildroot.net/results/ef865e2c6cc84b6c26612089f353b3f6c6506fd5/defconfig
Build e59586c6a38d35687d60a8883fa5619362b2ba7f
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 22:19:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/e59586c6a38d35687d60a8883fa5619362b2ba7f/build-end.log
Complete log : http://autobuild.buildroot.net/results/e59586c6a38d35687d60a8883fa5619362b2ba7f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e59586c6a38d35687d60a8883fa5619362b2ba7f/config
Defconfig : http://autobuild.buildroot.net/results/e59586c6a38d35687d60a8883fa5619362b2ba7f/defconfig
Build 89b1f55a86d8a5aecfbafa277aa6574bd1baeb9e
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 22:43:55
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/89b1f55a86d8a5aecfbafa277aa6574bd1baeb9e/build-end.log
Complete log : http://autobuild.buildroot.net/results/89b1f55a86d8a5aecfbafa277aa6574bd1baeb9e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/89b1f55a86d8a5aecfbafa277aa6574bd1baeb9e/config
Defconfig : http://autobuild.buildroot.net/results/89b1f55a86d8a5aecfbafa277aa6574bd1baeb9e/defconfig
Build 47c30b837f0b2699733bd53b8651662afb7e8e60
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 22:48:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/47c30b837f0b2699733bd53b8651662afb7e8e60/build-end.log
Complete log : http://autobuild.buildroot.net/results/47c30b837f0b2699733bd53b8651662afb7e8e60/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/47c30b837f0b2699733bd53b8651662afb7e8e60/config
Defconfig : http://autobuild.buildroot.net/results/47c30b837f0b2699733bd53b8651662afb7e8e60/defconfig
Build b2f8a55a017b010d5fe5c97f337fd508cf766927
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 22:50:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/b2f8a55a017b010d5fe5c97f337fd508cf766927/build-end.log
Complete log : http://autobuild.buildroot.net/results/b2f8a55a017b010d5fe5c97f337fd508cf766927/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b2f8a55a017b010d5fe5c97f337fd508cf766927/config
Defconfig : http://autobuild.buildroot.net/results/b2f8a55a017b010d5fe5c97f337fd508cf766927/defconfig
Build f03c990efa97e219a2c78f17f7193724171ea8b7
==============================================
Status : NOK
Failure reason : xlib_libX11-1.4.2
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 22:54:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/f03c990efa97e219a2c78f17f7193724171ea8b7/build-end.log
Complete log : http://autobuild.buildroot.net/results/f03c990efa97e219a2c78f17f7193724171ea8b7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f03c990efa97e219a2c78f17f7193724171ea8b7/config
Defconfig : http://autobuild.buildroot.net/results/f03c990efa97e219a2c78f17f7193724171ea8b7/defconfig
Build 39fb2e51414cd1a2402093e2f55385a567132218
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 22:57:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/39fb2e51414cd1a2402093e2f55385a567132218/build-end.log
Complete log : http://autobuild.buildroot.net/results/39fb2e51414cd1a2402093e2f55385a567132218/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/39fb2e51414cd1a2402093e2f55385a567132218/config
Defconfig : http://autobuild.buildroot.net/results/39fb2e51414cd1a2402093e2f55385a567132218/defconfig
Build d67ba7d61ef1f43a4551646cdc4e051b6c40a58b
==============================================
Status : NOK
Failure reason : nfs-utils-1.2.6
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 23:02:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/d67ba7d61ef1f43a4551646cdc4e051b6c40a58b/build-end.log
Complete log : http://autobuild.buildroot.net/results/d67ba7d61ef1f43a4551646cdc4e051b6c40a58b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d67ba7d61ef1f43a4551646cdc4e051b6c40a58b/config
Defconfig : http://autobuild.buildroot.net/results/d67ba7d61ef1f43a4551646cdc4e051b6c40a58b/defconfig
Build e6632821916ea0755377683fa6c69f864f3df162
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 23:14:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/e6632821916ea0755377683fa6c69f864f3df162/build-end.log
Complete log : http://autobuild.buildroot.net/results/e6632821916ea0755377683fa6c69f864f3df162/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e6632821916ea0755377683fa6c69f864f3df162/config
Defconfig : http://autobuild.buildroot.net/results/e6632821916ea0755377683fa6c69f864f3df162/defconfig
Build 36ae9c118f42062996635f144acdf256da65fef6
==============================================
Status : NOK
Failure reason : gdbhost-7.4.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 23:15:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/36ae9c118f42062996635f144acdf256da65fef6/build-end.log
Complete log : http://autobuild.buildroot.net/results/36ae9c118f42062996635f144acdf256da65fef6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/36ae9c118f42062996635f144acdf256da65fef6/config
Defconfig : http://autobuild.buildroot.net/results/36ae9c118f42062996635f144acdf256da65fef6/defconfig
Build 39ccee014086780b51375f2d423a204fc694b076
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 23:18:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/39ccee014086780b51375f2d423a204fc694b076/build-end.log
Complete log : http://autobuild.buildroot.net/results/39ccee014086780b51375f2d423a204fc694b076/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/39ccee014086780b51375f2d423a204fc694b076/config
Defconfig : http://autobuild.buildroot.net/results/39ccee014086780b51375f2d423a204fc694b076/defconfig
Build 74222f29dd279876cd5fcff444952aba7b256f48
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 23:20:05
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/74222f29dd279876cd5fcff444952aba7b256f48/build-end.log
Complete log : http://autobuild.buildroot.net/results/74222f29dd279876cd5fcff444952aba7b256f48/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/74222f29dd279876cd5fcff444952aba7b256f48/config
Defconfig : http://autobuild.buildroot.net/results/74222f29dd279876cd5fcff444952aba7b256f48/defconfig
Build a0f8f0e73c5139118d273a5751f4dbec6332a87e
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-11-07 23:26:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/a0f8f0e73c5139118d273a5751f4dbec6332a87e/build-end.log
Complete log : http://autobuild.buildroot.net/results/a0f8f0e73c5139118d273a5751f4dbec6332a87e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a0f8f0e73c5139118d273a5751f4dbec6332a87e/config
Defconfig : http://autobuild.buildroot.net/results/a0f8f0e73c5139118d273a5751f4dbec6332a87e/defconfig
Build 9caa216f0c72699b62a85036ae7ff233c3672e4a
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 23:34:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/9caa216f0c72699b62a85036ae7ff233c3672e4a/build-end.log
Complete log : http://autobuild.buildroot.net/results/9caa216f0c72699b62a85036ae7ff233c3672e4a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9caa216f0c72699b62a85036ae7ff233c3672e4a/config
Defconfig : http://autobuild.buildroot.net/results/9caa216f0c72699b62a85036ae7ff233c3672e4a/defconfig
Build d910aea68157726e27b4ef07eea5182c4eaef935
==============================================
Status : NOK
Failure reason : rpcbind-0.2.0
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-11-07 23:40:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/d910aea68157726e27b4ef07eea5182c4eaef935/build-end.log
Complete log : http://autobuild.buildroot.net/results/d910aea68157726e27b4ef07eea5182c4eaef935/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d910aea68157726e27b4ef07eea5182c4eaef935/config
Defconfig : http://autobuild.buildroot.net/results/d910aea68157726e27b4ef07eea5182c4eaef935/defconfig
Build d2ed7e6999cac634ba23b5b775fa71d3e7b06a81
==============================================
Status : NOK
Failure reason : perl-5.16.1
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-11-07 23:41:28
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/d2ed7e6999cac634ba23b5b775fa71d3e7b06a81/build-end.log
Complete log : http://autobuild.buildroot.net/results/d2ed7e6999cac634ba23b5b775fa71d3e7b06a81/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d2ed7e6999cac634ba23b5b775fa71d3e7b06a81/config
Defconfig : http://autobuild.buildroot.net/results/d2ed7e6999cac634ba23b5b775fa71d3e7b06a81/defconfig
Build 344b36233f64620f187b8eac1974b58e701a2445
==============================================
Status : NOK
Failure reason : qt-4.8.3
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-11-07 23:45:36
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d727a4da444cb0001f8b5f73e73809780542be65
End of log : http://autobuild.buildroot.net/results/344b36233f64620f187b8eac1974b58e701a2445/build-end.log
Complete log : http://autobuild.buildroot.net/results/344b36233f64620f187b8eac1974b58e701a2445/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/344b36233f64620f187b8eac1974b58e701a2445/config
Defconfig : http://autobuild.buildroot.net/results/344b36233f64620f187b8eac1974b58e701a2445/defconfig
--
http://autobuild.buildroot.net
^ permalink raw reply
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-11-07
From: Peter Korsgaard @ 2012-11-08 7:44 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121108073352.3038352C090@lolut.humanoidz.org>
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> Hello,
Thomas> On 2012-11-07, 252 random build tests have been done and
Thomas> submitted on autobuild.buildroot.net.
Thomas> 35 builds have been successful
Thomas> 217 builds have failed
Which is crap :/
2012.11-rc1 is already late, so we'll have to do something pretty
soon. The biggest issues are afaik the perl and tirpc stuff, so I think
the best way forward is to:
- mark perl as broken for now
- revert auto* back to use microperl
- disallow tirpc when toolchain has rpc
I'll try to find time to do that this week.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH 1/6] Add config file for the snowball board
From: Grégory Hermant @ 2012-11-08 8:28 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50905017.8080301@mind.be>
Le 30/10/2012 23:09, Arnout Vandecappelle a ?crit :
> On 10/29/12 09:41, Gregory Hermant wrote:
>>
>> Signed-off-by: Gregory Hermant<gregory.hermant@calao-systems.com>
>> ---
>> configs/calao_snowball_defconfig | 52 ++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 52 insertions(+)
>> create mode 100644 configs/calao_snowball_defconfig
>>
>> diff --git a/configs/calao_snowball_defconfig b/configs/calao_snowball_defconfig
>> new file mode 100644
>> index 0000000..68f0a51
>> --- /dev/null
>> +++ b/configs/calao_snowball_defconfig
>> @@ -0,0 +1,52 @@
>> +BR2_arm=y
>> +BR2_cortex_a9=y
>> +BR2_TOOLCHAIN_EXTERNAL=y
>
> We don't use external toolchains for the defconfigs, unless the internal
> one doesn't work for some reason (e.g. microblaze).
>
Until now the ubuntu images available on the igloo community website were
built from the linaro toolchain that's why i used the external linaro toolchain.
I will change the config for the buildroot one.
>> +BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA2"
>> +BR2_PACKAGE_BUSYBOX_CONFIG="board/calao/snowball/busybox-1.20.x.config"
>
> This file should be created in the same patch, otherwise this defconfig
> isn't working.
>
> Also, is it really necessary to have a custom busybox config?
>
I need to enable the mdev loading firmware support.
I will change the snowball defconfig file in order to use mdev.
>> +BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
>> +BR2_PACKAGE_BZIP2=y
>> +BR2_PACKAGE_FBSET=y
>> +BR2_PACKAGE_FBTERM=y
>> +BR2_PACKAGE_FBV=y
>> +BR2_PACKAGE_QT=y
>> +BR2_PACKAGE_QT_DEMOS=y
>> +BR2_PACKAGE_QT_LICENSE_APPROVED=y
>> +BR2_PACKAGE_QT_MOUSE_PC=y
>> +BR2_PACKAGE_QT_MOUSE_LINUXTP=y
>> +BR2_PACKAGE_QT_MOUSE_LINUXINPUT=y
>> +BR2_PACKAGE_QT_MOUSE_TSLIB=y
>> +BR2_PACKAGE_MINICOM=y
>> +BR2_PACKAGE_LUA=y
>> +BR2_PACKAGE_OPENSSL=y
>> +BR2_PACKAGE_SQLITE=y
>> +BR2_PACKAGE_LIBELF=y
>> +BR2_PACKAGE_PCRE=y
>> +BR2_PACKAGE_LIBXML2=y
>
> We don't select any packages in a defconfig, unless they're required
> for booting correctly. We certainly don't want to build Qt!
I thought it could be interesting for the end user to have QT built-in in the default rootfs.
I will remove QT from the snowball config file.
>
>> +BR2_PACKAGE_HDMISERVICE=y
>> +BR2_PACKAGE_SNOWBALL_FIRMWARE=y
>> +BR2_PACKAGE_SNOWBALL_INIT=y
>
> These packages don't exist yet; the patches adding them should come
> before this patch.
>
> Note that for these, it could be relevant to include them in the
> defconfig - they're not strictly required for booting, but I guess
> you want them in practice.
>
>> +BR2_PACKAGE_BLUEZ_UTILS=y
>> +BR2_PACKAGE_IW=y
>> +BR2_PACKAGE_WGET=y
>> +BR2_PACKAGE_WIRELESS_TOOLS=y
>> +BR2_PACKAGE_WIRELESS_TOOLS_LIB=y
>> +BR2_PACKAGE_WPA_SUPPLICANT=y
>> +BR2_PACKAGE_WPA_SUPPLICANT_EAP=y
>> +BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
>> +BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
>> +BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT=y
>> +BR2_PACKAGE_WPA_SUPPLICANT_WPS=y
>> +BR2_TARGET_ROOTFS_TAR_GZIP=y
>> +BR2_TARGET_UBOOT=y
>> +BR2_TARGET_UBOOT_BOARDNAME="u8500_snowball"
>> +BR2_TARGET_UBOOT_CUSTOM_GIT=y
>> +BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="git://igloocommunity.org/git/boot/u-boot-ux500.git"
>> +BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="master"
>> +BR2_LINUX_KERNEL=y
>> +BR2_LINUX_KERNEL_CUSTOM_GIT=y
>> +BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="git://igloocommunity.org/git/kernel/igloo-kernel.git"
>> +BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="stable-linux-ux500-3.4"
>> +BR2_LINUX_KERNEL_PATCH="board/calao/snowball/linux-3.4.patch"
>
> This patch is more than a month old - how come it's not yet accepted
> upstream?
I don't know exactly what is the status of the snowball support in the mainline kernel.
As i prefer to use the latest stable release available from igloo, i need to add this patch.
>
>> +BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
>> +BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/calao/snowball/linux-3.4.config"
>
> Any reason why the u8500_defconfig isn't appropriate?
>
You are right i can use the default defconfig.
I had modified the config file for QT (input devices enabled) but anyway the one attached in the patch serie
didn't match my test config.
>> +BR2_LINUX_KERNEL_INSTALL_TARGET=y
>
> Why?
>
To load the kernel from the rootfs partition hence the boot partition
could be removed.
>
> Regards,
> Arnout
Thanks for your feedback.
BR,
gregory
^ permalink raw reply
* [Buildroot] [PATCH v2] package: add bcusdk
From: Arnout Vandecappelle @ 2012-11-08 8:34 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352192728-4816-2-git-send-email-gregory.hermant@calao-systems.com>
BTW, we usually give such patches the title
bcusdk: new package
On 11/06/12 10:05, Gregory Hermant wrote:
> Signed-off-by: Gregory Hermant<gregory.hermant@calao-systems.com>
[snip]
> diff --git a/package/bcusdk/Config.in b/package/bcusdk/Config.in
> new file mode 100644
> index 0000000..c7b1b95
> --- /dev/null
> +++ b/package/bcusdk/Config.in
> @@ -0,0 +1,11 @@
> +config BR2_PACKAGE_BCUSDK
> + bool "bcusdk"
> + depends on BR2_INSTALL_LIBSTDCPP
> + select BR2_PACKAGE_LIBPTHSEM
... and the architecture dependencies of libpthsem...
> + help
> + A free development environment for BCU1 and BCU2
It would be nice if there was a description of what BCU is.
Otherwise, it looks good!
Regards,
Arnout
[snip]
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH v3 01/10] manual: add section about storing the configuration.
From: Arnout Vandecappelle @ 2012-11-08 8:36 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Reuse part of board-support.txt, and remove that one because it
was unused.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
v2: mention LINUX_KERNEL_PATCH also in in-tree documentation
(Samuel Martin)
v3:
- Removed the section about out-of-tree configuration.
- Added barebox config.
- Comments from Luca.
It's probably Acked-by Luca, but since my changes are pretty
heavy (removing a whole section, adding barebox) I didn't include
the ack.
---
docs/manual/adding-packages-directory.txt | 1 +
docs/manual/board-support.txt | 35 -------
docs/manual/customize-store.txt | 158 +++++++++++++++++++++++++++++
docs/manual/customize.txt | 2 +
4 files changed, 161 insertions(+), 35 deletions(-)
delete mode 100644 docs/manual/board-support.txt
create mode 100644 docs/manual/customize-store.txt
diff --git a/docs/manual/adding-packages-directory.txt b/docs/manual/adding-packages-directory.txt
index 4a96415..ce9c5ce 100644
--- a/docs/manual/adding-packages-directory.txt
+++ b/docs/manual/adding-packages-directory.txt
@@ -147,6 +147,7 @@ package.
The +.mk+ file
~~~~~~~~~~~~~~
+[[adding-packages-mk]]
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/board-support.txt b/docs/manual/board-support.txt
deleted file mode 100644
index d1d9d63..0000000
--- a/docs/manual/board-support.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-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
-work.
-
-To do so, you need to create a normal Buildroot configuration that
-builds a basic system for the hardware: toolchain, kernel, bootloader,
-filesystem and a simple Busybox-only userspace. No specific package
-should be selected: the configuration should be as minimal as
-possible, and should only build a working basic Busybox system for the
-target platform. You can of course use more complicated configurations
-for your internal projects, but the Buildroot project will only
-integrate basic board configurations. This is because package
-selections are highly application-specific.
-
-Once you have a known working configuration, run +make
-savedefconfig+. This will generate a minimal +defconfig+ file at the
-root of the Buildroot source tree. Move this file into the +configs/+
-directory, and rename it +MYBOARD_defconfig+.
-
-It is recommended to use as much as possible upstream versions of the
-Linux kernel and bootloaders, and to use as much as possible default
-kernel and bootloader configurations. If they are incorrect for your
-platform, we encourage you to send fixes to the corresponding upstream
-projects.
-
-However, in the mean time, you may want to store kernel or bootloader
-configuration or patches specific to your target platform. To do so,
-create a directory +board/MANUFACTURER+ and a subdirectory
-+board/MANUFACTURER/BOARDNAME+ (after replacing, of course,
-MANUFACTURER and BOARDNAME with the appropriate values, in lower case
-letters). You can then store your patches and configurations in these
-directories, and reference them from the main Buildroot configuration.
diff --git a/docs/manual/customize-store.txt b/docs/manual/customize-store.txt
new file mode 100644
index 0000000..a62d3e2
--- /dev/null
+++ b/docs/manual/customize-store.txt
@@ -0,0 +1,158 @@
+Storing the configuration
+-------------------------
+[[customize-store]]
+
+When you have a buildroot configuration that you are satisfied with and
+you want to share it with others, put it under revision control or move
+on to a different buildroot project, you need to store the configuration
+so it can be rebuilt later. The configuration that needs to be stored
+consists of the buildroot configuration, the configuration files for
+packages that you use (kernel, busybox, uClibc, ...), and your rootfs
+modifications.
+
+Basics for storing the configuration
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+[[customize-store-basics]]
+
+Buildroot configuration
+^^^^^^^^^^^^^^^^^^^^^^^
+
+For storing the buildroot configuration itself, buildroot offers the
+following command: +make savedefconfig+
+
+This strips the buildroot configuration down by removing configuration
+options that are at their default value. The result is stored in a file
+called +defconfig+. Copy this file to +foo_defconfig+ in the +configs+
+directory. The configuration can then be rebuilt by running
++make foo_defconfig+
+
+Alternatively, you can copy the file to any other place and rebuild with
++make defconfig BR2_DEFCONFIG=<path-to-defconfig-file>+.
+
+
+Other package configuration
+^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+The configuration files for busybox, the linux kernel, barebox, uClibc and
+crosstool-NG should be stored as well. For each of these, a
+buildroot configuration option exists to point to an input configuration
+file, e.g. +BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE+. To save their
+configuration, set those configuration options to a path outside
+your output directory, e.g. +board/<manufacturer>/<boardname>/linux.config+.
+Then, copy the configuration files to that path.
+
+Make sure that you create a configuration file 'before' changing
+the +BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE+ etc. options. Otherwise,
+buildroot will try to access this config file, which doesn't exist
+yet, and will fail. You can create the configuration file by running
++make linux-menuconfig+ etc.
+
+Buildroot provides a few helper targets to make the saving of
+configuration files easier.
+
+* +make linux-update-defconfig+ saves the linux configuration to the
+ path specified by +BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE+. It
+ simplifies the config file by removing default values. However,
+ this only works with kernels starting from 2.6.33. For earlier
+ kernels, use +make linux-update-config+.
+* +make busybox-update-config+ saves the busybox configuration to the
+ path specified by +BR2_PACKAGE_BUSYBOX_CONFIG+.
+* +make uclibc-update-config+ saves the uClibc configuration to the
+ path specified by +BR2_UCLIBC_CONFIG+.
+* +make barebox-update-defconfig+ saves the barebox configuration to the
+ path specified by +BR2_TARGET_BAREBOX_CUSTOM_CONFIG_FILE+.
+* For crosstool-NG and at91bootstrap3 and no helper exists so you
+ have to copy the config file manually to +BR2_TOOLCHAIN_CTNG_CONFIG+,
+ resp. +BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE+.
+
+
+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
+work.
+
+To do so, you need to create a normal Buildroot configuration that
+builds a basic system for the hardware: toolchain, kernel, bootloader,
+filesystem and a simple Busybox-only userspace. No specific package
+should be selected: the configuration should be as minimal as
+possible, and should only build a working basic Busybox system for the
+target platform. You can of course use more complicated configurations
+for your internal projects, but the Buildroot project will only
+integrate basic board configurations. This is because package
+selections are highly application-specific.
+
+Once you have a known working configuration, run +make
+savedefconfig+. This will generate a minimal +defconfig+ file at the
+root of the Buildroot source tree. Move this file into the +configs/+
+directory, and rename it +<boardname>_defconfig+.
+
+It is recommended to use as much as possible upstream versions of the
+Linux kernel and bootloaders, and to use as much as possible default
+kernel and bootloader configurations. If they are incorrect for your
+platform, we encourage you to send fixes to the corresponding upstream
+projects.
+
+However, in the mean time, you may want to store kernel or bootloader
+configuration or patches specific to your target platform. To do so,
+create a directory +board/<manufacturer>+ and a subdirectory
++board/<manufacturer>/<boardname>+. You can then store your patches
+and configurations in these directories, and reference them from the main
+Buildroot configuration.
+
+
+Step-by-step instructions for storing configuration
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+To store the configuration for a specific product, device or
+application, it is advisable to use the same conventions as for the
+board support: put the buildroot defconfig in the +configs+ directory,
+and any other files in a subdirectory of the +boards+ directory. This
+section gives step-by-step instructions about how to do that. Of course,
+you can skip the steps that are not relevant for your use case.
+
+1. +make menuconfig+ to configure toolchain, packages and kernel.
+1. +make linux-menuconfig+ to update the kernel config, similar for
+ other configuration.
+1. +mkdir -p board/<manufacturer>/<boardname>+
+1. Set the following options to +board/<manufacturer>/<boardname>/<package>.config+
+ (as far as they are relevant):
+ * +BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE+
+ * +BR2_PACKAGE_BUSYBOX_CONFIG+
+ * +BR2_TOOLCHAIN_CTNG_CONFIG+
+ * +BR2_UCLIBC_CONFIG+
+ * +BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE+
+ * +BR2_TARGET_BAREBOX_CUSTOM_CONFIG_FILE+
+1. Write the configuration files:
+ * +make linux-update-defconfig+
+ * +make busybox-update-config+
+ * +cp <output>/build/build-toolchain/.config board/<manufacturer>/<boardname>/ctng.config+
+ * +make uclibc-update-config+
+ * +cp <output>/build/at91bootstrap3-*/.config board/<manufacturer>/<boardname>/at91bootstrap3.config+
+ * +make barebox-update-defconfig+
+1. Create +board/<manufacturer>/<boardname>/fs-overlay/+ and fill it
+ with additional files you need on your rootfs, e.g.
+ +board/<manufacturer>/<boardname>/fs-overlay/etc/inittab+.
+1. Create a post-build script
+ +board/<manufacturer>/<boardname>/post-build.sh+. It should contain
+ the following command:
++
+------------
+rsync -a --exclude .empty --exclude '*~' ${0%/*}/fs-overlay $1
+------------
++
+1. Set +BR2_ROOTFS_POST_BUILD_SCRIPT+ to +board/<manufacturer>/<boardname>/post-build.sh+
+1. If additional setuid permissions have to be set or device nodes have
+ to be created, create +board/<manufacturer>/<boardname>/device_table.txt+
+ and add that path to +BR2_ROOTFS_DEVICE_TABLE+.
+1. +make savedefconfig+ to save the buildroot configuration.
+1. +cp defconfig configs/<boardname>_defconfig+
+1. To add patches to the linux build, set +BR2_LINUX_KERNEL_PATCH+ to
+ +board/<manufacturer>/<boardname>/patches/linux/+ and add your
+ patches in that directory. Each patch should be called
+ +linux-<num>-<description>.patch+. Similar for U-Boot, barebox,
+ at91bootstrap and at91bootstrap3.
+1. If you need modifications to other packages, or if you need to add
+ packages, do that directly in the +packages/+ directory, following the
+ instructions in xref:adding-packages[].
diff --git a/docs/manual/customize.txt b/docs/manual/customize.txt
index e8235de..6bd5811 100644
--- a/docs/manual/customize.txt
+++ b/docs/manual/customize.txt
@@ -10,3 +10,5 @@ include::customize-uclibc-config.txt[]
include::customize-kernel-config.txt[]
include::customize-toolchain.txt[]
+
+include::customize-store.txt[]
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH v3 02/10] target/generic: add filesystem overlay option
From: Arnout Vandecappelle @ 2012-11-08 8:36 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352363776-23638-1-git-send-email-arnout@mind.be>
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
The filesystem overlay is a tree that is copied over the target fs
after building everything - which is currently usually done in the
post-build script.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
---
v3: keep the custom skeleton documentation
v2: don't deprecate custom skeleton
---
Makefile | 9 +++++++++
docs/manual/customize-rootfs.txt | 15 ++++++++++-----
docs/manual/customize-store.txt | 13 +++++--------
system/Config.in | 11 +++++++++++
4 files changed, 35 insertions(+), 13 deletions(-)
diff --git a/Makefile b/Makefile
index c526fe1..e6eb379 100644
--- a/Makefile
+++ b/Makefile
@@ -464,6 +464,15 @@ endif
echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
) > $(TARGET_DIR)/etc/os-release
+ @for dir in $(call qstrip,$(BR2_ROOTFS_OVERLAY)); do \
+ if [ -d $${dir} ]; then \
+ $(call MESSAGE,"Copying overlay $${dir}"); \
+ rsync -a \
+ --exclude .svn --exclude .git --exclude .hg --exclude '*~' \
+ $${dir}/ $(TARGET_DIR); \
+ fi \
+ done
+
ifneq ($(BR2_ROOTFS_POST_BUILD_SCRIPT),"")
@$(call MESSAGE,"Executing post-build script")
$(BR2_ROOTFS_POST_BUILD_SCRIPT) $(TARGET_DIR)
diff --git a/docs/manual/customize-rootfs.txt b/docs/manual/customize-rootfs.txt
index 44007c7..9be23ae 100644
--- a/docs/manual/customize-rootfs.txt
+++ b/docs/manual/customize-rootfs.txt
@@ -1,5 +1,6 @@
Customizing the generated target filesystem
-------------------------------------------
+[customize-rootfs]
There are a few ways to customize the resulting target filesystem:
@@ -18,16 +19,20 @@ There are a few ways to customize the resulting target filesystem:
skeleton are copied to output/target before any package
installation.
+* Create a filesystem overlay: a tree of files that are copied directly
+ over the target filesystem after it has been built. Set
+ +BR2_ROOTFS_OVERLAY+ to the top of the tree. +.git+, +.svn+,
+ +.hg+ directories and files ending with +~+ are excluded.
+
* In the Buildroot configuration, you can specify the path to a
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.
+ remove or modify any file in 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.
* 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
diff --git a/docs/manual/customize-store.txt b/docs/manual/customize-store.txt
index a62d3e2..aa57660 100644
--- a/docs/manual/customize-store.txt
+++ b/docs/manual/customize-store.txt
@@ -134,15 +134,12 @@ you can skip the steps that are not relevant for your use case.
1. Create +board/<manufacturer>/<boardname>/fs-overlay/+ and fill it
with additional files you need on your rootfs, e.g.
+board/<manufacturer>/<boardname>/fs-overlay/etc/inittab+.
+ Set +BR2_ROOTFS_OVERLAY+
+ to +board/<manufacturer>/<boardname>/fs-overlay+.
1. Create a post-build script
- +board/<manufacturer>/<boardname>/post-build.sh+. It should contain
- the following command:
-+
-------------
-rsync -a --exclude .empty --exclude '*~' ${0%/*}/fs-overlay $1
-------------
-+
-1. Set +BR2_ROOTFS_POST_BUILD_SCRIPT+ to +board/<manufacturer>/<boardname>/post-build.sh+
+ +board/<manufacturer>/<boardname>/post-build.sh+. Set
+ +BR2_ROOTFS_POST_BUILD_SCRIPT+ to
+ +board/<manufacturer>/<boardname>/post-build.sh+
1. If additional setuid permissions have to be set or device nodes have
to be created, create +board/<manufacturer>/<boardname>/device_table.txt+
and add that path to +BR2_ROOTFS_DEVICE_TABLE+.
diff --git a/system/Config.in b/system/Config.in
index 10c9d9d..1859be6 100644
--- a/system/Config.in
+++ b/system/Config.in
@@ -166,6 +166,17 @@ config BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW
endif # BR2_ROOTFS_SKELETON_DEFAULT
+config BR2_ROOTFS_OVERLAY
+ string "Root filesystem overlay directories"
+ default ""
+ help
+ Specify a list of directories that are copied over the target
+ root filesystem after the build has finished and before it is
+ packed into the selected filesystem images.
+
+ They are copied as-is into the rootfs, excluding files ending with
+ ~ and .git, .svn and .hg directories.
+
config BR2_ROOTFS_POST_BUILD_SCRIPT
string "Custom script to run before creating filesystem images"
default ""
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH v3 03/10] ctng: add ctng-update-config target
From: Arnout Vandecappelle @ 2012-11-08 8:36 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352363776-23638-1-git-send-email-arnout@mind.be>
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Analogous to linux-update-config and friends.
Also update documentation.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
---
docs/manual/customize-store.txt | 11 ++++++-----
toolchain/toolchain-crosstool-ng/crosstool-ng.mk | 3 +++
2 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/docs/manual/customize-store.txt b/docs/manual/customize-store.txt
index aa57660..3eb76ef 100644
--- a/docs/manual/customize-store.txt
+++ b/docs/manual/customize-store.txt
@@ -59,12 +59,13 @@ configuration files easier.
path specified by +BR2_PACKAGE_BUSYBOX_CONFIG+.
* +make uclibc-update-config+ saves the uClibc configuration to the
path specified by +BR2_UCLIBC_CONFIG+.
+* +make ctng-update-config+ saves the crosstool-NG configuration to the
+ patch specified by +BR2_TOOLCHAIN_CTNG_CONFIG+.
* +make barebox-update-defconfig+ saves the barebox configuration to the
path specified by +BR2_TARGET_BAREBOX_CUSTOM_CONFIG_FILE+.
-* For crosstool-NG and at91bootstrap3 and no helper exists so you
- have to copy the config file manually to +BR2_TOOLCHAIN_CTNG_CONFIG+,
- resp. +BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE+.
-
+* For at91bootstrap3, no helper exists so you
+ have to copy the config file manually to
+ +BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE+.
Creating your own board support
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -127,7 +128,7 @@ you can skip the steps that are not relevant for your use case.
1. Write the configuration files:
* +make linux-update-defconfig+
* +make busybox-update-config+
- * +cp <output>/build/build-toolchain/.config board/<manufacturer>/<boardname>/ctng.config+
+ * +make ctng-update-config+
* +make uclibc-update-config+
* +cp <output>/build/at91bootstrap3-*/.config board/<manufacturer>/<boardname>/at91bootstrap3.config+
* +make barebox-update-defconfig+
diff --git a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
index 5f9119d..85ca71e 100644
--- a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
+++ b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
@@ -397,3 +397,6 @@ ctng-menuconfig: $(CTNG_DIR)/.config
$(call ctng-oldconfig,$<)
$(call ctng-check-config-changed,$<,$<.timestamp)
$(Q)rm -f $<.timestamp
+
+ctng-update-config: $(CTNG_DIR)/.config
+ cp -f $< $(CTNG_CONFIG_FILE)
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH v3 04/10] busybox: busybox-update-config should depend on busybox-configure
From: Arnout Vandecappelle @ 2012-11-08 8:36 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352363776-23638-1-git-send-email-arnout@mind.be>
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Before the config file can be copied, it has to exist. The
other xxx-update-config targets do this as well.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
---
v2: small spelling mistake in commit message
---
package/busybox/busybox.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk
index 549e150..14a0ea2 100644
--- a/package/busybox/busybox.mk
+++ b/package/busybox/busybox.mk
@@ -218,5 +218,5 @@ busybox-menuconfig busybox-xconfig busybox-gconfig: busybox-patch
rm -f $(BUSYBOX_DIR)/.stamp_built
rm -f $(BUSYBOX_DIR)/.stamp_target_installed
-busybox-update-config:
+busybox-update-config: busybox-configure
cp -f $(BUSYBOX_BUILD_CONFIG) $(BUSYBOX_CONFIG_FILE)
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH v3 05/10] at91bootstrap3: add -update-config target
From: Arnout Vandecappelle @ 2012-11-08 8:36 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352363776-23638-1-git-send-email-arnout@mind.be>
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
---
v3: update documentation as well
---
boot/at91bootstrap3/at91bootstrap3.mk | 7 +++++++
docs/manual/customize-store.txt | 6 +++---
2 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/boot/at91bootstrap3/at91bootstrap3.mk b/boot/at91bootstrap3/at91bootstrap3.mk
index 74f08e8..bb6ef09 100644
--- a/boot/at91bootstrap3/at91bootstrap3.mk
+++ b/boot/at91bootstrap3/at91bootstrap3.mk
@@ -65,3 +65,10 @@ $(error No at91bootstrap3 configuration file specified, check your BR2_TARGET_AT
endif
endif
endif
+
+ifeq ($(BR2_TARGET_AT91BOOTSTRAP3_USE_CUSTOM_CONFIG),y)
+at91bootstrap3-update-config: at91bootstrap3-configure
+ cp -f $(AT91BOOTSTRAP3_DIR)/.config $(AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE)
+else
+at91bootstrap3-update-config: ;
+endif
diff --git a/docs/manual/customize-store.txt b/docs/manual/customize-store.txt
index 3eb76ef..6c799ee 100644
--- a/docs/manual/customize-store.txt
+++ b/docs/manual/customize-store.txt
@@ -61,11 +61,11 @@ configuration files easier.
path specified by +BR2_UCLIBC_CONFIG+.
* +make ctng-update-config+ saves the crosstool-NG configuration to the
patch specified by +BR2_TOOLCHAIN_CTNG_CONFIG+.
+* +make at91bootstrap3-update-config+ saves the at91bootstrap3
+ configuration to the path specified by
+ +BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE+.
* +make barebox-update-defconfig+ saves the barebox configuration to the
path specified by +BR2_TARGET_BAREBOX_CUSTOM_CONFIG_FILE+.
-* For at91bootstrap3, no helper exists so you
- have to copy the config file manually to
- +BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE+.
Creating your own board support
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH v3 06/10] Add update-all-configs target
From: Arnout Vandecappelle @ 2012-11-08 8:36 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352363776-23638-1-git-send-email-arnout@mind.be>
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
The update-all-config starget updates all the external configuration
file with their current values. This includes:
- buildroot
- busybox
- linux
- crosstool-ng
- uClibc
- at91bootstrap3
- barebox
Linux and buildroot are saved as defconfigs. For Linux, this means
that it will fail on kernels before 2.6.33 (when the savedefconfig
was added to Linux Kconfig).
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
---
v3: - added barebox
- renamed to update-all-configs (Luca Ceresoli)
---
Makefile | 7 +++++++
boot/at91bootstrap3/at91bootstrap3.mk | 1 +
boot/barebox/barebox.mk | 1 +
docs/manual/customize-store.txt | 11 +++--------
linux/linux.mk | 2 ++
package/busybox/busybox.mk | 4 ++++
toolchain/toolchain-crosstool-ng/crosstool-ng.mk | 4 ++++
toolchain/uClibc/uclibc.mk | 4 ++++
8 files changed, 26 insertions(+), 8 deletions(-)
diff --git a/Makefile b/Makefile
index e6eb379..0e9ae92 100644
--- a/Makefile
+++ b/Makefile
@@ -549,6 +549,10 @@ legal-info: dirs legal-info-clean legal-info-prepare $(REDIST_SOURCES_DIR) \
show-targets:
@echo $(TARGETS)
+# UPDATE_ALL_CONFIGS_TARGETS is set by the individual packages that have a
+# save*config target.
+update-all-configs: savedefconfig $(UPDATE_ALL_CONFIGS_TARGETS)
+
else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
all: menuconfig
@@ -701,6 +705,9 @@ help:
@echo ' defconfig - New config with default answer to all options'
@echo ' BR2_DEFCONFIG, if set, is used as input'
@echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
+ @echo ' update-all-configs - Update all configuration targets that have an input:'
+ @echo ' buildroot, busybox, linux, crosstool-ng, uClibc,
+ @echo ' at91bootstrap3, barebox'
@echo ' allyesconfig - New config where all options are accepted with yes'
@echo ' allnoconfig - New config where all options are answered with no'
@echo ' randpackageconfig - New config with random answer to package options'
diff --git a/boot/at91bootstrap3/at91bootstrap3.mk b/boot/at91bootstrap3/at91bootstrap3.mk
index bb6ef09..902c153 100644
--- a/boot/at91bootstrap3/at91bootstrap3.mk
+++ b/boot/at91bootstrap3/at91bootstrap3.mk
@@ -69,6 +69,7 @@ endif
ifeq ($(BR2_TARGET_AT91BOOTSTRAP3_USE_CUSTOM_CONFIG),y)
at91bootstrap3-update-config: at91bootstrap3-configure
cp -f $(AT91BOOTSTRAP3_DIR)/.config $(AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE)
+UPDATE_ALL_CONFIGS_TARGETS += at91bootstrap3-update-config
else
at91bootstrap3-update-config: ;
endif
diff --git a/boot/barebox/barebox.mk b/boot/barebox/barebox.mk
index a025d5f..bda2759 100644
--- a/boot/barebox/barebox.mk
+++ b/boot/barebox/barebox.mk
@@ -106,6 +106,7 @@ barebox-update-config: barebox-configure $(BAREBOX_DIR)/.config
barebox-update-defconfig: barebox-savedefconfig
cp -f $(BAREBOX_DIR)/defconfig $(BR2_TARGET_BAREBOX_CUSTOM_CONFIG_FILE)
+UPDATE_ALL_CONFIGS_TARGETS += barebox-update-defconfig
else
barebox-update-config: ;
barebox-update-defconfig: ;
diff --git a/docs/manual/customize-store.txt b/docs/manual/customize-store.txt
index 6c799ee..e1bce3a 100644
--- a/docs/manual/customize-store.txt
+++ b/docs/manual/customize-store.txt
@@ -66,6 +66,8 @@ configuration files easier.
+BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE+.
* +make barebox-update-defconfig+ saves the barebox configuration to the
path specified by +BR2_TARGET_BAREBOX_CUSTOM_CONFIG_FILE+.
+* +make update-all-configs+ updates all of the above configuration files
+ for which you have defined the corresponding +_CONFIG+ option.
Creating your own board support
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -125,13 +127,6 @@ you can skip the steps that are not relevant for your use case.
* +BR2_UCLIBC_CONFIG+
* +BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE+
* +BR2_TARGET_BAREBOX_CUSTOM_CONFIG_FILE+
-1. Write the configuration files:
- * +make linux-update-defconfig+
- * +make busybox-update-config+
- * +make ctng-update-config+
- * +make uclibc-update-config+
- * +cp <output>/build/at91bootstrap3-*/.config board/<manufacturer>/<boardname>/at91bootstrap3.config+
- * +make barebox-update-defconfig+
1. Create +board/<manufacturer>/<boardname>/fs-overlay/+ and fill it
with additional files you need on your rootfs, e.g.
+board/<manufacturer>/<boardname>/fs-overlay/etc/inittab+.
@@ -144,7 +139,7 @@ you can skip the steps that are not relevant for your use case.
1. If additional setuid permissions have to be set or device nodes have
to be created, create +board/<manufacturer>/<boardname>/device_table.txt+
and add that path to +BR2_ROOTFS_DEVICE_TABLE+.
-1. +make savedefconfig+ to save the buildroot configuration.
+1. Save the configuration files: +make update-all-configs+
1. +cp defconfig configs/<boardname>_defconfig+
1. To add patches to the linux build, set +BR2_LINUX_KERNEL_PATCH+ to
+board/<manufacturer>/<boardname>/patches/linux/+ and add your
diff --git a/linux/linux.mk b/linux/linux.mk
index c4bdf90..7273ce6 100644
--- a/linux/linux.mk
+++ b/linux/linux.mk
@@ -151,6 +151,8 @@ ifeq ($(BR2_LINUX_KERNEL_USE_DEFCONFIG),y)
KERNEL_SOURCE_CONFIG = $(KERNEL_ARCH_PATH)/configs/$(call qstrip,$(BR2_LINUX_KERNEL_DEFCONFIG))_defconfig
else ifeq ($(BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG),y)
KERNEL_SOURCE_CONFIG = $(BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE)
+# savedefconfig requires a kernel >= 2.6.33
+UPDATE_ALL_CONFIGS_TARGETS += linux-update-defconfig
endif
define LINUX_CONFIGURE_CMDS
diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk
index 14a0ea2..fb67b71 100644
--- a/package/busybox/busybox.mk
+++ b/package/busybox/busybox.mk
@@ -220,3 +220,7 @@ busybox-menuconfig busybox-xconfig busybox-gconfig: busybox-patch
busybox-update-config: busybox-configure
cp -f $(BUSYBOX_BUILD_CONFIG) $(BUSYBOX_CONFIG_FILE)
+
+ifneq ($(BUSYBOX_CONFIG_FILE),)
+UPDATE_ALL_CONFIGS_TARGETS += busybox-update-config
+endif
diff --git a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
index 85ca71e..f8dc88a 100644
--- a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
+++ b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
@@ -400,3 +400,7 @@ ctng-menuconfig: $(CTNG_DIR)/.config
ctng-update-config: $(CTNG_DIR)/.config
cp -f $< $(CTNG_CONFIG_FILE)
+
+ifneq ($(CTNG_CONFIG_FILE),)
+UPDATE_ALL_CONFIGS_TARGETS += ctng-update-config
+endif
diff --git a/toolchain/uClibc/uclibc.mk b/toolchain/uClibc/uclibc.mk
index 8cf59bc..c6ee491 100644
--- a/toolchain/uClibc/uclibc.mk
+++ b/toolchain/uClibc/uclibc.mk
@@ -508,6 +508,10 @@ uclibc-oldconfig: $(UCLIBC_DIR)/.oldconfig
uclibc-update-config: uclibc-config
cp -f $(UCLIBC_DIR)/.config $(UCLIBC_CONFIG_FILE)
+ifneq ($(UCLIBC_CONFIG_FILE),)
+UPDATE_ALL_CONFIGS_TARGETS += uclibc-update-config
+endif
+
uclibc-configured: gcc_initial kernel-headers $(UCLIBC_DIR)/.configured
uclibc-configured-source: uclibc-source
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH v3 07/10] busybox: update-all-config shouldn't update default busybox config
From: Arnout Vandecappelle @ 2012-11-08 8:36 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352363776-23638-1-git-send-email-arnout@mind.be>
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
The new update-all-config target will update the busybox config file
if BR2_PACKAGE_BUSYBOX_CONFIG is set, even if it is set to the
default value in package/busybox/busybox-xxx.config.
To avoid this, set the default BR2_PACKAGE_BUSYBOX_CONFIG to empty,
and select a default to use in the .mk file.
Note that busybox-update-config will still overwrite the default
file in package/busybox/busybox-xxx.config - presumably it's
intentional.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
v3: Add comment explaining the magic in BUSYBOX_CONFIG_VERSION.
I don't remember anymore if we decided during the developer days
whether this patch was a good idea or not, and I can't find it in
the report. So I leave it up to Peter to decide.
---
package/busybox/Config.in | 7 ++-----
package/busybox/busybox.mk | 10 ++++++----
2 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/package/busybox/Config.in b/package/busybox/Config.in
index dedcf18..0b77872 100644
--- a/package/busybox/Config.in
+++ b/package/busybox/Config.in
@@ -40,15 +40,12 @@ config BR2_BUSYBOX_VERSION
config BR2_PACKAGE_BUSYBOX_CONFIG
string "BusyBox configuration file to use?"
- default "package/busybox/busybox-1.20.x.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT
- default "package/busybox/busybox-1.18.x.config" if BR2_BUSYBOX_VERSION_1_18_X
- default "package/busybox/busybox-1.19.x.config" if BR2_BUSYBOX_VERSION_1_19_X
- default "package/busybox/busybox-1.20.x.config" if BR2_BUSYBOX_VERSION_1_20_X
+ default ""
help
Some people may wish to use their own modified BusyBox configuration
file, and will specify their config file location with this option.
- Most people will just use the default BusyBox configuration file.
+ If left empty, a default configuration file is used.
config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
bool "Show packages that are also provided by busybox"
diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk
index fb67b71..a1a4b86 100644
--- a/package/busybox/busybox.mk
+++ b/package/busybox/busybox.mk
@@ -6,9 +6,12 @@
ifeq ($(BR2_PACKAGE_BUSYBOX_SNAPSHOT),y)
BUSYBOX_VERSION = snapshot
+BUSYBOX_CONFIG_VERSION = 1.20
BUSYBOX_SITE = http://www.busybox.net/downloads/snapshots
else
BUSYBOX_VERSION = $(call qstrip,$(BR2_BUSYBOX_VERSION))
+# Keep only the first two numbers of the version, e.g. 1.20.2 -> 1.20
+BUSYBOX_CONFIG_VERSION = $(subst $(space),.,$(wordlist 1,2,$(subst .,$(space),$(BUSYBOX_VERSION))))
BUSYBOX_SITE = http://www.busybox.net/downloads
endif
BUSYBOX_SOURCE = busybox-$(BUSYBOX_VERSION).tar.bz2
@@ -42,9 +45,8 @@ BUSYBOX_MAKE_OPTS = \
CONFIG_PREFIX="$(TARGET_DIR)" \
SKIP_STRIP=y
-ifndef BUSYBOX_CONFIG_FILE
- BUSYBOX_CONFIG_FILE = $(call qstrip,$(BR2_PACKAGE_BUSYBOX_CONFIG))
-endif
+BUSYBOX_CONFIG = $(call qstrip,$(BR2_PACKAGE_BUSYBOX_CONFIG))
+BUSYBOX_CONFIG_FILE = $(or $(wildcard $(BUSYBOX_CONFIG)),package/busybox/busybox-$(BUSYBOX_CONFIG_VERSION).x.config)
define BUSYBOX_PERMISSIONS
/bin/busybox f 4755 0 0 - - - - -
@@ -221,6 +223,6 @@ busybox-menuconfig busybox-xconfig busybox-gconfig: busybox-patch
busybox-update-config: busybox-configure
cp -f $(BUSYBOX_BUILD_CONFIG) $(BUSYBOX_CONFIG_FILE)
-ifneq ($(BUSYBOX_CONFIG_FILE),)
+ifneq ($(BUSYBOX_CONFIG),)
UPDATE_ALL_CONFIGS_TARGETS += busybox-update-config
endif
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH v3 08/10] crosstool-ng: update-all-configs shouldn't update default crosstool-ng config
From: Arnout Vandecappelle @ 2012-11-08 8:36 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352363776-23638-1-git-send-email-arnout@mind.be>
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
The new update-all-configs target will update the ctng config file
if BR2_TOOLCHAIN_CTNG_CONFIG is set, even if it is set to the
default value in toolchain/toolchain-crosstool-ng/crosstool-ng.config-xxx
To avoid this, set the default BR2_TOOLCHAIN_CTNG_CONFIG to empty,
and select a default to use in the .mk file.
Note that ctng-update-config will still overwrite the default
file in toolchain/toolchain-crosstool-ng/crosstool-ng.config-xxx -
presumably it's intentional.
Also factored out the often-qstripped BR2_TOOLCHAIN_CTNG_LIBC (thereby
adding a few missing qstrips).
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
---
v2: fix copy-paste error in commit message (Samuel Martin)
---
toolchain/toolchain-crosstool-ng/Config.in | 6 ++----
toolchain/toolchain-crosstool-ng/crosstool-ng.mk | 16 +++++++++-------
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/toolchain/toolchain-crosstool-ng/Config.in b/toolchain/toolchain-crosstool-ng/Config.in
index 9cd5ca5..e55b206 100644
--- a/toolchain/toolchain-crosstool-ng/Config.in
+++ b/toolchain/toolchain-crosstool-ng/Config.in
@@ -40,15 +40,13 @@ config BR2_TOOLCHAIN_CTNG_LIBC
config BR2_TOOLCHAIN_CTNG_CONFIG
string "crosstool-NG configuration file to use"
- default "toolchain/toolchain-crosstool-ng/crosstool-ng.config-uClibc" if BR2_TOOLCHAIN_CTNG_uClibc
- default "toolchain/toolchain-crosstool-ng/crosstool-ng.config-eglibc" if BR2_TOOLCHAIN_CTNG_eglibc
- default "toolchain/toolchain-crosstool-ng/crosstool-ng.config-glibc" if BR2_TOOLCHAIN_CTNG_glibc
+ default ""
help
Enter here the crosstool-NG's .config file to use.
To fine-tune your toolchain, you can also call:
make ctng-menuconfig
- If unsure, keep the default value.
+ If left empty, a default configuration file is used.
if BR2_TOOLCHAIN_CTNG_uClibc
diff --git a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
index f8dc88a..4b1faca 100644
--- a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
+++ b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk
@@ -9,9 +9,11 @@
# Internal variables
CTNG_DIR := $(BUILD_DIR)/build-toolchain
+CTNG_LIBC = $(call qstrip,$(BR2_TOOLCHAIN_CTNG_LIBC))
CTNG_UCLIBC_CONFIG_FILE := $(TOPDIR)/toolchain/uClibc/uClibc-0.9.33.config
-CTNG_CONFIG_FILE:=$(call qstrip,$(BR2_TOOLCHAIN_CTNG_CONFIG))
+CTNG_CONFIG = $(call qstrip,$(BR2_TOOLCHAIN_CTNG_CONFIG))
+CTNG_CONFIG_FILE = $(or $(wildcard $(CTNG_CONFIG)),toolchain/toolchain-crosstool-ng/crosstool-ng.config-$(CTNG_LIBC))
# Hack! ct-ng is in fact a Makefile script. As such, it accepts all
# make options, such as -C, which makes it uneeded to chdir prior
@@ -50,7 +52,7 @@ CTNG_LIBS_eglibc := $(CTNG_LIBS_glibc)
#--------------
# All that we need in /lib
-CTNG_LIBS_LIB += $(CTNG_LIBS_$(call qstrip,$(BR2_TOOLCHAIN_CTNG_LIBC)))
+CTNG_LIBS_LIB += $(CTNG_LIBS_$(CTNG_LIBC))
#--------------
# All that we need in /usr/lib
@@ -348,7 +350,7 @@ define ctng-oldconfig
$(call ctng,CT_IS_A_BACKEND=y \
CT_BACKEND_ARCH=$(CTNG_ARCH) \
CT_BACKEND_KERNEL=linux \
- CT_BACKEND_LIBC=$(BR2_TOOLCHAIN_CTNG_LIBC) \
+ CT_BACKEND_LIBC=$(CTNG_LIBC) \
oldconfig )
$(call ctng-fix-dot-config,$(1),$(CTNG_FIX_DOT_CONFIG_PATHS_SED))
endef
@@ -372,9 +374,9 @@ $(CTNG_DIR)/.config: $(CTNG_CONFIG_FILE) $(CONFIG_DIR)/.config
$(Q)if [ ! -f $@ ]; then \
mkdir -p "$(CTNG_DIR)"; \
libc="$$(awk -F '"' '$$1=="CT_LIBC=" { print $$2; }' "$<")"; \
- if [ "$${libc}" != "$(BR2_TOOLCHAIN_CTNG_LIBC)" ]; then \
+ if [ "$${libc}" != "$(CTNG_LIBC)" ]; then \
echo "* Inconsistency in crosstool-NG config file '$<'"; \
- echo "* - buildroot configured for '$(BR2_TOOLCHAIN_CTNG_LIBC)'"; \
+ echo "* - buildroot configured for '$(CTNG_LIBC)'"; \
echo "* - given config file for '$${libc}'"; \
exit 1; \
fi; \
@@ -392,7 +394,7 @@ ctng-menuconfig: $(CTNG_DIR)/.config
$(Q)$(call ctng,CT_IS_A_BACKEND=y \
CT_BACKEND_ARCH=$(CTNG_ARCH) \
CT_BACKEND_KERNEL=linux \
- CT_BACKEND_LIBC=$(BR2_TOOLCHAIN_CTNG_LIBC) \
+ CT_BACKEND_LIBC=$(CTNG_LIBC) \
menuconfig )
$(call ctng-oldconfig,$<)
$(call ctng-check-config-changed,$<,$<.timestamp)
@@ -401,6 +403,6 @@ ctng-menuconfig: $(CTNG_DIR)/.config
ctng-update-config: $(CTNG_DIR)/.config
cp -f $< $(CTNG_CONFIG_FILE)
-ifneq ($(CTNG_CONFIG_FILE),)
+ifneq ($(CTNG_CONFIG),)
UPDATE_ALL_CONFIGS_TARGETS += ctng-update-config
endif
--
1.7.10.4
^ permalink raw reply related
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox