* [Buildroot] [PATCH] linux: Support multiple device tree build
From: Maxime Ripard @ 2012-12-17 11:05 UTC (permalink / raw)
To: buildroot
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
---
linux/linux.mk | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/linux/linux.mk b/linux/linux.mk
index c4bdf90..c7d0099 100644
--- a/linux/linux.mk
+++ b/linux/linux.mk
@@ -187,10 +187,12 @@ endef
ifeq ($(BR2_LINUX_KERNEL_DTS_SUPPORT),y)
ifeq ($(BR2_LINUX_KERNEL_DTB_IS_SELF_BUILT),)
define LINUX_BUILD_DTB
- $(TARGET_MAKE_ENV) $(MAKE) $(LINUX_MAKE_FLAGS) -C $(@D) $(KERNEL_DTS_NAME).dtb
+ $(TARGET_MAKE_ENV) $(MAKE) $(LINUX_MAKE_FLAGS) -C $(@D) \
+ $(foreach dtbfile, $(call qstrip, $(KERNEL_DTS_NAME)), $(dtbfile).dtb)
endef
define LINUX_INSTALL_DTB
- cp $(KERNEL_ARCH_PATH)/boot/$(KERNEL_DTS_NAME).dtb $(BINARIES_DIR)/
+ $(foreach dtbfile, $(call qstrip, $(KERNEL_DTS_NAME)),
+ cp $(KERNEL_ARCH_PATH)/boot/$(dtbfile).dtb $(BINARIES_DIR)/)
endef
endif
endif
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH] [RFC] new target: live filesystem
From: Jeremy Rosen @ 2012-12-17 8:58 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354800968-16745-1-git-send-email-jeremy.rosen@openwide.fr>
Hello everybody
there is a little bit more work to do on this patch (mainly updating a few more places in the documentation) but i'd like to have a go/no-go before I do that...
Peter, could I have a final call on this ?
Regards
J?r?my Rosen
fight key loggers : write some perl using vim
----- Mail original -----
> De: "J?r?my Rosen" <jeremy.rosen@openwide.fr>
> ?: buildroot at busybox.net
> Cc: "J?r?my Rosen" <jeremy.rosen@openwide.fr>
> Envoy?: Jeudi 6 D?cembre 2012 14:36:07
> Objet: [PATCH] [RFC] new target: live filesystem
>
> add a new target to deploy a live filesystem to be used with NFS or
> as a chroot
>
> Signed-off-by: J?r?my Rosen <jeremy.rosen@openwide.fr>
> ---
> v2 : implement Arnoult's suggestion, update manual entry
> v3 : improve documentation for the chroot case, more suggestions by
> Arnoult
> ---
> docs/manual/beyond-buildroot.txt | 20 ++++++++------------
> fs/Config.in | 1 +
> fs/live/Config.in | 14 ++++++++++++++
> fs/live/live.mk | 19 +++++++++++++++++++
> support/dependencies/dependencies.sh | 8 ++++++++
> 5 files changed, 50 insertions(+), 12 deletions(-)
> create mode 100644 fs/live/Config.in
> create mode 100644 fs/live/live.mk
>
> diff --git a/docs/manual/beyond-buildroot.txt
> b/docs/manual/beyond-buildroot.txt
> index a87b584..17ccc1a 100644
> --- a/docs/manual/beyond-buildroot.txt
> +++ b/docs/manual/beyond-buildroot.txt
> @@ -9,19 +9,15 @@ Boot the generated images
> NFS boot
> ~~~~~~~~
>
> -To achieve NFS-boot, enable _tar root filesystem_ in the _Filesystem
> -images_ menu.
> +To achieve NFS-boot, enable _live root filesystem_ in the
> _Filesystem
> +images_ menu and select a _live image location_ to choose where the
> live
> +filesystem will be deployed. you can use _$(BINARIES_DIR)_ to easily
> +build in +/path/to/output_dir/images+
>
> -After a complete build, just run the following commands to setup the
> -NFS-root directory:
> +You will be asked for a password during the build. This is needed to
> create
> +device entries in the target filesystem
>
> --------------------
> -sudo tar -xavf /path/to/output_dir/rootfs.tar -C
> /path/to/nfs_root_dir
> --------------------
> -
> -Remember to add this path to +/etc/exports+.
> -
> -Then, you can execute a NFS-boot from your target.
> +You will need to add the _live image location_ to +/etc/exports+.
>
> Chroot
> ------
> @@ -29,7 +25,7 @@ Chroot
> If you want to chroot in a generated image, then there are few thing
> you should be aware of:
>
> -* you should setup the new root from the _tar root filesystem_
> image;
> +* you should use the _live root filesystem_ image;
>
> * either the selected target architecture is compatible with your
> host
> machine, or you should use some +qemu-*+ binary and correctly set
> it
> diff --git a/fs/Config.in b/fs/Config.in
> index da4c5ff..664d2f6 100644
> --- a/fs/Config.in
> +++ b/fs/Config.in
> @@ -11,5 +11,6 @@ source "fs/romfs/Config.in"
> source "fs/squashfs/Config.in"
> source "fs/tar/Config.in"
> source "fs/ubifs/Config.in"
> +source "fs/live/Config.in"
>
> endmenu
> diff --git a/fs/live/Config.in b/fs/live/Config.in
> new file mode 100644
> index 0000000..a79f1dc
> --- /dev/null
> +++ b/fs/live/Config.in
> @@ -0,0 +1,14 @@
> +config BR2_TARGET_ROOTFS_LIVE
> + bool "live root filesystem"
> + help
> + Create a live image of the root filesystem that is directly
> + usable as over NFS or chroot.
> +
> +config BR2_TARGET_ROOTFS_LIVE_DEST
> + string "live image location"
> + depends on BR2_TARGET_ROOTFS_LIVE
> + default "$(BINARIES_DIR)/live"
> + help
> + The directory where the image should be stored.
> + This directory will be emptied and recreated
> +
> diff --git a/fs/live/live.mk b/fs/live/live.mk
> new file mode 100644
> index 0000000..52f7444
> --- /dev/null
> +++ b/fs/live/live.mk
> @@ -0,0 +1,19 @@
> +#############################################################
> +#
> +# Build the live root filesystem directory
> +#
> +#############################################################
> +
> +
> +define ROOTFS_LIVE_CMD
> + sudo rsync -a --no-o --no-g --delete-during $(TARGET_DIR)/ \
> + $(BR2_TARGET_ROOTFS_LIVE_DEST)/
> +endef
> +
> +define ROOTFS_LIVE_INIT
> + if [ -z $(shell which sudo) ] ; then echo "sudo seems to not be
> installed on the host system" ; false ; fi
> +endef
> +
> +ROOTFS_LIVE_PRE_GEN_HOOKS += ROOTFS_LIVE_INIT
> +
> +$(eval $(call ROOTFS_TARGET,live))
> diff --git a/support/dependencies/dependencies.sh
> b/support/dependencies/dependencies.sh
> index 7a02512..ebaabbb 100755
> --- a/support/dependencies/dependencies.sh
> +++ b/support/dependencies/dependencies.sh
> @@ -158,6 +158,7 @@ if grep ^BR2_TOOLCHAIN_BUILDROOT=y $CONFIG_FILE >
> /dev/null && \
> exit 1 ;
> fi
> fi
> +
> if grep -q ^BR2_PACKAGE_CLASSPATH=y $CONFIG_FILE ; then
> for prog in javac jar; do
> if ! which $prog > /dev/null ; then
> @@ -166,3 +167,10 @@ if grep -q ^BR2_PACKAGE_CLASSPATH=y $CONFIG_FILE
> ; then
> fi
> done
> fi
> +
> +if grep ^BR2_TARGET_ROOTFS_LIVE=y $CONFIG_FILE > /dev/null ; then
> + if ! which sudo > /dev/null ; then
> + /bin/echo -e "\nYou need sudo installed on your build machine
> to build a live filesystem\n"
> + exit 1 ;
> + fi
> +fi
> --
> 1.7.10.4
>
>
^ permalink raw reply
* [Buildroot] Results of an all-package build
From: Arnout Vandecappelle @ 2012-12-17 8:49 UTC (permalink / raw)
To: buildroot
In-Reply-To: <871ueqhna8.fsf@dell.be.48ers.dk>
On 16/12/12 01:07, Peter Korsgaard wrote:
>>>>>> "Arnout" == Arnout Vandecappelle<arnout@mind.be> writes:
>
> Hi,
>
> Arnout> As part of the test of the disable-doc patch I just sent, I
> Arnout> built something approaching an allyespackageconfig for x86_64
> Arnout> with a Sourcery-2012.09 toolchain. Interesting to look at the
> Arnout> results.
>
> Arnout> - The following fail to build:
>
> Arnout> * classpath
> Arnout> * diffutils
> Arnout> * gpsd
> Arnout> * ipsec-tools
> Arnout> * linux-pam
> Arnout> * ltp-testsuite
> Arnout> * matchbox-desktop
> Arnout> * metacity
> Arnout> * webkit
> Arnout> * neard
> Arnout> * netatalk
> Arnout> * network-manager
> Arnout> * pcmanfm
> Arnout> * pv
> Arnout> * sconeserver-http-sconesite-image
> Arnout> * xdriver_xf86-video-geode
> Arnout> * xdriver_xf86-input-synaptics
> Arnout> * valgrind (because glibc 2.16 is not supported, needs valgrind bump)
> Arnout> * xstroke
> Arnout> * grub
> Arnout> * uboot (wrong ARCH parameter)
>
> Arnout> midori and jamvm are not built because they depend on the above.
>
> Interesting, and better than I feared ;) Do you have the build errors
> archived somewhere? I would like to see atleast the classpath issue.
No I haven't, but they're easy enough to reproduce.
For classpath:
checking for QtCore QtGui >= 4.1.0... yes
checking QT_CFLAGS... -I/home/arnout/src/buildroot/output-ext-toolchain-x86_64/host/usr/x86_64-buildroot-linux-gnu/sysroot/usr/include/QtGui -DQT_SHARED -I/home/arnout/src/buildroot/output-ext-toolchain-x86_64/host/usr/x86_64-buildroot-linux-gnu/sysroot/usr/include -I/home/arnout/src/buildroot/output-ext-toolchain-x86_64/host/usr/x86_64-buildroot-linux-gnu/sysroot/usr/include/QtCore
checking QT_LIBS... -lQtGui -L/home/arnout/src/buildroot/output-ext-toolchain-x86_64/host/usr/x86_64-buildroot-linux-gnu/sysroot/usr/lib -lQtCore
checking for /home/arnout/src/buildroot/output-ext-toolchain-x86_64/host/usr/x86_64-buildroot-linux-gnu/sysroot/usr/include/QtGui/QWidget... configure: error: cannot check for file existence when cross compiling
I'll try to re-run current HEAD (which has fixed quite a few packages
already) with make -k and put it on a pastebin.
> Arnout> There are a few more that fail to build in my environment if the
> Arnout> libxml2/mesa3d and linux-fusion patches are not applied. Also xenomai
> Arnout> must be extracted manually before the build, otherwise linux fails to
> Arnout> build.
>
> Arnout> - About 920 packages (host+target) are built, from 843 source
> Arnout> tarballs.
>
> Arnout> - legal-info succeeds without problems, except that sylpheed's
> Arnout> license file is not correctly defined.
>
> Ok, could you provide a bit more info or send patches, please?
You already fixed it :-)
[snip]
> Arnout> - Time for a clean build (without ccache and JLEVEL=3) on my laptop
> Arnout> is 6 hours. A yocto build takes roughly the same time on my laptop,
> Arnout> but has less than half as many packages.
>
> Heh. Nice, it seems doable to do this on a relatively regular schedule.
Yep. Although the Linaro toolchain is probably a more appropriate choice.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [git commit] pciutils: work around race condition in make install with high BR2_JLEVEL
From: Peter Korsgaard @ 2012-12-17 8:27 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=8286d7113f481c2acbc9dc5ff62a364087700d51
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Fixes http://autobuild.buildroot.net/results/908d7368c8dc8e320fd33f3193039f5925adc352
make install and install-lib can race against eachother causing 'install'
to fail. Work around it using MAKE1.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/pciutils/pciutils.mk | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/pciutils/pciutils.mk b/package/pciutils/pciutils.mk
index ba866a0..6219711 100644
--- a/package/pciutils/pciutils.mk
+++ b/package/pciutils/pciutils.mk
@@ -48,12 +48,12 @@ endef
# Ditch install-lib if SHARED is an option in the future
define PCIUTILS_INSTALL_TARGET_CMDS
- $(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \
+ $(MAKE1) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr \
SHARED=$(PCIUTILS_SHARED) install install-lib
endef
define PCIUTILS_INSTALL_STAGING_CMDS
- $(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(STAGING_DIR)/usr \
+ $(MAKE1) BUILDDIR=$(@D) -C $(@D) PREFIX=$(STAGING_DIR)/usr \
SHARED=$(PCIUTILS_SHARED) install install-lib
endef
^ permalink raw reply related
* [Buildroot] [PATCH] package/spice: Only builds on x86
From: Peter Korsgaard @ 2012-12-17 8:17 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355731591-19853-1-git-send-email-maxime.ripard@free-electrons.com>
>>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes:
Maxime> The spice configure script explicitly checks for x86 or x86-64, so
Maxime> disable it on other architectures
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] package/spice: Only builds on x86
From: Peter Korsgaard @ 2012-12-17 8:17 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=4f452a86b8523d90ffa7a94cb1d540e574ceb165
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
The spice configure script explicitly checks for x86 or x86-64, so
disable it on other architectures
Fixes
http://autobuild.buildroot.org/results/7f7e2d46542a685b93211f76ad063f8b2ba7b5e5/build-end.log
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/spice/Config.in | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/package/spice/Config.in b/package/spice/Config.in
index b1e187a..1b264e7 100644
--- a/package/spice/Config.in
+++ b/package/spice/Config.in
@@ -1,8 +1,10 @@
comment "spice server depends on python (for pyparsing)"
+ depends on BR2_i386 || BR2_x86_64
depends on !BR2_PACKAGE_PYTHON
config BR2_PACKAGE_SPICE
bool "spice server"
+ depends on BR2_i386 || BR2_x86_64
depends on BR2_PACKAGE_PYTHON
select BR2_PACKAGE_ALSA_LIB
select BR2_PACKAGE_CELT051
^ permalink raw reply related
* [Buildroot] [PATCH] package/spice: Only builds on x86
From: Maxime Ripard @ 2012-12-17 8:06 UTC (permalink / raw)
To: buildroot
The spice configure script explicitly checks for x86 or x86-64, so
disable it on other architectures
Fixes
http://autobuild.buildroot.org/results/7f7e2d46542a685b93211f76ad063f8b2ba7b5e5/build-end.log
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
---
package/spice/Config.in | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/spice/Config.in b/package/spice/Config.in
index b1e187a..1b264e7 100644
--- a/package/spice/Config.in
+++ b/package/spice/Config.in
@@ -1,8 +1,10 @@
comment "spice server depends on python (for pyparsing)"
+ depends on BR2_i386 || BR2_x86_64
depends on !BR2_PACKAGE_PYTHON
config BR2_PACKAGE_SPICE
bool "spice server"
+ depends on BR2_i386 || BR2_x86_64
depends on BR2_PACKAGE_PYTHON
select BR2_PACKAGE_ALSA_LIB
select BR2_PACKAGE_CELT051
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-12-16
From: Thomas Petazzoni @ 2012-12-17 7:34 UTC (permalink / raw)
To: buildroot
Hello,
On 2012-12-16, 191 random build tests have been done and
submitted on autobuild.buildroot.net.
130 builds have been successful
61 builds have failed
Below the results of the failed builds. Successful builds are omitted.
Build cfd62cf71530725d4783a7344459b51166e794c1
==============================================
Status : NOK
Failure reason : luajit-2.0.0
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 00:07:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d11bb6da1c909d4961d6337479ca7fc0cd15ca64
End of log : http://autobuild.buildroot.net/results/cfd62cf71530725d4783a7344459b51166e794c1/build-end.log
Complete log : http://autobuild.buildroot.net/results/cfd62cf71530725d4783a7344459b51166e794c1/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cfd62cf71530725d4783a7344459b51166e794c1/config
Defconfig : http://autobuild.buildroot.net/results/cfd62cf71530725d4783a7344459b51166e794c1/defconfig
Build 50408b97a0e0614bdd4937c0b9bcd536fdd5f4cd
==============================================
Status : NOK
Failure reason : sconeserver-180
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 00:17:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d11bb6da1c909d4961d6337479ca7fc0cd15ca64
End of log : http://autobuild.buildroot.net/results/50408b97a0e0614bdd4937c0b9bcd536fdd5f4cd/build-end.log
Complete log : http://autobuild.buildroot.net/results/50408b97a0e0614bdd4937c0b9bcd536fdd5f4cd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/50408b97a0e0614bdd4937c0b9bcd536fdd5f4cd/config
Defconfig : http://autobuild.buildroot.net/results/50408b97a0e0614bdd4937c0b9bcd536fdd5f4cd/defconfig
Build 79860d9a6bb80c56c724473b87edf94515cc3fed
==============================================
Status : NOK
Failure reason : bluez_utils-4.101
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 00:20:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d11bb6da1c909d4961d6337479ca7fc0cd15ca64
End of log : http://autobuild.buildroot.net/results/79860d9a6bb80c56c724473b87edf94515cc3fed/build-end.log
Complete log : http://autobuild.buildroot.net/results/79860d9a6bb80c56c724473b87edf94515cc3fed/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/79860d9a6bb80c56c724473b87edf94515cc3fed/config
Defconfig : http://autobuild.buildroot.net/results/79860d9a6bb80c56c724473b87edf94515cc3fed/defconfig
Build 4d2aecab066c9a66a91ab44f718632d44a604187
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 00:22:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d11bb6da1c909d4961d6337479ca7fc0cd15ca64
End of log : http://autobuild.buildroot.net/results/4d2aecab066c9a66a91ab44f718632d44a604187/build-end.log
Complete log : http://autobuild.buildroot.net/results/4d2aecab066c9a66a91ab44f718632d44a604187/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4d2aecab066c9a66a91ab44f718632d44a604187/config
Defconfig : http://autobuild.buildroot.net/results/4d2aecab066c9a66a91ab44f718632d44a604187/defconfig
Build 8bdeeec76d26377ad84d4f07ef22168fdf888657
==============================================
Status : NOK
Failure reason : libnl-3.2.16
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 00:42:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d11bb6da1c909d4961d6337479ca7fc0cd15ca64
End of log : http://autobuild.buildroot.net/results/8bdeeec76d26377ad84d4f07ef22168fdf888657/build-end.log
Complete log : http://autobuild.buildroot.net/results/8bdeeec76d26377ad84d4f07ef22168fdf888657/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8bdeeec76d26377ad84d4f07ef22168fdf888657/config
Defconfig : http://autobuild.buildroot.net/results/8bdeeec76d26377ad84d4f07ef22168fdf888657/defconfig
Build 013fcfcea2048b596768494dd01a34f19747b2bd
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 00:55:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=d11bb6da1c909d4961d6337479ca7fc0cd15ca64
End of log : http://autobuild.buildroot.net/results/013fcfcea2048b596768494dd01a34f19747b2bd/build-end.log
Complete log : http://autobuild.buildroot.net/results/013fcfcea2048b596768494dd01a34f19747b2bd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/013fcfcea2048b596768494dd01a34f19747b2bd/config
Defconfig : http://autobuild.buildroot.net/results/013fcfcea2048b596768494dd01a34f19747b2bd/defconfig
Build 8954d11f7f2baee4d697a28c87b72224c2d9b378
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 01:43:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/8954d11f7f2baee4d697a28c87b72224c2d9b378/build-end.log
Complete log : http://autobuild.buildroot.net/results/8954d11f7f2baee4d697a28c87b72224c2d9b378/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8954d11f7f2baee4d697a28c87b72224c2d9b378/config
Defconfig : http://autobuild.buildroot.net/results/8954d11f7f2baee4d697a28c87b72224c2d9b378/defconfig
Build 3439cc6c2aacdb65e437c14b1f1f7f5819fa737a
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.26
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 01:43:43
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/3439cc6c2aacdb65e437c14b1f1f7f5819fa737a/build-end.log
Complete log : http://autobuild.buildroot.net/results/3439cc6c2aacdb65e437c14b1f1f7f5819fa737a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3439cc6c2aacdb65e437c14b1f1f7f5819fa737a/config
Defconfig : http://autobuild.buildroot.net/results/3439cc6c2aacdb65e437c14b1f1f7f5819fa737a/defconfig
Build 5f34e3f17333f9fd3b797dae7066e62a114fb87a
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 01:52:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/5f34e3f17333f9fd3b797dae7066e62a114fb87a/build-end.log
Complete log : http://autobuild.buildroot.net/results/5f34e3f17333f9fd3b797dae7066e62a114fb87a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5f34e3f17333f9fd3b797dae7066e62a114fb87a/config
Defconfig : http://autobuild.buildroot.net/results/5f34e3f17333f9fd3b797dae7066e62a114fb87a/defconfig
Build bdc67d07e1c91f6f247acd787cdbd6516ad092cb
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 02:12:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/bdc67d07e1c91f6f247acd787cdbd6516ad092cb/build-end.log
Complete log : http://autobuild.buildroot.net/results/bdc67d07e1c91f6f247acd787cdbd6516ad092cb/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bdc67d07e1c91f6f247acd787cdbd6516ad092cb/config
Defconfig : http://autobuild.buildroot.net/results/bdc67d07e1c91f6f247acd787cdbd6516ad092cb/defconfig
Build b9f506ea4fde4e88109f7c2f7d84db971c746fe3
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 02:39:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/b9f506ea4fde4e88109f7c2f7d84db971c746fe3/build-end.log
Complete log : http://autobuild.buildroot.net/results/b9f506ea4fde4e88109f7c2f7d84db971c746fe3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b9f506ea4fde4e88109f7c2f7d84db971c746fe3/config
Defconfig : http://autobuild.buildroot.net/results/b9f506ea4fde4e88109f7c2f7d84db971c746fe3/defconfig
Build 56977edd2473e55055c6a2d7da62ca0792feae45
==============================================
Status : NOK
Failure reason : php-5.3.19
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 04:38:55
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/56977edd2473e55055c6a2d7da62ca0792feae45/build-end.log
Complete log : http://autobuild.buildroot.net/results/56977edd2473e55055c6a2d7da62ca0792feae45/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/56977edd2473e55055c6a2d7da62ca0792feae45/config
Defconfig : http://autobuild.buildroot.net/results/56977edd2473e55055c6a2d7da62ca0792feae45/defconfig
Build 1b231946fbc5c37402c4c5486d7b96d213ea7a79
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 04:40:19
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/1b231946fbc5c37402c4c5486d7b96d213ea7a79/build-end.log
Complete log : http://autobuild.buildroot.net/results/1b231946fbc5c37402c4c5486d7b96d213ea7a79/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1b231946fbc5c37402c4c5486d7b96d213ea7a79/config
Defconfig : http://autobuild.buildroot.net/results/1b231946fbc5c37402c4c5486d7b96d213ea7a79/defconfig
Build 66af62592ca50d1483a029483815f7251b61469c
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 04:42:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/66af62592ca50d1483a029483815f7251b61469c/build-end.log
Complete log : http://autobuild.buildroot.net/results/66af62592ca50d1483a029483815f7251b61469c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/66af62592ca50d1483a029483815f7251b61469c/config
Defconfig : http://autobuild.buildroot.net/results/66af62592ca50d1483a029483815f7251b61469c/defconfig
Build edafcff906ffc0c3fe7e04a03821391fd7b969bd
==============================================
Status : NOK
Failure reason : libnl-3.2.16
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 05:10:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/edafcff906ffc0c3fe7e04a03821391fd7b969bd/build-end.log
Complete log : http://autobuild.buildroot.net/results/edafcff906ffc0c3fe7e04a03821391fd7b969bd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/edafcff906ffc0c3fe7e04a03821391fd7b969bd/config
Defconfig : http://autobuild.buildroot.net/results/edafcff906ffc0c3fe7e04a03821391fd7b969bd/defconfig
Build 81cc6daf7dd0cc02a99c1eba787ba473799c47a7
==============================================
Status : NOK
Failure reason : mtd-1.5.0
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 05:27:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/81cc6daf7dd0cc02a99c1eba787ba473799c47a7/build-end.log
Complete log : http://autobuild.buildroot.net/results/81cc6daf7dd0cc02a99c1eba787ba473799c47a7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/81cc6daf7dd0cc02a99c1eba787ba473799c47a7/config
Defconfig : http://autobuild.buildroot.net/results/81cc6daf7dd0cc02a99c1eba787ba473799c47a7/defconfig
Build 8aa9bfef6b8a8df4d34efd66fbeae67dec70120b
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 06:29:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/8aa9bfef6b8a8df4d34efd66fbeae67dec70120b/build-end.log
Complete log : http://autobuild.buildroot.net/results/8aa9bfef6b8a8df4d34efd66fbeae67dec70120b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8aa9bfef6b8a8df4d34efd66fbeae67dec70120b/config
Defconfig : http://autobuild.buildroot.net/results/8aa9bfef6b8a8df4d34efd66fbeae67dec70120b/defconfig
Build 5328876b373da4f209ae7013aa09b54e324300ee
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 07:46:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/5328876b373da4f209ae7013aa09b54e324300ee/build-end.log
Complete log : http://autobuild.buildroot.net/results/5328876b373da4f209ae7013aa09b54e324300ee/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5328876b373da4f209ae7013aa09b54e324300ee/config
Defconfig : http://autobuild.buildroot.net/results/5328876b373da4f209ae7013aa09b54e324300ee/defconfig
Build 18befd515564614c7d192867923cb44258fe9e09
==============================================
Status : NOK
Failure reason : openssl-1.0.1c
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 07:53:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/18befd515564614c7d192867923cb44258fe9e09/build-end.log
Complete log : http://autobuild.buildroot.net/results/18befd515564614c7d192867923cb44258fe9e09/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/18befd515564614c7d192867923cb44258fe9e09/config
Defconfig : http://autobuild.buildroot.net/results/18befd515564614c7d192867923cb44258fe9e09/defconfig
Build 023a9ca8d708508265f52c99f9d5f5f278cad289
==============================================
Status : NOK
Failure reason : kexec-2.0.3
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 08:30:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/023a9ca8d708508265f52c99f9d5f5f278cad289/build-end.log
Complete log : http://autobuild.buildroot.net/results/023a9ca8d708508265f52c99f9d5f5f278cad289/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/023a9ca8d708508265f52c99f9d5f5f278cad289/config
Defconfig : http://autobuild.buildroot.net/results/023a9ca8d708508265f52c99f9d5f5f278cad289/defconfig
Build ebba18437aac0077d8946660f36ba8c8466ee7ee
==============================================
Status : NOK
Failure reason : squid-3.2.5
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 08:34:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/ebba18437aac0077d8946660f36ba8c8466ee7ee/build-end.log
Complete log : http://autobuild.buildroot.net/results/ebba18437aac0077d8946660f36ba8c8466ee7ee/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ebba18437aac0077d8946660f36ba8c8466ee7ee/config
Defconfig : http://autobuild.buildroot.net/results/ebba18437aac0077d8946660f36ba8c8466ee7ee/defconfig
Build 99115434032c3d10883f5ad0e51874abe76eab53
==============================================
Status : NOK
Failure reason : libnss-3.12.9
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 09:49:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/99115434032c3d10883f5ad0e51874abe76eab53/build-end.log
Complete log : http://autobuild.buildroot.net/results/99115434032c3d10883f5ad0e51874abe76eab53/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/99115434032c3d10883f5ad0e51874abe76eab53/config
Defconfig : http://autobuild.buildroot.net/results/99115434032c3d10883f5ad0e51874abe76eab53/defconfig
Build d344efef26c5e2c1b95481802b14023cb0fdfd3e
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 09:51:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=71a4513e73ec8a3c3d1a18c328c867a8ba2eb471
End of log : http://autobuild.buildroot.net/results/d344efef26c5e2c1b95481802b14023cb0fdfd3e/build-end.log
Complete log : http://autobuild.buildroot.net/results/d344efef26c5e2c1b95481802b14023cb0fdfd3e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d344efef26c5e2c1b95481802b14023cb0fdfd3e/config
Defconfig : http://autobuild.buildroot.net/results/d344efef26c5e2c1b95481802b14023cb0fdfd3e/defconfig
Build 299a132e7921aef044d121f910175cb9ddc7a04a
==============================================
Status : NOK
Failure reason : libnss-3.12.9
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 10:06:37
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8b827859f994767052f31d4ee6ca6524b5065d01
End of log : http://autobuild.buildroot.net/results/299a132e7921aef044d121f910175cb9ddc7a04a/build-end.log
Complete log : http://autobuild.buildroot.net/results/299a132e7921aef044d121f910175cb9ddc7a04a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/299a132e7921aef044d121f910175cb9ddc7a04a/config
Defconfig : http://autobuild.buildroot.net/results/299a132e7921aef044d121f910175cb9ddc7a04a/defconfig
Build 49d5891dcecf2cce8de9f2bdb16a76ff86579f45
==============================================
Status : NOK
Failure reason : gnupg-1.4.12
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 10:23:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8b827859f994767052f31d4ee6ca6524b5065d01
End of log : http://autobuild.buildroot.net/results/49d5891dcecf2cce8de9f2bdb16a76ff86579f45/build-end.log
Complete log : http://autobuild.buildroot.net/results/49d5891dcecf2cce8de9f2bdb16a76ff86579f45/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/49d5891dcecf2cce8de9f2bdb16a76ff86579f45/config
Defconfig : http://autobuild.buildroot.net/results/49d5891dcecf2cce8de9f2bdb16a76ff86579f45/defconfig
Build 6a1e2c0fd1dd9520af3717457b408f7b369153c2
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 10:30:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8b827859f994767052f31d4ee6ca6524b5065d01
End of log : http://autobuild.buildroot.net/results/6a1e2c0fd1dd9520af3717457b408f7b369153c2/build-end.log
Complete log : http://autobuild.buildroot.net/results/6a1e2c0fd1dd9520af3717457b408f7b369153c2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6a1e2c0fd1dd9520af3717457b408f7b369153c2/config
Defconfig : http://autobuild.buildroot.net/results/6a1e2c0fd1dd9520af3717457b408f7b369153c2/defconfig
Build 50aed368e062e43ee731ed1eb32e7f4cdefd0e9a
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 10:41:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=8b827859f994767052f31d4ee6ca6524b5065d01
End of log : http://autobuild.buildroot.net/results/50aed368e062e43ee731ed1eb32e7f4cdefd0e9a/build-end.log
Complete log : http://autobuild.buildroot.net/results/50aed368e062e43ee731ed1eb32e7f4cdefd0e9a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/50aed368e062e43ee731ed1eb32e7f4cdefd0e9a/config
Defconfig : http://autobuild.buildroot.net/results/50aed368e062e43ee731ed1eb32e7f4cdefd0e9a/defconfig
Build 7cca069a8777e84e0e8a8d44670db35f479239da
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 11:04:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=a3671a3f2583c71871a2ac4fdf36b02c5bbdc558
End of log : http://autobuild.buildroot.net/results/7cca069a8777e84e0e8a8d44670db35f479239da/build-end.log
Complete log : http://autobuild.buildroot.net/results/7cca069a8777e84e0e8a8d44670db35f479239da/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7cca069a8777e84e0e8a8d44670db35f479239da/config
Defconfig : http://autobuild.buildroot.net/results/7cca069a8777e84e0e8a8d44670db35f479239da/defconfig
Build 2cd995b416c330b796bd79135939ab8b6acf2474
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 11:20:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=a3671a3f2583c71871a2ac4fdf36b02c5bbdc558
End of log : http://autobuild.buildroot.net/results/2cd995b416c330b796bd79135939ab8b6acf2474/build-end.log
Complete log : http://autobuild.buildroot.net/results/2cd995b416c330b796bd79135939ab8b6acf2474/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2cd995b416c330b796bd79135939ab8b6acf2474/config
Defconfig : http://autobuild.buildroot.net/results/2cd995b416c330b796bd79135939ab8b6acf2474/defconfig
Build 2ad87f750daf2fe46486a03955a8c076b39ae497
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 11:41:13
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=a3671a3f2583c71871a2ac4fdf36b02c5bbdc558
End of log : http://autobuild.buildroot.net/results/2ad87f750daf2fe46486a03955a8c076b39ae497/build-end.log
Complete log : http://autobuild.buildroot.net/results/2ad87f750daf2fe46486a03955a8c076b39ae497/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2ad87f750daf2fe46486a03955a8c076b39ae497/config
Defconfig : http://autobuild.buildroot.net/results/2ad87f750daf2fe46486a03955a8c076b39ae497/defconfig
Build 1cc5c45bd0e6cca84ceed3c0c6d40a27a3624146
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 11:44:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=a3671a3f2583c71871a2ac4fdf36b02c5bbdc558
End of log : http://autobuild.buildroot.net/results/1cc5c45bd0e6cca84ceed3c0c6d40a27a3624146/build-end.log
Complete log : http://autobuild.buildroot.net/results/1cc5c45bd0e6cca84ceed3c0c6d40a27a3624146/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1cc5c45bd0e6cca84ceed3c0c6d40a27a3624146/config
Defconfig : http://autobuild.buildroot.net/results/1cc5c45bd0e6cca84ceed3c0c6d40a27a3624146/defconfig
Build 4cdb13266a32ca320a1808530a6b4fa9721ea462
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 11:52:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=a3671a3f2583c71871a2ac4fdf36b02c5bbdc558
End of log : http://autobuild.buildroot.net/results/4cdb13266a32ca320a1808530a6b4fa9721ea462/build-end.log
Complete log : http://autobuild.buildroot.net/results/4cdb13266a32ca320a1808530a6b4fa9721ea462/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4cdb13266a32ca320a1808530a6b4fa9721ea462/config
Defconfig : http://autobuild.buildroot.net/results/4cdb13266a32ca320a1808530a6b4fa9721ea462/defconfig
Build 0648d6620de941893d90c78f8e21b7b6d9e05f83
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 12:29:13
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=43ef60dc6aea3bd716de2a8cd0b379f1d184721e
End of log : http://autobuild.buildroot.net/results/0648d6620de941893d90c78f8e21b7b6d9e05f83/build-end.log
Complete log : http://autobuild.buildroot.net/results/0648d6620de941893d90c78f8e21b7b6d9e05f83/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0648d6620de941893d90c78f8e21b7b6d9e05f83/config
Defconfig : http://autobuild.buildroot.net/results/0648d6620de941893d90c78f8e21b7b6d9e05f83/defconfig
Build 908d7368c8dc8e320fd33f3193039f5925adc352
==============================================
Status : NOK
Failure reason : pciutils-3.1.10
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-12-16 12:41:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=a3671a3f2583c71871a2ac4fdf36b02c5bbdc558
End of log : http://autobuild.buildroot.net/results/908d7368c8dc8e320fd33f3193039f5925adc352/build-end.log
Complete log : http://autobuild.buildroot.net/results/908d7368c8dc8e320fd33f3193039f5925adc352/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/908d7368c8dc8e320fd33f3193039f5925adc352/config
Defconfig : http://autobuild.buildroot.net/results/908d7368c8dc8e320fd33f3193039f5925adc352/defconfig
Build 618f4e265b71fc3f0e0fea3dc0338d32bf948957
==============================================
Status : NOK
Failure reason : xserver_xorg-server-1.9.4
Architecture : aarch64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 13:32:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=43ef60dc6aea3bd716de2a8cd0b379f1d184721e
End of log : http://autobuild.buildroot.net/results/618f4e265b71fc3f0e0fea3dc0338d32bf948957/build-end.log
Complete log : http://autobuild.buildroot.net/results/618f4e265b71fc3f0e0fea3dc0338d32bf948957/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/618f4e265b71fc3f0e0fea3dc0338d32bf948957/config
Defconfig : http://autobuild.buildroot.net/results/618f4e265b71fc3f0e0fea3dc0338d32bf948957/defconfig
Build abf7b13bc38289743c26a1806a961dc7a32f51a8
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 13:58:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=43ef60dc6aea3bd716de2a8cd0b379f1d184721e
End of log : http://autobuild.buildroot.net/results/abf7b13bc38289743c26a1806a961dc7a32f51a8/build-end.log
Complete log : http://autobuild.buildroot.net/results/abf7b13bc38289743c26a1806a961dc7a32f51a8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/abf7b13bc38289743c26a1806a961dc7a32f51a8/config
Defconfig : http://autobuild.buildroot.net/results/abf7b13bc38289743c26a1806a961dc7a32f51a8/defconfig
Build 9971223da71a713fdb4fb050c7e693d49ecfcb01
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 14:02:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=43ef60dc6aea3bd716de2a8cd0b379f1d184721e
End of log : http://autobuild.buildroot.net/results/9971223da71a713fdb4fb050c7e693d49ecfcb01/build-end.log
Complete log : http://autobuild.buildroot.net/results/9971223da71a713fdb4fb050c7e693d49ecfcb01/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9971223da71a713fdb4fb050c7e693d49ecfcb01/config
Defconfig : http://autobuild.buildroot.net/results/9971223da71a713fdb4fb050c7e693d49ecfcb01/defconfig
Build 24a672137cbf275cfa4b35e8a94815089636370a
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 14:03:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=43ef60dc6aea3bd716de2a8cd0b379f1d184721e
End of log : http://autobuild.buildroot.net/results/24a672137cbf275cfa4b35e8a94815089636370a/build-end.log
Complete log : http://autobuild.buildroot.net/results/24a672137cbf275cfa4b35e8a94815089636370a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/24a672137cbf275cfa4b35e8a94815089636370a/config
Defconfig : http://autobuild.buildroot.net/results/24a672137cbf275cfa4b35e8a94815089636370a/defconfig
Build 77cd482f33704aa57eddae56a7ec880dc614450c
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 14:19:56
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=43ef60dc6aea3bd716de2a8cd0b379f1d184721e
End of log : http://autobuild.buildroot.net/results/77cd482f33704aa57eddae56a7ec880dc614450c/build-end.log
Complete log : http://autobuild.buildroot.net/results/77cd482f33704aa57eddae56a7ec880dc614450c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/77cd482f33704aa57eddae56a7ec880dc614450c/config
Defconfig : http://autobuild.buildroot.net/results/77cd482f33704aa57eddae56a7ec880dc614450c/defconfig
Build 5f38d148486cdef5a01ab3495b8ac89204c547b9
==============================================
Status : NOK
Failure reason : gnupg-1.4.12
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 14:20:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=43ef60dc6aea3bd716de2a8cd0b379f1d184721e
End of log : http://autobuild.buildroot.net/results/5f38d148486cdef5a01ab3495b8ac89204c547b9/build-end.log
Complete log : http://autobuild.buildroot.net/results/5f38d148486cdef5a01ab3495b8ac89204c547b9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5f38d148486cdef5a01ab3495b8ac89204c547b9/config
Defconfig : http://autobuild.buildroot.net/results/5f38d148486cdef5a01ab3495b8ac89204c547b9/defconfig
Build 0720d41c099ec1304c664eeccabd12a93d539ee1
==============================================
Status : NOK
Failure reason : libnl-3.2.16
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 15:03:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3ceffe9659ae4a98a4127812126379a263ab991e
End of log : http://autobuild.buildroot.net/results/0720d41c099ec1304c664eeccabd12a93d539ee1/build-end.log
Complete log : http://autobuild.buildroot.net/results/0720d41c099ec1304c664eeccabd12a93d539ee1/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0720d41c099ec1304c664eeccabd12a93d539ee1/config
Defconfig : http://autobuild.buildroot.net/results/0720d41c099ec1304c664eeccabd12a93d539ee1/defconfig
Build ce9614152f982b0c4849e09fa9035ba248df1694
==============================================
Status : NOK
Failure reason : xstroke-0.6
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 15:11:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3ceffe9659ae4a98a4127812126379a263ab991e
End of log : http://autobuild.buildroot.net/results/ce9614152f982b0c4849e09fa9035ba248df1694/build-end.log
Complete log : http://autobuild.buildroot.net/results/ce9614152f982b0c4849e09fa9035ba248df1694/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ce9614152f982b0c4849e09fa9035ba248df1694/config
Defconfig : http://autobuild.buildroot.net/results/ce9614152f982b0c4849e09fa9035ba248df1694/defconfig
Build f7e3fca59f5d7131e575233e1d534be11889e476
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 15:11:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3ceffe9659ae4a98a4127812126379a263ab991e
End of log : http://autobuild.buildroot.net/results/f7e3fca59f5d7131e575233e1d534be11889e476/build-end.log
Complete log : http://autobuild.buildroot.net/results/f7e3fca59f5d7131e575233e1d534be11889e476/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f7e3fca59f5d7131e575233e1d534be11889e476/config
Defconfig : http://autobuild.buildroot.net/results/f7e3fca59f5d7131e575233e1d534be11889e476/defconfig
Build 19a74344f16d7c79748fe786b422df3f42f380e6
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 15:18:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3ceffe9659ae4a98a4127812126379a263ab991e
End of log : http://autobuild.buildroot.net/results/19a74344f16d7c79748fe786b422df3f42f380e6/build-end.log
Complete log : http://autobuild.buildroot.net/results/19a74344f16d7c79748fe786b422df3f42f380e6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/19a74344f16d7c79748fe786b422df3f42f380e6/config
Defconfig : http://autobuild.buildroot.net/results/19a74344f16d7c79748fe786b422df3f42f380e6/defconfig
Build 0450440c7b9de1af66cbef0798d1dc83641d95de
==============================================
Status : NOK
Failure reason : luajit-2.0.0
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 16:09:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3ceffe9659ae4a98a4127812126379a263ab991e
End of log : http://autobuild.buildroot.net/results/0450440c7b9de1af66cbef0798d1dc83641d95de/build-end.log
Complete log : http://autobuild.buildroot.net/results/0450440c7b9de1af66cbef0798d1dc83641d95de/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0450440c7b9de1af66cbef0798d1dc83641d95de/config
Defconfig : http://autobuild.buildroot.net/results/0450440c7b9de1af66cbef0798d1dc83641d95de/defconfig
Build 66e6c8002b2db764aedd8e839ce2ac2985e49e8f
==============================================
Status : NOK
Failure reason : directfb-1.4.17
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 16:13:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3ceffe9659ae4a98a4127812126379a263ab991e
End of log : http://autobuild.buildroot.net/results/66e6c8002b2db764aedd8e839ce2ac2985e49e8f/build-end.log
Complete log : http://autobuild.buildroot.net/results/66e6c8002b2db764aedd8e839ce2ac2985e49e8f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/66e6c8002b2db764aedd8e839ce2ac2985e49e8f/config
Defconfig : http://autobuild.buildroot.net/results/66e6c8002b2db764aedd8e839ce2ac2985e49e8f/defconfig
Build bafd422e91a165bac89e7565c7d334cdd82712a6
==============================================
Status : NOK
Failure reason : libglib2-2.30.3
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 17:01:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3ceffe9659ae4a98a4127812126379a263ab991e
End of log : http://autobuild.buildroot.net/results/bafd422e91a165bac89e7565c7d334cdd82712a6/build-end.log
Complete log : http://autobuild.buildroot.net/results/bafd422e91a165bac89e7565c7d334cdd82712a6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bafd422e91a165bac89e7565c7d334cdd82712a6/config
Defconfig : http://autobuild.buildroot.net/results/bafd422e91a165bac89e7565c7d334cdd82712a6/defconfig
Build 3c7b91e6a78997058d4bfaf109c537012321d3a5
==============================================
Status : NOK
Failure reason : python-2.7.3
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 20:46:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3ceffe9659ae4a98a4127812126379a263ab991e
End of log : http://autobuild.buildroot.net/results/3c7b91e6a78997058d4bfaf109c537012321d3a5/build-end.log
Complete log : http://autobuild.buildroot.net/results/3c7b91e6a78997058d4bfaf109c537012321d3a5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3c7b91e6a78997058d4bfaf109c537012321d3a5/config
Defconfig : http://autobuild.buildroot.net/results/3c7b91e6a78997058d4bfaf109c537012321d3a5/defconfig
Build 867c8631e5ddaf543404f9dd42d734083f5bbb9a
==============================================
Status : NOK
Failure reason : sdl-1.2.15
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-16 20:47:18
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3ceffe9659ae4a98a4127812126379a263ab991e
End of log : http://autobuild.buildroot.net/results/867c8631e5ddaf543404f9dd42d734083f5bbb9a/build-end.log
Complete log : http://autobuild.buildroot.net/results/867c8631e5ddaf543404f9dd42d734083f5bbb9a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/867c8631e5ddaf543404f9dd42d734083f5bbb9a/config
Defconfig : http://autobuild.buildroot.net/results/867c8631e5ddaf543404f9dd42d734083f5bbb9a/defconfig
Build 7e9fdc8a4994b5e93f8e3835fffa8c249ff67b09
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 20:54:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3ceffe9659ae4a98a4127812126379a263ab991e
End of log : http://autobuild.buildroot.net/results/7e9fdc8a4994b5e93f8e3835fffa8c249ff67b09/build-end.log
Complete log : http://autobuild.buildroot.net/results/7e9fdc8a4994b5e93f8e3835fffa8c249ff67b09/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7e9fdc8a4994b5e93f8e3835fffa8c249ff67b09/config
Defconfig : http://autobuild.buildroot.net/results/7e9fdc8a4994b5e93f8e3835fffa8c249ff67b09/defconfig
Build 0fbbabe5d40f88bf0ad3196b3699be77ba46c20b
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 21:32:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=303c922c62d2eb08ce3ffb02206b9bf959b305dc
End of log : http://autobuild.buildroot.net/results/0fbbabe5d40f88bf0ad3196b3699be77ba46c20b/build-end.log
Complete log : http://autobuild.buildroot.net/results/0fbbabe5d40f88bf0ad3196b3699be77ba46c20b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0fbbabe5d40f88bf0ad3196b3699be77ba46c20b/config
Defconfig : http://autobuild.buildroot.net/results/0fbbabe5d40f88bf0ad3196b3699be77ba46c20b/defconfig
Build 6099f44cdcb6050c9a4b9eed1fb4bb06217b1171
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 21:59:55
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
End of log : http://autobuild.buildroot.net/results/6099f44cdcb6050c9a4b9eed1fb4bb06217b1171/build-end.log
Complete log : http://autobuild.buildroot.net/results/6099f44cdcb6050c9a4b9eed1fb4bb06217b1171/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6099f44cdcb6050c9a4b9eed1fb4bb06217b1171/config
Defconfig : http://autobuild.buildroot.net/results/6099f44cdcb6050c9a4b9eed1fb4bb06217b1171/defconfig
Build 9a1665497ea87112893f8586089dbbf2a126b6f1
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 22:09:25
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
End of log : http://autobuild.buildroot.net/results/9a1665497ea87112893f8586089dbbf2a126b6f1/build-end.log
Complete log : http://autobuild.buildroot.net/results/9a1665497ea87112893f8586089dbbf2a126b6f1/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9a1665497ea87112893f8586089dbbf2a126b6f1/config
Defconfig : http://autobuild.buildroot.net/results/9a1665497ea87112893f8586089dbbf2a126b6f1/defconfig
Build 1742dfc07c27cfa91e1b253a2b16142206413b6b
==============================================
Status : NOK
Failure reason : libseccomp-1.0.0
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-12-16 22:26:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
End of log : http://autobuild.buildroot.net/results/1742dfc07c27cfa91e1b253a2b16142206413b6b/build-end.log
Complete log : http://autobuild.buildroot.net/results/1742dfc07c27cfa91e1b253a2b16142206413b6b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1742dfc07c27cfa91e1b253a2b16142206413b6b/config
Defconfig : http://autobuild.buildroot.net/results/1742dfc07c27cfa91e1b253a2b16142206413b6b/defconfig
Build cf5c3ce94c229204bfa0f19b1009c13a9bcc1dfc
==============================================
Status : NOK
Failure reason : netatalk-3.0
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 22:41:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
End of log : http://autobuild.buildroot.net/results/cf5c3ce94c229204bfa0f19b1009c13a9bcc1dfc/build-end.log
Complete log : http://autobuild.buildroot.net/results/cf5c3ce94c229204bfa0f19b1009c13a9bcc1dfc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cf5c3ce94c229204bfa0f19b1009c13a9bcc1dfc/config
Defconfig : http://autobuild.buildroot.net/results/cf5c3ce94c229204bfa0f19b1009c13a9bcc1dfc/defconfig
Build 5866f151873ce8d56ad125e898de3e689dde3128
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 22:44:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
End of log : http://autobuild.buildroot.net/results/5866f151873ce8d56ad125e898de3e689dde3128/build-end.log
Complete log : http://autobuild.buildroot.net/results/5866f151873ce8d56ad125e898de3e689dde3128/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5866f151873ce8d56ad125e898de3e689dde3128/config
Defconfig : http://autobuild.buildroot.net/results/5866f151873ce8d56ad125e898de3e689dde3128/defconfig
Build c59c87fd349d637078150dec4489cf168f11f627
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.26
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 22:45:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
End of log : http://autobuild.buildroot.net/results/c59c87fd349d637078150dec4489cf168f11f627/build-end.log
Complete log : http://autobuild.buildroot.net/results/c59c87fd349d637078150dec4489cf168f11f627/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c59c87fd349d637078150dec4489cf168f11f627/config
Defconfig : http://autobuild.buildroot.net/results/c59c87fd349d637078150dec4489cf168f11f627/defconfig
Build ffe88821bedec3507e67e088559e069a11b27367
==============================================
Status : NOK
Failure reason : libnl-3.2.16
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 22:57:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
End of log : http://autobuild.buildroot.net/results/ffe88821bedec3507e67e088559e069a11b27367/build-end.log
Complete log : http://autobuild.buildroot.net/results/ffe88821bedec3507e67e088559e069a11b27367/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ffe88821bedec3507e67e088559e069a11b27367/config
Defconfig : http://autobuild.buildroot.net/results/ffe88821bedec3507e67e088559e069a11b27367/defconfig
Build 91a51dfb1201a5a2d602d6d1d0cab5302a54907e
==============================================
Status : NOK
Failure reason : directfb-1.4.17
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 23:04:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
End of log : http://autobuild.buildroot.net/results/91a51dfb1201a5a2d602d6d1d0cab5302a54907e/build-end.log
Complete log : http://autobuild.buildroot.net/results/91a51dfb1201a5a2d602d6d1d0cab5302a54907e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/91a51dfb1201a5a2d602d6d1d0cab5302a54907e/config
Defconfig : http://autobuild.buildroot.net/results/91a51dfb1201a5a2d602d6d1d0cab5302a54907e/defconfig
Build 74cc8b7025230673587351977b0d2f9817d9662f
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 23:13:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
End of log : http://autobuild.buildroot.net/results/74cc8b7025230673587351977b0d2f9817d9662f/build-end.log
Complete log : http://autobuild.buildroot.net/results/74cc8b7025230673587351977b0d2f9817d9662f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/74cc8b7025230673587351977b0d2f9817d9662f/config
Defconfig : http://autobuild.buildroot.net/results/74cc8b7025230673587351977b0d2f9817d9662f/defconfig
Build 72fab7bf1589a1dbc00289cf8b64e90104cb2720
==============================================
Status : NOK
Failure reason : e2fsprogs-1.42.6
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-16 23:26:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
End of log : http://autobuild.buildroot.net/results/72fab7bf1589a1dbc00289cf8b64e90104cb2720/build-end.log
Complete log : http://autobuild.buildroot.net/results/72fab7bf1589a1dbc00289cf8b64e90104cb2720/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/72fab7bf1589a1dbc00289cf8b64e90104cb2720/config
Defconfig : http://autobuild.buildroot.net/results/72fab7bf1589a1dbc00289cf8b64e90104cb2720/defconfig
--
http://autobuild.buildroot.net
^ permalink raw reply
* [Buildroot] [PATCH] qwt: new package
From: Arnout Vandecappelle @ 2012-12-17 6:55 UTC (permalink / raw)
To: buildroot
In-Reply-To: <877goifgwv.fsf@dell.be.48ers.dk>
On 16/12/12 11:08, Peter Korsgaard wrote:
> Samuel> +define QWT_CLEAN_CMDS
> Samuel> + -$(MAKE) -C $(@D) clean
> Samuel> + -rm $(TARGET_DIR)/usr/lib/libqwt.so.*
>
> If we cannot clean completely (E.G. everything else installed into
> staging), then I prefer just not providing a clean target.
Begging to differ: I think it does make sense to have clean commands
but no uninstall commands. Of course, the definition above should have
been split up into a clean and an uninstall.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH] package/libseccomp: works only on x86
From: Peter Korsgaard @ 2012-12-17 6:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355698594-25590-1-git-send-email-yann.morin.1998@free.fr>
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
Yann> As it is, the libseccomp code explicitly checks for x86 (32- or 64-bit),
Yann> so it can't work on other architectures.
Committed, thanks.
It seems we'll need the same for spice:
http://autobuild.buildroot.net/results/36fbda99bcddbce8b66c87ae5ee8d4f9105bd296/build-end.log
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] package/libseccomp: works only on x86
From: Peter Korsgaard @ 2012-12-17 6:25 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=3472e094a18147ab8deefbb8dd47d07c041cc222
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
As it is, the libseccomp code explicitly checks for x86 (32- or 64-bit),
so it can't work on other architectures.
Reported-by: Peter Korsgaard <jacmet@uclibc.org>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/libseccomp/Config.in | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/package/libseccomp/Config.in b/package/libseccomp/Config.in
index 1e524d2..9ee1697 100644
--- a/package/libseccomp/Config.in
+++ b/package/libseccomp/Config.in
@@ -1,5 +1,6 @@
config BR2_PACKAGE_LIBSECCOMP
bool "libseccomp"
+ depends on BR2_i386 || BR2_x86_64
help
High level interface to the Linux Kernel's seccomp filter
^ permalink raw reply related
* [Buildroot] [PATCH 26/27] package/qemu: enable a static build
From: Yann E. MORIN @ 2012-12-16 23:22 UTC (permalink / raw)
To: buildroot
In-Reply-To: <2fc3655574313a23489d70e1d777c710866b63b7.1355677144.git.yann.morin.1998@free.fr>
All,
On Sunday 16 December 2012 Yann E. MORIN wrote:
[--SNIP--]
> diff --git a/package/qemu/Config.in b/package/qemu/Config.in
> index 435775a..f88a1f4 100644
> --- a/package/qemu/Config.in
> +++ b/package/qemu/Config.in
[--SNIP--]
> @@ -238,6 +244,24 @@ config BR2_PACKAGE_QEMU_SOUND_SDL
>
> Note: this is only for system emulation, not user emulation.
>
> +<<<<<<< HEAD
> +=======
Bummer. Fixed.
> +# Alsa can not build both shared and static libs at the same time.
> +# But we may want to build QEMU staticaly, even though the global
> +# BR2_PREFER_STATIC_LIB is not set. Disable that case.
> +config BR2_PACKAGE_QEMU_SOUND_ALSA
> + bool "Enable sound via alsa"
> + depends on !BR2_PACKAGE_QEMU_STATIC || BR2_PREFER_STATIC_LIB
> + select BR2_PACKAGE_ALSA_LIB
> + help
> + Say 'y' here to have QEMU play sound from the VMs via alsa.
> +
> + Note: this is only for system emulation, not user emulation.
> +
> +comment "Alsa sound static link works only if BR2_PREFER_STATIC is set"
> + depends on BR2_PACKAGE_QEMU_STATIC && !BR2_PREFER_STATIC_LIB
> +
> +>>>>>>> dd73234... package/qemu: enable a static build
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply
* [Buildroot] [PATCH] netatalk : Fix BerkeleyDB library path
From: Maxime Hadjinlian @ 2012-12-16 23:15 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87pq29bq11.fsf@dell.be.48ers.dk>
On Sun, Dec 16, 2012 at 11:17 PM, Peter Korsgaard <jacmet@uclibc.org> wrote:
>>>>>> "Maxime" == Maxime Hadjinlian <maxime.hadjinlian@gmail.com> writes:
>
> Maxime> This fix is needed for the 64bits build because Netatalk will assume the library
> Maxime> are stored in [..]/lib64/ instead of [..]/lib/
>
> Hmm, we still seem to have issues on the autobuilders:
>
> http://autobuild.buildroot.net/results/cf5c3ce94c229204bfa0f19b1009c13a9bcc1dfc/build-end.log
>
> Maxime> +++ b/package/netatalk/netatalk.mk
> Maxime> @@ -8,7 +8,7 @@ NETATALK_SITE = http://downloads.sourceforge.net/project/netatalk/netatalk/$(NET
> Maxime> NETATALK_SOURCE = netatalk-$(NETATALK_VERSION).tar.bz2
>
> Maxime> NETATALK_DEPENDENCIES = host-pkgconf openssl berkeleydb libgcrypt libgpg-error
> Maxime> -NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99"
> Maxime> +NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99" BDB_LIB=$(STAGING_LIB)/usr/lib
>
>
> I guess you meant STAGING_DIR instead here, will fix.
This is strange because I tested with a 64 bits build and I had'nt the
problem anymore.. And I don't remember rewriting the patch before
sending it here. But then again, you're totally right, this does'nt
make sense. I'm really wondering how it could have worked for me :/
>
> --
> Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] package/libseccomp: works only on x86
From: Yann E. MORIN @ 2012-12-16 22:56 UTC (permalink / raw)
To: buildroot
As it is, the libseccomp code explicitly checks for x86 (32- or 64-bit),
so it can't work on other architectures.
Reported-by: Peter Korsgaard <jacmet@uclibc.org>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
package/libseccomp/Config.in | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/package/libseccomp/Config.in b/package/libseccomp/Config.in
index 1e524d2..9ee1697 100644
--- a/package/libseccomp/Config.in
+++ b/package/libseccomp/Config.in
@@ -1,5 +1,6 @@
config BR2_PACKAGE_LIBSECCOMP
bool "libseccomp"
+ depends on BR2_i386 || BR2_x86_64
help
High level interface to the Linux Kernel's seccomp filter
--
1.7.2.5
^ permalink raw reply related
* [Buildroot] [PATCH 12/19] package/libseccomp: new package
From: Peter Korsgaard @ 2012-12-16 22:19 UTC (permalink / raw)
To: buildroot
In-Reply-To: <caac6f2b10b2b3a3d473e552c106e9e748243cf9.1355676845.git.yann.morin.1998@free.fr>
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
Yann> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Yann> ---
Yann> package/Config.in | 1 +
Yann> package/libseccomp/Config.in | 13 +++++++++++
Yann> ...ibseccomp-use-system-headers-from-sysroot.patch | 17 +++++++++++++++
Yann> package/libseccomp/libseccomp.mk | 22 ++++++++++++++++++++
There seem to be some arch dependent issues on atleast powerpc:
http://autobuild.buildroot.net/results/1742dfc07c27cfa91e1b253a2b16142206413b6b/build-end.log
Care to have a look?
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] netatalk: fix STAGING_DIR typo
From: Peter Korsgaard @ 2012-12-16 22:17 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=bdafee20a64492daa4d6dc4f3aaf4516c53e12ba
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/netatalk/netatalk.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/netatalk/netatalk.mk b/package/netatalk/netatalk.mk
index 23c2a95..46355ce 100644
--- a/package/netatalk/netatalk.mk
+++ b/package/netatalk/netatalk.mk
@@ -8,7 +8,7 @@ NETATALK_SITE = http://downloads.sourceforge.net/project/netatalk/netatalk/$(NET
NETATALK_SOURCE = netatalk-$(NETATALK_VERSION).tar.bz2
NETATALK_DEPENDENCIES = host-pkgconf openssl berkeleydb libgcrypt libgpg-error
-NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99" BDB_LIB=$(STAGING_LIB)/usr/lib
+NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99" BDB_LIB=$(STAGING_DIR)/usr/lib
NETATALK_CONF_OPT += --with-cnid-cdb-backend \
--with-bdb=$(STAGING_DIR)/usr \
--disable-zeroconf \
^ permalink raw reply related
* [Buildroot] [PATCH] netatalk : Fix BerkeleyDB library path
From: Peter Korsgaard @ 2012-12-16 22:17 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354981988-32415-1-git-send-email-maxime.hadjinlian@gmail.com>
>>>>> "Maxime" == Maxime Hadjinlian <maxime.hadjinlian@gmail.com> writes:
Maxime> This fix is needed for the 64bits build because Netatalk will assume the library
Maxime> are stored in [..]/lib64/ instead of [..]/lib/
Hmm, we still seem to have issues on the autobuilders:
http://autobuild.buildroot.net/results/cf5c3ce94c229204bfa0f19b1009c13a9bcc1dfc/build-end.log
Maxime> +++ b/package/netatalk/netatalk.mk
Maxime> @@ -8,7 +8,7 @@ NETATALK_SITE = http://downloads.sourceforge.net/project/netatalk/netatalk/$(NET
Maxime> NETATALK_SOURCE = netatalk-$(NETATALK_VERSION).tar.bz2
Maxime> NETATALK_DEPENDENCIES = host-pkgconf openssl berkeleydb libgcrypt libgpg-error
Maxime> -NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99"
Maxime> +NETATALK_CONF_ENV += CC="$(TARGET_CC) -std=gnu99" BDB_LIB=$(STAGING_LIB)/usr/lib
I guess you meant STAGING_DIR instead here, will fix.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH 12/19] package/libseccomp: new package
From: Yann E. MORIN @ 2012-12-16 20:42 UTC (permalink / raw)
To: buildroot
In-Reply-To: <871uepd968.fsf@dell.be.48ers.dk>
Peter, All,
On Sunday 16 December 2012 Peter Korsgaard wrote:
> >>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
[--SNIP--]
> Yann> diff --git a/package/libseccomp/Config.in b/package/libseccomp/Config.in
> Yann> new file mode 100644
> Yann> index 0000000..183cf4e
> Yann> --- /dev/null
> Yann> +++ b/package/libseccomp/Config.in
> Yann> @@ -0,0 +1,13 @@
> Yann> +config BR2_PACKAGE_LIBSECCOMP
> Yann> + bool "libseccomp"
> Yann> + help
> Yann> + High level interface to the Linux Kernel's seccomp filter
> Yann> +
> Yann> + The libseccomp library provides and easy to use, platform independent,
>
> s/and/an/. I know this is just cut'n'pasted from the sf.net website, but
> I've fixed it anyway and committed, thanks.
Thank you!
Regards,
Yamnn E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply
* [Buildroot] [PATCH 13/19] package/keyutils: new package
From: Peter Korsgaard @ 2012-12-16 20:39 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1280f35f9f32881fd0158fd3cfda65e83fc953ce.1355676845.git.yann.morin.1998@free.fr>
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
Yann> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Yann> Cc: Jarkko Sakkinen <jarkko.sakkinen@iki.fi>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] package/keyutils: new package
From: Peter Korsgaard @ 2012-12-16 20:39 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=90934a3de8364038b05d33b8145fd6d506809a64
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Jarkko Sakkinen <jarkko.sakkinen@iki.fi>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/Config.in | 1 +
package/keyutils/Config.in | 7 ++
.../keyutils-01-memleak-from-realloc.patch | 51 +++++++++++++++
package/keyutils/keyutils-02-another-memleak.patch | 32 ++++++++++
package/keyutils/keyutils-03-cifs.patch | 15 +++++
.../keyutils-04-Makefile-for-buildroot.patch | 65 ++++++++++++++++++++
.../keyutils/keyutils-05-fix-install-rule.patch | 19 ++++++
package/keyutils/keyutils.mk | 32 ++++++++++
8 files changed, 222 insertions(+), 0 deletions(-)
diff --git a/package/Config.in b/package/Config.in
index 1b8c5b3..d6af55d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -741,6 +741,7 @@ endif
source "package/bwm-ng/Config.in"
source "package/cpuload/Config.in"
source "package/htop/Config.in"
+source "package/keyutils/Config.in"
source "package/kmod/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/module-init-tools/Config.in"
diff --git a/package/keyutils/Config.in b/package/keyutils/Config.in
new file mode 100644
index 0000000..9b5a24b
--- /dev/null
+++ b/package/keyutils/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_KEYUTILS
+ bool "keyutils"
+ help
+ These tools are used to control the key management system
+ built into the Linux kernel.
+
+ http://people.redhat.com/~dhowells/keyutils/
diff --git a/package/keyutils/keyutils-01-memleak-from-realloc.patch b/package/keyutils/keyutils-01-memleak-from-realloc.patch
new file mode 100644
index 0000000..0faa9d8
--- /dev/null
+++ b/package/keyutils/keyutils-01-memleak-from-realloc.patch
@@ -0,0 +1,51 @@
+Patch vampirised from Debian's packaging of keyutils-1.4
+
+Author: Michael Gebetsroither <gebi@grml.org>
+Description: Fixed memleak from realloc (Closes: #496466).
+
+diff -Naurp keyutils.orig/keyutils.c keyutils/keyutils.c
+--- keyutils.orig/keyutils.c 2008-08-09 21:46:52.000000000 +0200
++++ keyutils/keyutils.c 2008-08-25 13:38:07.000000000 +0200
+@@ -165,6 +165,24 @@ long keyctl_assume_authority(key_serial_
+ return keyctl(KEYCTL_ASSUME_AUTHORITY, id);
+ }
+
++
++/*****************************************************************************/
++/*
++ * plain realloc is just crazy
++ */
++static void* __xrealloc(void* ptr, size_t size)
++{
++ void* ret;
++
++ ret = realloc(ptr, size);
++ if(!ret) {
++ free(ptr);
++ return 0;
++ }
++ return ret;
++}
++
++
+ /*****************************************************************************/
+ /*
+ * fetch key description into an allocated buffer
+@@ -194,7 +212,7 @@ int keyctl_describe_alloc(key_serial_t i
+ break;
+
+ buflen = ret;
+- buf = realloc(buf, buflen);
++ buf = __xrealloc(buf, buflen);
+ if (!buf)
+ return -1;
+ }
+@@ -233,7 +251,7 @@ int keyctl_read_alloc(key_serial_t id, v
+ break;
+
+ buflen = ret;
+- buf = realloc(buf, buflen + 1);
++ buf = __xrealloc(buf, buflen + 1);
+ if (!buf)
+ return -1;
+ }
diff --git a/package/keyutils/keyutils-02-another-memleak.patch b/package/keyutils/keyutils-02-another-memleak.patch
new file mode 100644
index 0000000..f74fd79
--- /dev/null
+++ b/package/keyutils/keyutils-02-another-memleak.patch
@@ -0,0 +1,32 @@
+Patch vampirised from Debian's packaging of keyutils-1.4
+
+Author: Michael Gebetsroither <gebi@grml.org>
+Description: Fixed another memleak (Closes: #496466).
+
+diff -Naurp keyutils.orig/keyutils.c keyutils/keyutils.c
+--- keyutils.orig/keyutils.c 2008-08-09 21:46:52.000000000 +0200
++++ keyutils/keyutils.c 2008-08-25 13:38:25.000000000 +0200
+@@ -187,8 +187,10 @@ int keyctl_describe_alloc(key_serial_t i
+
+ for (;;) {
+ ret = keyctl_describe(id, buf, buflen);
+- if (ret < 0)
++ if (ret < 0) {
++ free(buf);
+ return -1;
++ }
+
+ if (buflen >= ret)
+ break;
+@@ -226,8 +228,10 @@ int keyctl_read_alloc(key_serial_t id, v
+
+ for (;;) {
+ ret = keyctl_read(id, buf, buflen);
+- if (ret < 0)
++ if (ret < 0) {
++ free(buf);
+ return -1;
++ }
+
+ if (buflen >= ret)
+ break;
diff --git a/package/keyutils/keyutils-03-cifs.patch b/package/keyutils/keyutils-03-cifs.patch
new file mode 100644
index 0000000..b2903f9
--- /dev/null
+++ b/package/keyutils/keyutils-03-cifs.patch
@@ -0,0 +1,15 @@
+Patch vampirised from Debian's packaging of keyutils-1.4
+
+Author: Marcus Meissner <meissner@suse.de>
+Description: Added 2 cifs helpers to request-key.conf (for CIFS DFS support)
+
+diff -Naurp keyutils.orig/request-key.conf keyutils/request-key.conf
+--- keyutils.orig/request-key.conf 2008-09-07 23:53:10.000000000 +0000
++++ keyutils/request-key.conf 2009-02-05 00:53:00.000000000 +0000
+@@ -34,4 +34,6 @@
+ create user debug:* negate /bin/keyctl negate %k 30 %S
+ create user debug:loop:* * |/bin/cat
+ create user debug:* * /usr/share/keyutils/request-key-debug.sh %k %d %c %S
++create cifs.spnego * * /usr/sbin/cifs.upcall -c %k
++create dns_resolver * * /usr/sbin/cifs.upcall %k
+ negate * * * /bin/keyctl negate %k 30 %S
diff --git a/package/keyutils/keyutils-04-Makefile-for-buildroot.patch b/package/keyutils/keyutils-04-Makefile-for-buildroot.patch
new file mode 100644
index 0000000..e10abd5
--- /dev/null
+++ b/package/keyutils/keyutils-04-Makefile-for-buildroot.patch
@@ -0,0 +1,65 @@
+diff -durN keyutils-1.5.5.orig/Makefile keyutils-1.5.5/Makefile
+--- keyutils-1.5.5.orig/Makefile 2011-11-30 16:27:43.000000000 +0100
++++ keyutils-1.5.5/Makefile 2012-08-14 17:06:07.064412101 +0200
+@@ -1,7 +1,5 @@
+-CPPFLAGS := -I.
+-CFLAGS := -g -Wall -Werror
+-INSTALL := install
+-DESTDIR :=
++CPPFLAGS += -I.
++CFLAGS += -g -Wall -Werror
+ SPECFILE := keyutils.spec
+ NO_GLIBC_KEYERR := 0
+ NO_ARLIB := 0
+@@ -14,7 +12,7 @@
+ MAN5 := /usr/share/man/man5
+ MAN8 := /usr/share/man/man8
+ INCLUDEDIR := /usr/include
+-LNS := ln -sf
++LNS := $(LN) -sf
+
+ ###############################################################################
+ #
+@@ -48,29 +46,6 @@
+
+ ###############################################################################
+ #
+-# Guess at the appropriate lib directory and word size
+-#
+-###############################################################################
+-LIBDIR := $(shell ldd /usr/bin/make | grep '\(/libc\)' | sed -e 's!.*\(/.*\)/libc[.].*!\1!')
+-USRLIBDIR := $(patsubst /lib/%,/usr/lib/%,$(LIBDIR))
+-BUILDFOR := $(shell file /usr/bin/make | sed -e 's!.*ELF \(32\|64\)-bit.*!\1!')-bit
+-
+-LNS := ln -sf
+-
+-ifeq ($(BUILDFOR),32-bit)
+-CFLAGS += -m32
+-LIBDIR := /lib
+-USRLIBDIR := /usr/lib
+-else
+-ifeq ($(BUILDFOR),64-bit)
+-CFLAGS += -m64
+-LIBDIR := /lib64
+-USRLIBDIR := /usr/lib64
+-endif
+-endif
+-
+-###############################################################################
+-#
+ # This is necessary if glibc doesn't know about the key management error codes
+ #
+ ###############################################################################
+@@ -110,10 +85,10 @@
+
+
+ $(DEVELLIB): $(SONAME)
+- ln -sf $< $@
++ $(LNS) $< $@
+
+ $(SONAME): $(LIBNAME)
+- ln -sf $< $@
++ $(LNS) $< $@
+
+ LIBVERS := -shared -Wl,-soname,$(SONAME) -Wl,--version-script,version.lds
+
diff --git a/package/keyutils/keyutils-05-fix-install-rule.patch b/package/keyutils/keyutils-05-fix-install-rule.patch
new file mode 100644
index 0000000..74e5670
--- /dev/null
+++ b/package/keyutils/keyutils-05-fix-install-rule.patch
@@ -0,0 +1,19 @@
+Makefile: fix install rule
+
+Do not link the .so with an absolute path, otherwise it may point to
+the host library.
+
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+
+diff -durN keyutils-1.5.5.orig/Makefile keyutils-1.5.5/Makefile
+--- keyutils-1.5.5.orig/Makefile 2012-10-22 20:11:57.188548033 +0200
++++ keyutils-1.5.5/Makefile 2012-10-22 20:14:40.868236838 +0200
+@@ -127,7 +127,7 @@
+ $(INSTALL) -D $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(LIBNAME)
+ $(LNS) $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(SONAME)
+ mkdir -p $(DESTDIR)$(USRLIBDIR)
+- $(LNS) $(LIBDIR)/$(SONAME) $(DESTDIR)$(USRLIBDIR)/$(DEVELLIB)
++ $(LNS) $(SONAME) $(DESTDIR)$(USRLIBDIR)/$(DEVELLIB)
+ $(INSTALL) -D keyctl $(DESTDIR)$(BINDIR)/keyctl
+ $(INSTALL) -D request-key $(DESTDIR)$(SBINDIR)/request-key
+ $(INSTALL) -D request-key-debug.sh $(DESTDIR)$(SHAREDIR)/request-key-debug.sh
diff --git a/package/keyutils/keyutils.mk b/package/keyutils/keyutils.mk
new file mode 100644
index 0000000..184b58d
--- /dev/null
+++ b/package/keyutils/keyutils.mk
@@ -0,0 +1,32 @@
+#############################################################
+#
+# keyutils
+#
+##############################################################
+
+KEYUTILS_VERSION = 1.5.5
+KEYUTILS_SOURCE = keyutils-$(KEYUTILS_VERSION).tar.bz2
+KEYUTILS_SITE = http://people.redhat.com/~dhowells/keyutils
+KEYUTILS_LICENSE = GPLv2+ LGPLv2.1+
+KEYUTILS_LICENSE_FILES = LICENCE.GPL LICENCE.LGPL
+KEYUTILS_INSTALL_STAGING = YES
+
+KEYUTILS_MAKE_ENV = \
+ INSTALL=$(INSTALL) \
+ LIBDIR=/usr/lib \
+ USRLIBDIR=/usr/lib \
+ LN=$(HOSTLN) \
+
+define KEYUTILS_BUILD_CMDS
+ $(KEYUTILS_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
+endef
+
+define KEYUTILS_INSTALL_STAGING_CMDS
+ $(KEYUTILS_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) install
+endef
+
+define KEYUTILS_INSTALL_TARGET_CMDS
+ $(KEYUTILS_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
+endef
+
+$(eval $(generic-package))
^ permalink raw reply related
* [Buildroot] [PATCH 12/19] package/libseccomp: new package
From: Peter Korsgaard @ 2012-12-16 20:38 UTC (permalink / raw)
To: buildroot
In-Reply-To: <caac6f2b10b2b3a3d473e552c106e9e748243cf9.1355676845.git.yann.morin.1998@free.fr>
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
Yann> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Yann> ---
Yann> package/Config.in | 1 +
Yann> package/libseccomp/Config.in | 13 +++++++++++
Yann> ...ibseccomp-use-system-headers-from-sysroot.patch | 17 +++++++++++++++
Yann> package/libseccomp/libseccomp.mk | 22 ++++++++++++++++++++
Yann> 4 files changed, 53 insertions(+), 0 deletions(-)
Yann> create mode 100644 package/libseccomp/Config.in
Yann> create mode 100644 package/libseccomp/libseccomp-use-system-headers-from-sysroot.patch
Yann> create mode 100644 package/libseccomp/libseccomp.mk
Yann> diff --git a/package/Config.in b/package/Config.in
Yann> index eff2887..2f67d10 100644
Yann> --- a/package/Config.in
Yann> +++ b/package/Config.in
Yann> @@ -523,6 +523,7 @@ source "package/libical/Config.in"
Yann> source "package/libnspr/Config.in"
Yann> source "package/libsigc/Config.in"
Yann> source "package/libtpl/Config.in"
Yann> +source "package/libseccomp/Config.in"
Yann> source "package/liburcu/Config.in"
Yann> source "package/linux-pam/Config.in"
Yann> source "package/lttng-libust/Config.in"
Yann> diff --git a/package/libseccomp/Config.in b/package/libseccomp/Config.in
Yann> new file mode 100644
Yann> index 0000000..183cf4e
Yann> --- /dev/null
Yann> +++ b/package/libseccomp/Config.in
Yann> @@ -0,0 +1,13 @@
Yann> +config BR2_PACKAGE_LIBSECCOMP
Yann> + bool "libseccomp"
Yann> + help
Yann> + High level interface to the Linux Kernel's seccomp filter
Yann> +
Yann> + The libseccomp library provides and easy to use, platform independent,
s/and/an/. I know this is just cut'n'pasted from the sf.net website, but
I've fixed it anyway and committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] package/libseccomp: new package
From: Peter Korsgaard @ 2012-12-16 20:37 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=fd303038febaf7008a1f04262dc5decb32d1cfab
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
[Peter: fix typo in help text]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/Config.in | 1 +
package/libseccomp/Config.in | 13 +++++++++++
| 17 +++++++++++++++
package/libseccomp/libseccomp.mk | 22 ++++++++++++++++++++
4 files changed, 53 insertions(+), 0 deletions(-)
diff --git a/package/Config.in b/package/Config.in
index d3f5e80..1b8c5b3 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -524,6 +524,7 @@ source "package/libical/Config.in"
source "package/libnspr/Config.in"
source "package/libsigc/Config.in"
source "package/libtpl/Config.in"
+source "package/libseccomp/Config.in"
source "package/liburcu/Config.in"
source "package/linux-pam/Config.in"
source "package/lttng-libust/Config.in"
diff --git a/package/libseccomp/Config.in b/package/libseccomp/Config.in
new file mode 100644
index 0000000..1e524d2
--- /dev/null
+++ b/package/libseccomp/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_LIBSECCOMP
+ bool "libseccomp"
+ help
+ High level interface to the Linux Kernel's seccomp filter
+
+ The libseccomp library provides an easy to use, platform independent,
+ interface to the Linux Kernel's syscall filtering mechanism: seccomp.
+ The libseccomp API is designed to abstract away the underlying BPF
+ based syscall filter language and present a more conventional
+ function-call based filtering interface that should be familiar to,
+ and easily adopted by application developers.
+
+ http://sourceforge.net/projects/libseccomp/
--git a/package/libseccomp/libseccomp-use-system-headers-from-sysroot.patch b/package/libseccomp/libseccomp-use-system-headers-from-sysroot.patch
new file mode 100644
index 0000000..0997edd
--- /dev/null
+++ b/package/libseccomp/libseccomp-use-system-headers-from-sysroot.patch
@@ -0,0 +1,17 @@
+configure: check headers in sysroot, not in host's system headers
+
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+
+diff -durN libseccomp-1.0.0.orig/configure libseccomp-1.0.0/configure
+--- libseccomp-1.0.0.orig/configure 2012-07-27 22:35:05.000000000 +0200
++++ libseccomp-1.0.0/configure 2012-10-27 00:12:50.739196219 +0200
+@@ -205,7 +205,8 @@
+ #
+
+ # system seccomp includes
+-if [[ -r "/usr/include/linux/seccomp.h" ]]; then
++# ${SYSROOT} added by buildroot for cross-compilation
++if [[ -r "${SYSROOT}/usr/include/linux/seccomp.h" ]]; then
+ opt_sysinc_seccomp="yes"
+ else
+ opt_sysinc_seccomp="no"
diff --git a/package/libseccomp/libseccomp.mk b/package/libseccomp/libseccomp.mk
new file mode 100644
index 0000000..73fe632
--- /dev/null
+++ b/package/libseccomp/libseccomp.mk
@@ -0,0 +1,22 @@
+#############################################################
+#
+# libseccomp
+#
+#############################################################
+
+LIBSECCOMP_VERSION = 1.0.0
+LIBSECCOMP_SOURCE = libseccomp-$(LIBSECCOMP_VERSION).tar.gz
+LIBSECCOMP_SITE = http://downloads.sourceforge.net/project/libseccomp
+LIBSECCOMP_LICENSE = LGPLv2.1
+LIBSECCOMP_LICENSE_FILES = LICENSE
+LIBSECCOMP_INSTALL_STAGING = YES
+
+# Needed for configure to find our system headers:
+LIBSECCOMP_CONF_ENV = SYSROOT=$(STAGING_DIR)
+LIBSECCOMP_MAKE_ENV = $(TARGET_CONFIGURE_OPTS)
+LIBSECCOMP_MAKE_OPT = SUBDIRS_BUILD=src
+LIBSECCOMP_INSTALL_STAGING_OPT = SUBDIRS_BUILD=src SUBDIRS_INSTALL="src include" DESTDIR=$(STAGING_DIR) install
+LIBSECCOMP_INSTALL_TARGET_OPT = SUBDIRS_BUILD=src SUBDIRS_INSTALL="src include" DESTDIR=$(TARGET_DIR) install
+
+# Not a real autotools package, but works quite OK nonetheless
+$(eval $(autotools-package))
^ permalink raw reply related
* [Buildroot] [PATCH 11/19] package/spice: enable slirp support
From: Peter Korsgaard @ 2012-12-16 20:35 UTC (permalink / raw)
To: buildroot
In-Reply-To: <0d0efc7aeef44df9f9f7af9cb27d9ca293ab2359.1355676845.git.yann.morin.1998@free.fr>
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
Yann> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] package/spice: enable slirp support
From: Peter Korsgaard @ 2012-12-16 20:35 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=5faf337b39a0515439b828c5ad12858fa9c02b38
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/spice/Config.in | 7 +++++++
package/spice/spice.mk | 8 +++++++-
2 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/package/spice/Config.in b/package/spice/Config.in
index 08c3893..b1e187a 100644
--- a/package/spice/Config.in
+++ b/package/spice/Config.in
@@ -41,4 +41,11 @@ config BR2_PACKAGE_SPICE_GUI
Say 'y' here to enable the Graphical User Interface (GUI)
start dialog.
+config BR2_PACKAGE_SPICE_TUNNEL
+ bool "Enable network redirection"
+ select BR2_PACKAGE_SLIRP
+ help
+ Say 'y' here to enable network redirection, aka tunnelling
+ through a SLIP/SLIRP session.
+
endif # BR2_PACKAGE_SPICE
diff --git a/package/spice/spice.mk b/package/spice/spice.mk
index 0a5c58e..78ca202 100644
--- a/package/spice/spice.mk
+++ b/package/spice/spice.mk
@@ -22,7 +22,6 @@ SPICE_DEPENDENCIES = \
# We disable everything for now, because the dependency tree can become
# quite deep if we try to enable some features, and I have not tested that.
SPICE_CONF_OPT = \
- --disable-tunnel \
--disable-opengl \
--disable-smartcard \
--disable-automated-tests \
@@ -44,6 +43,13 @@ else
SPICE_CONF_OPT += --disable-gui
endif
+ifeq ($(BR2_PACKAGE_SPICE_TUNNEL),y)
+SPICE_CONF_OPT += --enable-tunnel
+SPICE_DEPENDENCIES += slirp
+else
+SPICE_CONF_OPT += --disable-tunnel
+endif
+
SPICE_CONF_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages
SPICE_MAKE_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages
^ permalink raw reply related
* [Buildroot] [PATCH 10/19] package/spice: enable GUI
From: Peter Korsgaard @ 2012-12-16 20:35 UTC (permalink / raw)
To: buildroot
In-Reply-To: <a4e69702d8a9283387ebc0ac27e283f5fd5942a0.1355676845.git.yann.morin.1998@free.fr>
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
Yann> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox