* [Buildroot] [PATCH 07/12] libmnl: add license info
From: Gustavo Zacarias @ 2012-10-22 12:46 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350909989-1012-1-git-send-email-gustavo@zacarias.com.ar>
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/libmnl/libmnl.mk | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/package/libmnl/libmnl.mk b/package/libmnl/libmnl.mk
index 75bb238..1f71347 100644
--- a/package/libmnl/libmnl.mk
+++ b/package/libmnl/libmnl.mk
@@ -8,5 +8,7 @@ LIBMNL_VERSION = 1.0.3
LIBMNL_SOURCE = libmnl-$(LIBMNL_VERSION).tar.bz2
LIBMNL_SITE = http://netfilter.org/projects/libmnl/files
LIBMNL_INSTALL_STAGING = YES
+LIBMNL_LICENSE = LGPLv2.1+
+LIBMNL_LICENSE_FILES = COPYING
$(eval $(autotools-package))
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] [PATCH 06/12] libnetfilter_acct: add new package
From: Gustavo Zacarias @ 2012-10-22 12:46 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350909989-1012-1-git-send-email-gustavo@zacarias.com.ar>
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/Config.in | 1 +
package/libnetfilter_acct/Config.in | 12 ++++++++++++
package/libnetfilter_acct/libnetfilter-acct.mk | 15 +++++++++++++++
3 files changed, 28 insertions(+), 0 deletions(-)
create mode 100644 package/libnetfilter_acct/Config.in
create mode 100644 package/libnetfilter_acct/libnetfilter-acct.mk
diff --git a/package/Config.in b/package/Config.in
index bdf8c53..8a8af71 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -445,6 +445,7 @@ source "package/neon/Config.in"
source "package/libmnl/Config.in"
source "package/libmodbus/Config.in"
source "package/libmbus/Config.in"
+source "package/libnetfilter_acct/Config.in"
source "package/libnetfilter_conntrack/Config.in"
source "package/libnetfilter_cthelper/Config.in"
source "package/libnetfilter_cttimeout/Config.in"
diff --git a/package/libnetfilter_acct/Config.in b/package/libnetfilter_acct/Config.in
new file mode 100644
index 0000000..76cdf7d
--- /dev/null
+++ b/package/libnetfilter_acct/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_LIBNETFILTER_ACCT
+ bool "libnetfilter_acct"
+ depends on BR2_LARGEFILE
+ select BR2_PACKAGE_LIBMNL
+ help
+ libnetfilter_acct is the userspace library providing interface
+ to extended accounting infrastructure.
+
+ http://www.netfilter.org/projects/libnetfilter_acct/
+
+comment "libnetfilter_acct requires a toolchain with LARGEFILE support"
+ depends on !BR2_LARGEFILE
diff --git a/package/libnetfilter_acct/libnetfilter-acct.mk b/package/libnetfilter_acct/libnetfilter-acct.mk
new file mode 100644
index 0000000..753e604
--- /dev/null
+++ b/package/libnetfilter_acct/libnetfilter-acct.mk
@@ -0,0 +1,15 @@
+#############################################################
+#
+# libnetfilter-acct
+#
+#############################################################
+
+LIBNETFILTER_ACCT_VERSION = 1.0.1
+LIBNETFILTER_ACCT_SOURCE = libnetfilter_acct-$(LIBNETFILTER_ACCT_VERSION).tar.bz2
+LIBNETFILTER_ACCT_SITE = http://www.netfilter.org/projects/libnetfilter_acct/files
+LIBNETFILTER_ACCT_INSTALL_STAGING = YES
+LIBNETFILTER_ACCT_DEPENDENCIES = host-pkg-config libmnl
+LIBNETFILTER_ACCT_LICENSE = LGPLv2.1+
+LIBNETFILTER_ACCT_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] [PATCH 05/12] libnetfilter_queue: add new package
From: Gustavo Zacarias @ 2012-10-22 12:46 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350909989-1012-1-git-send-email-gustavo@zacarias.com.ar>
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/Config.in | 1 +
package/libnetfilter_queue/Config.in | 14 ++++++++++++++
package/libnetfilter_queue/libnetfilter-queue.mk | 15 +++++++++++++++
3 files changed, 30 insertions(+), 0 deletions(-)
create mode 100644 package/libnetfilter_queue/Config.in
create mode 100644 package/libnetfilter_queue/libnetfilter-queue.mk
diff --git a/package/Config.in b/package/Config.in
index 6fcaa09..bdf8c53 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -448,6 +448,7 @@ source "package/libmbus/Config.in"
source "package/libnetfilter_conntrack/Config.in"
source "package/libnetfilter_cthelper/Config.in"
source "package/libnetfilter_cttimeout/Config.in"
+source "package/libnetfilter_queue/Config.in"
source "package/libnfnetlink/Config.in"
source "package/libnl/Config.in"
source "package/liboping/Config.in"
diff --git a/package/libnetfilter_queue/Config.in b/package/libnetfilter_queue/Config.in
new file mode 100644
index 0000000..d06aa77
--- /dev/null
+++ b/package/libnetfilter_queue/Config.in
@@ -0,0 +1,14 @@
+config BR2_PACKAGE_LIBNETFILTER_QUEUE
+ bool "libnetfilter_queue"
+ depends on BR2_LARGEFILE
+ select BR2_PACKAGE_LIBNFNETLINK
+ select BR2_PACKAGE_LIBMNL
+ help
+ libnetfilter_queue is the userspace library that provides
+ the programming interface to the fine-grain
+ connection tracking timeout infrastructure.
+
+ http://www.netfilter.org/projects/libnetfilter_queue/
+
+comment "libnetfilter_queue requires a toolchain with LARGEFILE support"
+ depends on !BR2_LARGEFILE
diff --git a/package/libnetfilter_queue/libnetfilter-queue.mk b/package/libnetfilter_queue/libnetfilter-queue.mk
new file mode 100644
index 0000000..3b3dec4
--- /dev/null
+++ b/package/libnetfilter_queue/libnetfilter-queue.mk
@@ -0,0 +1,15 @@
+#############################################################
+#
+# libnetfilter-queue
+#
+#############################################################
+
+LIBNETFILTER_QUEUE_VERSION = 1.0.2
+LIBNETFILTER_QUEUE_SOURCE = libnetfilter_queue-$(LIBNETFILTER_QUEUE_VERSION).tar.bz2
+LIBNETFILTER_QUEUE_SITE = http://www.netfilter.org/projects/libnetfilter_queue/files
+LIBNETFILTER_QUEUE_INSTALL_STAGING = YES
+LIBNETFILTER_QUEUE_DEPENDENCIES = host-pkg-config libnfnetlink libmnl
+LIBNETFILTER_QUEUE_LICENSE = GPLv2
+LIBNETFILTER_QUEUE_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] [PATCH 04/12] libnetfilter_cthelper: add new package
From: Gustavo Zacarias @ 2012-10-22 12:46 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350909989-1012-1-git-send-email-gustavo@zacarias.com.ar>
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/Config.in | 1 +
package/libnetfilter_cthelper/Config.in | 11 +++++++++++
.../libnetfilter_cthelper/libnetfilter-cthelper.mk | 15 +++++++++++++++
3 files changed, 27 insertions(+), 0 deletions(-)
create mode 100644 package/libnetfilter_cthelper/Config.in
create mode 100644 package/libnetfilter_cthelper/libnetfilter-cthelper.mk
diff --git a/package/Config.in b/package/Config.in
index 1650c71..6fcaa09 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -446,6 +446,7 @@ source "package/libmnl/Config.in"
source "package/libmodbus/Config.in"
source "package/libmbus/Config.in"
source "package/libnetfilter_conntrack/Config.in"
+source "package/libnetfilter_cthelper/Config.in"
source "package/libnetfilter_cttimeout/Config.in"
source "package/libnfnetlink/Config.in"
source "package/libnl/Config.in"
diff --git a/package/libnetfilter_cthelper/Config.in b/package/libnetfilter_cthelper/Config.in
new file mode 100644
index 0000000..04f5e34
--- /dev/null
+++ b/package/libnetfilter_cthelper/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_LIBNETFILTER_CTHELPER
+ bool "libnetfilter_cthelper"
+ depends on BR2_LARGEFILE
+ select BR2_PACKAGE_LIBMNL
+ help
+ libnetfilter_cthelper is the userspace library that provides the programming interface to the user-space helper infrastructure available since Linux kernel 3.6.
+
+ http://www.netfilter.org/projects/libnetfilter_cthelper/
+
+comment "libnetfilter_cthelper requires a toolchain with LARGEFILE support"
+ depends on !BR2_LARGEFILE
diff --git a/package/libnetfilter_cthelper/libnetfilter-cthelper.mk b/package/libnetfilter_cthelper/libnetfilter-cthelper.mk
new file mode 100644
index 0000000..300b21c
--- /dev/null
+++ b/package/libnetfilter_cthelper/libnetfilter-cthelper.mk
@@ -0,0 +1,15 @@
+#############################################################
+#
+# libnetfilter-cthelper
+#
+#############################################################
+
+LIBNETFILTER_CTHELPER_VERSION = 1.0.0
+LIBNETFILTER_CTHELPER_SOURCE = libnetfilter_cthelper-$(LIBNETFILTER_CTHELPER_VERSION).tar.bz2
+LIBNETFILTER_CTHELPER_SITE = http://www.netfilter.org/projects/libnetfilter_cthelper/files
+LIBNETFILTER_CTHELPER_INSTALL_STAGING = YES
+LIBNETFILTER_CTHELPER_DEPENDENCIES = host-pkg-config libmnl
+LIBNETFILTER_CTHELPER_LICENSE = GPLv2
+LIBNETFILTER_CTHELPER_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] [PATCH 03/12] libnfnetlink: bump to version 1.0.1
From: Gustavo Zacarias @ 2012-10-22 12:46 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350909989-1012-1-git-send-email-gustavo@zacarias.com.ar>
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/libnfnetlink/libnfnetlink.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/libnfnetlink/libnfnetlink.mk b/package/libnfnetlink/libnfnetlink.mk
index 9af28d8..2d79cdb 100644
--- a/package/libnfnetlink/libnfnetlink.mk
+++ b/package/libnfnetlink/libnfnetlink.mk
@@ -4,7 +4,7 @@
#
#############################################################
-LIBNFNETLINK_VERSION = 1.0.0
+LIBNFNETLINK_VERSION = 1.0.1
LIBNFNETLINK_SOURCE = libnfnetlink-$(LIBNFNETLINK_VERSION).tar.bz2
LIBNFNETLINK_SITE = http://www.netfilter.org/projects/libnfnetlink/files
LIBNFNETLINK_INSTALL_STAGING = YES
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] [PATCH 02/12] libnetfilter_cttimeout: add license info
From: Gustavo Zacarias @ 2012-10-22 12:46 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350909989-1012-1-git-send-email-gustavo@zacarias.com.ar>
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
.../libnetfilter-cttimeout.mk | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/package/libnetfilter_cttimeout/libnetfilter-cttimeout.mk b/package/libnetfilter_cttimeout/libnetfilter-cttimeout.mk
index 4792980..462aee3 100644
--- a/package/libnetfilter_cttimeout/libnetfilter-cttimeout.mk
+++ b/package/libnetfilter_cttimeout/libnetfilter-cttimeout.mk
@@ -9,5 +9,7 @@ LIBNETFILTER_CTTIMEOUT_SOURCE = libnetfilter_cttimeout-$(LIBNETFILTER_CTTIMEOUT_
LIBNETFILTER_CTTIMEOUT_SITE = http://www.netfilter.org/projects/libnetfilter_cttimeout/files
LIBNETFILTER_CTTIMEOUT_INSTALL_STAGING = YES
LIBNETFILTER_CTTIMEOUT_DEPENDENCIES = host-pkg-config libmnl
+LIBNETFILTER_CTTIMEOUT_LICENSE = GPLv2
+LIBNETFILTER_CTTIMEOUT_LICENSE_FILES = COPYING
$(eval $(autotools-package))
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] [PATCH 01/12] libnetfilter_conntrack: bump to version 1.0.2
From: Gustavo Zacarias @ 2012-10-22 12:46 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/libnetfilter_conntrack/Config.in | 5 +++++
.../libnetfilter-conntrack.mk | 6 ++++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/package/libnetfilter_conntrack/Config.in b/package/libnetfilter_conntrack/Config.in
index caf8a8a..9f7b42a 100644
--- a/package/libnetfilter_conntrack/Config.in
+++ b/package/libnetfilter_conntrack/Config.in
@@ -1,5 +1,7 @@
config BR2_PACKAGE_LIBNETFILTER_CONNTRACK
bool "libnetfilter_conntrack"
+ depends on BR2_LARGEFILE
+ select BR2_PACKAGE_LIBMNL
select BR2_PACKAGE_LIBNFNETLINK
help
libnetfilter_conntrack is a userspace library providing
@@ -7,3 +9,6 @@ config BR2_PACKAGE_LIBNETFILTER_CONNTRACK
connection tracking state table.
http://www.netfilter.org/projects/libnetfilter_conntrack/
+
+comment "libnetfilter_conntrack requires a toolchain with LARGEFILE support"
+ depends on !BR2_LARGEFILE
diff --git a/package/libnetfilter_conntrack/libnetfilter-conntrack.mk b/package/libnetfilter_conntrack/libnetfilter-conntrack.mk
index c602903..90aa8e9 100644
--- a/package/libnetfilter_conntrack/libnetfilter-conntrack.mk
+++ b/package/libnetfilter_conntrack/libnetfilter-conntrack.mk
@@ -4,10 +4,12 @@
#
#############################################################
-LIBNETFILTER_CONNTRACK_VERSION = 1.0.1
+LIBNETFILTER_CONNTRACK_VERSION = 1.0.2
LIBNETFILTER_CONNTRACK_SOURCE = libnetfilter_conntrack-$(LIBNETFILTER_CONNTRACK_VERSION).tar.bz2
LIBNETFILTER_CONNTRACK_SITE = http://www.netfilter.org/projects/libnetfilter_conntrack/files
LIBNETFILTER_CONNTRACK_INSTALL_STAGING = YES
-LIBNETFILTER_CONNTRACK_DEPENDENCIES = host-pkg-config libnfnetlink
+LIBNETFILTER_CONNTRACK_DEPENDENCIES = host-pkg-config libnfnetlink libmnl
+LIBNETFILTER_CONNTRACK_LICENSE = GPLv2+
+LIBNETFILTER_CONNTRACK_LICENSE_FILES = COPYING
$(eval $(autotools-package))
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] [PATCHv2] mpd: bump to version 0.17.2
From: Gustavo Zacarias @ 2012-10-22 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/multimedia/mpd/mpd.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/multimedia/mpd/mpd.mk b/package/multimedia/mpd/mpd.mk
index 28cb4d2..fb4c550 100644
--- a/package/multimedia/mpd/mpd.mk
+++ b/package/multimedia/mpd/mpd.mk
@@ -4,7 +4,7 @@
#
#############################################################
-MPD_VERSION = 0.17.1
+MPD_VERSION = 0.17.2
MPD_SITE = http://downloads.sourceforge.net/project/musicpd/mpd/$(MPD_VERSION)
MPD_DEPENDENCIES = host-pkg-config libglib2
MPD_LICENSE = GPLv2
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] [PATCH] libfuse: bump to version 2.9.2
From: Gustavo Zacarias @ 2012-10-22 12:31 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/libfuse/libfuse-iconv.patch | 18 ------------------
package/libfuse/libfuse.mk | 2 +-
2 files changed, 1 insertions(+), 19 deletions(-)
delete mode 100644 package/libfuse/libfuse-iconv.patch
diff --git a/package/libfuse/libfuse-iconv.patch b/package/libfuse/libfuse-iconv.patch
deleted file mode 100644
index 9f50032..0000000
--- a/package/libfuse/libfuse-iconv.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Upstream commit efeac22bfa65c845c04adb5e70e6de33b0104fa3 but without
-the need to autoreconf :)
-Fixes libiconv missing in fuse.pc
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
-
-diff -Nura fuse-2.9.1/configure fuse-2.9.1.iconv/configure
---- fuse-2.9.1/configure 2012-07-19 09:53:29.000000000 -0300
-+++ fuse-2.9.1.iconv/configure 2012-09-07 08:47:57.834912620 -0300
-@@ -13237,7 +13237,7 @@
-
- fi
-
--libfuse_libs=$libfuse_libs $LTLIBICONV
-+libfuse_libs="$libfuse_libs $LTLIBICONV"
- if test "$am_cv_func_iconv" = yes; then
- ICONV_TRUE=
- ICONV_FALSE='#'
diff --git a/package/libfuse/libfuse.mk b/package/libfuse/libfuse.mk
index 779115b..ccd49fe 100644
--- a/package/libfuse/libfuse.mk
+++ b/package/libfuse/libfuse.mk
@@ -4,7 +4,7 @@
#
#############################################################
-LIBFUSE_VERSION = 2.9.1
+LIBFUSE_VERSION = 2.9.2
LIBFUSE_SOURCE = fuse-$(LIBFUSE_VERSION).tar.gz
LIBFUSE_SITE = http://downloads.sourceforge.net/project/fuse/fuse-2.X/$(LIBFUSE_VERSION)
LIBFUSE_LICENSE = GPLv2 LGPLv2.1
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] [PATCH 7/7] xapp_xsm: fix build against Xmu by bumping version
From: Thomas Petazzoni @ 2012-10-22 12:06 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350907617-14368-1-git-send-email-thomas.petazzoni@free-electrons.com>
Fix a build issue similar to the one encountered on xapp_listres at
http://autobuild.buildroot.org/results/06d0ef38165769df38047c1f64d4cfae835e9e54/.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/x11r7/xapp_xsm/xapp_xsm.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/x11r7/xapp_xsm/xapp_xsm.mk b/package/x11r7/xapp_xsm/xapp_xsm.mk
index aff0cc8..75640a2 100644
--- a/package/x11r7/xapp_xsm/xapp_xsm.mk
+++ b/package/x11r7/xapp_xsm/xapp_xsm.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XSM_VERSION = 1.0.1
+XAPP_XSM_VERSION = 1.0.2
XAPP_XSM_SOURCE = xsm-$(XAPP_XSM_VERSION).tar.bz2
XAPP_XSM_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XSM_DEPENDENCIES = xlib_libXaw
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH 6/7] xapp_xmag: fix build against Xmu by bumping version
From: Thomas Petazzoni @ 2012-10-22 12:06 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350907617-14368-1-git-send-email-thomas.petazzoni@free-electrons.com>
Fix a build issue similar to the one encountered on xapp_listres at
http://autobuild.buildroot.org/results/06d0ef38165769df38047c1f64d4cfae835e9e54/.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/x11r7/xapp_xmag/xapp_xmag.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/x11r7/xapp_xmag/xapp_xmag.mk b/package/x11r7/xapp_xmag/xapp_xmag.mk
index 235787a..0496c8a 100644
--- a/package/x11r7/xapp_xmag/xapp_xmag.mk
+++ b/package/x11r7/xapp_xmag/xapp_xmag.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XMAG_VERSION = 1.0.2
+XAPP_XMAG_VERSION = 1.0.4
XAPP_XMAG_SOURCE = xmag-$(XAPP_XMAG_VERSION).tar.bz2
XAPP_XMAG_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XMAG_DEPENDENCIES = xlib_libXaw
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH 5/7] xapp_xgc: fix build against Xmu by bumping version
From: Thomas Petazzoni @ 2012-10-22 12:06 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350907617-14368-1-git-send-email-thomas.petazzoni@free-electrons.com>
Fix a build issue similar to the one encountered on xapp_listres at
http://autobuild.buildroot.org/results/06d0ef38165769df38047c1f64d4cfae835e9e54/.
Note that this new version requires a minor cross-compilation fix in
configure.ac, which has already been committed upstream but is not yet
part of a release tarball.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
.../xapp_xgc/xapp_xgc-replace-ac-check-file.patch | 29 ++++++++++++++++++++
package/x11r7/xapp_xgc/xapp_xgc.mk | 3 +-
2 files changed, 31 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xgc/xapp_xgc-replace-ac-check-file.patch
diff --git a/package/x11r7/xapp_xgc/xapp_xgc-replace-ac-check-file.patch b/package/x11r7/xapp_xgc/xapp_xgc-replace-ac-check-file.patch
new file mode 100644
index 0000000..97cbcda
--- /dev/null
+++ b/package/x11r7/xapp_xgc/xapp_xgc-replace-ac-check-file.patch
@@ -0,0 +1,29 @@
+From ff668395fc408f540604bd534e323b483f52a4ea Mon Sep 17 00:00:00 2001
+From: Gaetan Nadon <memsize@videotron.ca>
+Date: Mon, 01 Nov 2010 17:19:23 +0000
+Subject: config: replace AC_CHECK_FILE with test -f
+
+* AC_CHECK_FILE doesn't work for cross compilation
+
+Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
+---
+diff --git a/configure.ac b/configure.ac
+index 667a3e7..0644050 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -36,8 +36,11 @@ XORG_DEFAULT_OPTIONS
+ AC_PROG_LEX
+ AC_PROG_YACC
+ AC_PATH_PROG([YACC_INST], $YACC)
+-AC_CHECK_FILE([$srcdir/gram.c], [],
+- [test -z "$YACC_INST" && AC_MSG_ERROR([yacc not found - unable to compile gram.y])])
++if test ! -f "gram.c"; then
++ if test -z "$YACC_INST"; then
++ AC_MSG_ERROR([yacc not found - unable to compile gram.y])
++ fi
++fi
+
+ PKG_CHECK_MODULES(XGC, xaw7 xt)
+ xt_appdefaultdir=`$PKG_CONFIG --variable=appdefaultdir xt`
+--
+cgit v0.9.0.2-2-gbebe
diff --git a/package/x11r7/xapp_xgc/xapp_xgc.mk b/package/x11r7/xapp_xgc/xapp_xgc.mk
index 8d02a53..cfb3164 100644
--- a/package/x11r7/xapp_xgc/xapp_xgc.mk
+++ b/package/x11r7/xapp_xgc/xapp_xgc.mk
@@ -4,9 +4,10 @@
#
################################################################################
-XAPP_XGC_VERSION = 1.0.1
+XAPP_XGC_VERSION = 1.0.3
XAPP_XGC_SOURCE = xgc-$(XAPP_XGC_VERSION).tar.bz2
XAPP_XGC_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XGC_DEPENDENCIES = xlib_libXaw
+XAPP_XGC_AUTORECONF = YES
$(eval $(autotools-package))
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH 4/7] xapp_xfontsel: fix build against Xmu by bumping version
From: Thomas Petazzoni @ 2012-10-22 12:06 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350907617-14368-1-git-send-email-thomas.petazzoni@free-electrons.com>
Fix a build issue similar to the one encountered on xapp_listres at
http://autobuild.buildroot.org/results/06d0ef38165769df38047c1f64d4cfae835e9e54/.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/x11r7/xapp_xfontsel/xapp_xfontsel.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/x11r7/xapp_xfontsel/xapp_xfontsel.mk b/package/x11r7/xapp_xfontsel/xapp_xfontsel.mk
index 8719bef..d4d9ca1 100644
--- a/package/x11r7/xapp_xfontsel/xapp_xfontsel.mk
+++ b/package/x11r7/xapp_xfontsel/xapp_xfontsel.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XFONTSEL_VERSION = 1.0.1
+XAPP_XFONTSEL_VERSION = 1.0.4
XAPP_XFONTSEL_SOURCE = xfontsel-$(XAPP_XFONTSEL_VERSION).tar.bz2
XAPP_XFONTSEL_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XFONTSEL_DEPENDENCIES = xlib_libXaw
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH 3/7] xapp_xedit: fix build against Xmu by bumping version
From: Thomas Petazzoni @ 2012-10-22 12:06 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350907617-14368-1-git-send-email-thomas.petazzoni@free-electrons.com>
Fix a build issue similar to the one encountered on xapp_listres at
http://autobuild.buildroot.org/results/06d0ef38165769df38047c1f64d4cfae835e9e54/.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/x11r7/xapp_xedit/xapp_xedit.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/x11r7/xapp_xedit/xapp_xedit.mk b/package/x11r7/xapp_xedit/xapp_xedit.mk
index 577bd5a..f69d122 100644
--- a/package/x11r7/xapp_xedit/xapp_xedit.mk
+++ b/package/x11r7/xapp_xedit/xapp_xedit.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XEDIT_VERSION = 1.0.2
+XAPP_XEDIT_VERSION = 1.2.0
XAPP_XEDIT_SOURCE = xedit-$(XAPP_XEDIT_VERSION).tar.bz2
XAPP_XEDIT_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XEDIT_DEPENDENCIES = xlib_libXaw xlib_libXprintUtil
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH 2/7] xapp_xbiff: fix build against Xmu by bumping version
From: Thomas Petazzoni @ 2012-10-22 12:06 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350907617-14368-1-git-send-email-thomas.petazzoni@free-electrons.com>
Fix a build issue similar to the one encountered on xapp_listres at
http://autobuild.buildroot.org/results/06d0ef38165769df38047c1f64d4cfae835e9e54/.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/x11r7/xapp_xbiff/xapp_xbiff.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/x11r7/xapp_xbiff/xapp_xbiff.mk b/package/x11r7/xapp_xbiff/xapp_xbiff.mk
index f954a8d..c6f2d70 100644
--- a/package/x11r7/xapp_xbiff/xapp_xbiff.mk
+++ b/package/x11r7/xapp_xbiff/xapp_xbiff.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XBIFF_VERSION = 1.0.1
+XAPP_XBIFF_VERSION = 1.0.3
XAPP_XBIFF_SOURCE = xbiff-$(XAPP_XBIFF_VERSION).tar.bz2
XAPP_XBIFF_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XBIFF_DEPENDENCIES = xlib_libXaw xdata_xbitmaps
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH 1/7] xapp_listres: fix build against Xmu by bumping the version
From: Thomas Petazzoni @ 2012-10-22 12:06 UTC (permalink / raw)
To: buildroot
Fixes
http://autobuild.buildroot.org/results/06d0ef38165769df38047c1f64d4cfae835e9e54
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/x11r7/xapp_listres/xapp_listres.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/x11r7/xapp_listres/xapp_listres.mk b/package/x11r7/xapp_listres/xapp_listres.mk
index c701f43..1a3247b 100644
--- a/package/x11r7/xapp_listres/xapp_listres.mk
+++ b/package/x11r7/xapp_listres/xapp_listres.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_LISTRES_VERSION = 1.0.1
+XAPP_LISTRES_VERSION = 1.0.3
XAPP_LISTRES_SOURCE = listres-$(XAPP_LISTRES_VERSION).tar.bz2
XAPP_LISTRES_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_LISTRES_DEPENDENCIES = xlib_libX11 xlib_libXaw xlib_libXmu xlib_libXt
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] filename format for kernel patches when using kernelfrom git ?
From: Thomas Petazzoni @ 2012-10-22 10:11 UTC (permalink / raw)
To: buildroot
In-Reply-To: <78B6349933E14FAB8DBC181EC080FA04@JohanW7>
Dear Sagaert Johan,
On Thu, 18 Oct 2012 18:23:48 +0200, Sagaert Johan wrote:
> I discovered the use of a file called 'series' to list the patches
> and apply the patches in the order I want.
Either this, or simply name your patches:
linux-<something>.patch
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [git commit] linux: bump 3.6.x stable version
From: Peter Korsgaard @ 2012-10-22 9:54 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=97de600d1de0f82e6244a297267b56a5a6ca4f1d
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
linux/Config.in | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/linux/Config.in b/linux/Config.in
index 257f934..aa25f89 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -21,7 +21,7 @@ choice
prompt "Kernel version"
config BR2_LINUX_KERNEL_3_6
- bool "3.6"
+ bool "3.6.3"
config BR2_LINUX_KERNEL_SAME_AS_HEADERS
bool "Same as toolchain kernel headers"
@@ -76,7 +76,7 @@ config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
config BR2_LINUX_KERNEL_VERSION
string
- default "3.6" if BR2_LINUX_KERNEL_3_6
+ default "3.6.3" if BR2_LINUX_KERNEL_3_6
default BR2_DEFAULT_KERNEL_HEADERS if BR2_LINUX_KERNEL_SAME_AS_HEADERS
default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE if BR2_LINUX_KERNEL_CUSTOM_VERSION
default "custom" if BR2_LINUX_KERNEL_CUSTOM_TARBALL
^ permalink raw reply related
* [Buildroot] [git commit] kernel-headers: bump 3.{0, 4, 6}.x stable versions
From: Peter Korsgaard @ 2012-10-22 9:54 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=6f6db416b845fcd446cdbcf79ba6ec0d42fef96b
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
| 6 +++---
...all-fix-__packed-in-exported-kernel-head.patch} | 0
2 files changed, 3 insertions(+), 3 deletions(-)
--git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in
index 10d0387..d4be60b 100644
--- a/toolchain/kernel-headers/Config.in
+++ b/toolchain/kernel-headers/Config.in
@@ -67,12 +67,12 @@ config BR2_DEFAULT_KERNEL_HEADERS
default "2.6.37.6" if BR2_KERNEL_HEADERS_2_6_37
default "2.6.38.8" if BR2_KERNEL_HEADERS_2_6_38
default "2.6.39.4" if BR2_KERNEL_HEADERS_2_6_39
- default "3.0.46" if BR2_KERNEL_HEADERS_3_0
+ default "3.0.47" if BR2_KERNEL_HEADERS_3_0
default "3.1.10" if BR2_KERNEL_HEADERS_3_1
default "3.2.32" if BR2_KERNEL_HEADERS_3_2
default "3.3.8" if BR2_KERNEL_HEADERS_3_3
- default "3.4.14" if BR2_KERNEL_HEADERS_3_4
+ default "3.4.15" if BR2_KERNEL_HEADERS_3_4
default "3.5.7" if BR2_KERNEL_HEADERS_3_5
- default "3.6.2" if BR2_KERNEL_HEADERS_3_6
+ default "3.6.3" if BR2_KERNEL_HEADERS_3_6
default "2.6" if BR2_KERNEL_HEADERS_SNAP
default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
diff --git a/toolchain/kernel-headers/linux-3.0.46-headers_install-fix-__packed-in-exported-kernel-head.patch b/toolchain/kernel-headers/linux-3.0.47-headers_install-fix-__packed-in-exported-kernel-head.patch
similarity index 100%
rename from toolchain/kernel-headers/linux-3.0.46-headers_install-fix-__packed-in-exported-kernel-head.patch
rename to toolchain/kernel-headers/linux-3.0.47-headers_install-fix-__packed-in-exported-kernel-head.patch
^ permalink raw reply related
* [Buildroot] [PATCH v2] libplayer: fix handling of cflags in configure
From: Peter Korsgaard @ 2012-10-22 7:50 UTC (permalink / raw)
To: buildroot
In-Reply-To: <500542BE.40504@mind.be>
>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
Arnout> On 07/15/12 21:51, Thomas Petazzoni wrote:
>> Le Sat, 14 Jul 2012 23:34:36 +0200,
>> "Arnout Vandecappelle (Essensium/Mind)"<arnout@mind.be> a ?crit :
>>
>>> Problem was found when compiling libplayer with GStreamer support
>>> on x86_64 with a Sourcery toolchain.
>>
>> I've tried to build libplayer with gstreamer support for x86_64 with a
>> Sourcery toolchain, and I didn't had an issue. Since your problem was
>> quoting related, I thought that it could be caused by the ccache
>> support, but it isn't.
>>
>> Can you post the .config that triggers the problem, or provide more
>> details on the problem? It's not that I don't believe that there is a
>> problem, but without producing it, I feel a bit out of infos to review
>> the patch.
Arnout> The config is an allpackageyesconfig from which I removed a
Arnout> few packages that don't work on x86_64 or that can't be
Arnout> downloaded anymore. I've attached the defconfig. You'd best
Arnout> interrupt the build after the cross-compiler is extracted and
Arnout> then run 'make libplayer' explicitly, or you'll have to wait
Arnout> for hours for the build to finish...
Committed, thanks. The issue also triggered on the autobuilder
yesterday:
http://autobuild.buildroot.net/results/2a22f33410197f5cf546bf1974c2e168d1b1a070/build-end.log
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] libplayer: fix handling of cflags in configure
From: Peter Korsgaard @ 2012-10-22 7:46 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=05431ab52c5f7a4b3ff63b7a7a807eece6c051f9
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Problem was found when compiling libplayer with GStreamer support
on x86_64 with a Sourcery toolchain.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
.../libplayer/libplayer-fix-configure-cflags.patch | 41 ++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/package/libplayer/libplayer-fix-configure-cflags.patch b/package/libplayer/libplayer-fix-configure-cflags.patch
new file mode 100644
index 0000000..186afd5
--- /dev/null
+++ b/package/libplayer/libplayer-fix-configure-cflags.patch
@@ -0,0 +1,41 @@
+From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
+Subject: [PATCH] libplayer: Fix handling of cflags in configure.
+
+The cflags returned by pkg-config or another config script may consist
+of several arguments for the compiler. These should not be quoted together
+into a single argument.
+
+Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
+---
+Sent upstream to devel at geexbox.org on July 11, 2012.
+---
+diff -rup libplayer-2.0.1.orig/configure libplayer-2.0.1/configure
+--- libplayer-2.0.1.orig/configure 2010-10-03 19:26:11.000000000 +0200
++++ libplayer-2.0.1/configure 2012-07-10 23:33:02.783701852 +0200
+@@ -342,7 +342,7 @@ check_libconfig(){
+ err=1
+ if `which "$config" 1>/dev/null 2>&1`; then
+ cflags=`$config $ccflags`
+- [ -n "$cflags" ] && check_cflags "$cflags"
++ [ -n "$cflags" ] && check_cflags $cflags
+ libs=`$config $clibs`
+ if [ -n "$libs" ]; then
+ temp_extralibs "$libs"
+@@ -364,7 +364,7 @@ check_libconfig_exists(){
+ err=1
+ if `which "$config" 1>/dev/null 2>&1`; then
+ cflags=`$config $ccflags`
+- [ -n "$cflags" ] && temp_cflags "$cflags"
++ [ -n "$cflags" ] && temp_cflags $cflags
+ libs=`$config $clibs`
+ if [ -n "$libs" ]; then
+ temp_extralibs "$libs"
+@@ -386,7 +386,7 @@ check_pkgconfig(){
+ err=1
+ if `which pkg-config 1>/dev/null 2>&1`; then
+ cflags=`pkg-config $pkg $ccflags`
+- [ -n "$cflags" ] && check_cflags "$cflags"
++ [ -n "$cflags" ] && check_cflags $cflags
+ libs=`pkg-config $pkg $clibs`
+ if [ -n "$libs" ]; then
+ temp_extralibs "$libs"
^ permalink raw reply related
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-10-21
From: Thomas Petazzoni @ 2012-10-22 6:33 UTC (permalink / raw)
To: buildroot
Hello,
On 2012-10-21, 106 random build tests have been done and
submitted on autobuild.buildroot.net.
61 builds have been successful
45 builds have failed
Below the results of the failed builds. Successful builds are omitted.
Build 755493b86d41e4b264659800fa22c52f921ed680
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 00:07:00
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/755493b86d41e4b264659800fa22c52f921ed680/build-end.log
Complete log : http://autobuild.buildroot.net/results/755493b86d41e4b264659800fa22c52f921ed680/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/755493b86d41e4b264659800fa22c52f921ed680/config
Defconfig : http://autobuild.buildroot.net/results/755493b86d41e4b264659800fa22c52f921ed680/defconfig
Build 758ab0e67cc6ad86dbcdc0f3182c56ae07cb1985
==============================================
Status : NOK
Failure reason : qt-4.8.3
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 00:26:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/758ab0e67cc6ad86dbcdc0f3182c56ae07cb1985/build-end.log
Complete log : http://autobuild.buildroot.net/results/758ab0e67cc6ad86dbcdc0f3182c56ae07cb1985/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/758ab0e67cc6ad86dbcdc0f3182c56ae07cb1985/config
Defconfig : http://autobuild.buildroot.net/results/758ab0e67cc6ad86dbcdc0f3182c56ae07cb1985/defconfig
Build 94cb9cb3303081ec44d273f3c6477c6585183558
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 01:27:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/94cb9cb3303081ec44d273f3c6477c6585183558/build-end.log
Complete log : http://autobuild.buildroot.net/results/94cb9cb3303081ec44d273f3c6477c6585183558/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/94cb9cb3303081ec44d273f3c6477c6585183558/config
Defconfig : http://autobuild.buildroot.net/results/94cb9cb3303081ec44d273f3c6477c6585183558/defconfig
Build 611a41dc407d0dd60608185bf12678393ee8c23c
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 02:32:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/611a41dc407d0dd60608185bf12678393ee8c23c/build-end.log
Complete log : http://autobuild.buildroot.net/results/611a41dc407d0dd60608185bf12678393ee8c23c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/611a41dc407d0dd60608185bf12678393ee8c23c/config
Defconfig : http://autobuild.buildroot.net/results/611a41dc407d0dd60608185bf12678393ee8c23c/defconfig
Build 3a01d1599305208bb52b5f8d28249136eb75a73f
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 03:26:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/3a01d1599305208bb52b5f8d28249136eb75a73f/build-end.log
Complete log : http://autobuild.buildroot.net/results/3a01d1599305208bb52b5f8d28249136eb75a73f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3a01d1599305208bb52b5f8d28249136eb75a73f/config
Defconfig : http://autobuild.buildroot.net/results/3a01d1599305208bb52b5f8d28249136eb75a73f/defconfig
Build 6ac679a96861bb74feb995ea2992bc19a4872182
==============================================
Status : NOK
Failure reason : libnspr-4.8.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 03:32:13
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/6ac679a96861bb74feb995ea2992bc19a4872182/build-end.log
Complete log : http://autobuild.buildroot.net/results/6ac679a96861bb74feb995ea2992bc19a4872182/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6ac679a96861bb74feb995ea2992bc19a4872182/config
Defconfig : http://autobuild.buildroot.net/results/6ac679a96861bb74feb995ea2992bc19a4872182/defconfig
Build 884d3d7694df31ddd2208ad177679d4024462557
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 03:45:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/884d3d7694df31ddd2208ad177679d4024462557/build-end.log
Complete log : http://autobuild.buildroot.net/results/884d3d7694df31ddd2208ad177679d4024462557/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/884d3d7694df31ddd2208ad177679d4024462557/config
Defconfig : http://autobuild.buildroot.net/results/884d3d7694df31ddd2208ad177679d4024462557/defconfig
Build 56da9b5af1fb9026866772c45175675086b698dc
==============================================
Status : NOK
Failure reason : libatomic_ops-1.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 04:01:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/56da9b5af1fb9026866772c45175675086b698dc/build-end.log
Complete log : http://autobuild.buildroot.net/results/56da9b5af1fb9026866772c45175675086b698dc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/56da9b5af1fb9026866772c45175675086b698dc/config
Defconfig : http://autobuild.buildroot.net/results/56da9b5af1fb9026866772c45175675086b698dc/defconfig
Build a701a06c82002d2c204ed9c50048438d0d347b2d
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-21 04:02:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/a701a06c82002d2c204ed9c50048438d0d347b2d/build-end.log
Complete log : http://autobuild.buildroot.net/results/a701a06c82002d2c204ed9c50048438d0d347b2d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a701a06c82002d2c204ed9c50048438d0d347b2d/config
Defconfig : http://autobuild.buildroot.net/results/a701a06c82002d2c204ed9c50048438d0d347b2d/defconfig
Build 9cca055ebc683825f1b3bba646b1a2a99ef1d3fc
==============================================
Status : NOK
Failure reason : rt-tests-0.83
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 05:14:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/9cca055ebc683825f1b3bba646b1a2a99ef1d3fc/build-end.log
Complete log : http://autobuild.buildroot.net/results/9cca055ebc683825f1b3bba646b1a2a99ef1d3fc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9cca055ebc683825f1b3bba646b1a2a99ef1d3fc/config
Defconfig : http://autobuild.buildroot.net/results/9cca055ebc683825f1b3bba646b1a2a99ef1d3fc/defconfig
Build 1932a827b4a8ebd5a0a9770423ddde436f2df4bc
==============================================
Status : NOK
Failure reason : iproute2-3.6.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 06:21:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/1932a827b4a8ebd5a0a9770423ddde436f2df4bc/build-end.log
Complete log : http://autobuild.buildroot.net/results/1932a827b4a8ebd5a0a9770423ddde436f2df4bc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1932a827b4a8ebd5a0a9770423ddde436f2df4bc/config
Defconfig : http://autobuild.buildroot.net/results/1932a827b4a8ebd5a0a9770423ddde436f2df4bc/defconfig
Build 578904a3afc6a92b79b641748586fe37e722cf4e
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 06:46:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/578904a3afc6a92b79b641748586fe37e722cf4e/build-end.log
Complete log : http://autobuild.buildroot.net/results/578904a3afc6a92b79b641748586fe37e722cf4e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/578904a3afc6a92b79b641748586fe37e722cf4e/config
Defconfig : http://autobuild.buildroot.net/results/578904a3afc6a92b79b641748586fe37e722cf4e/defconfig
Build 72e803df49530f3010abc287966933f63323ee81
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 07:24:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/72e803df49530f3010abc287966933f63323ee81/build-end.log
Complete log : http://autobuild.buildroot.net/results/72e803df49530f3010abc287966933f63323ee81/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/72e803df49530f3010abc287966933f63323ee81/config
Defconfig : http://autobuild.buildroot.net/results/72e803df49530f3010abc287966933f63323ee81/defconfig
Build 95c01b103c960217fa0efb2a8e6823bae9dd7c9b
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 07:41:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/95c01b103c960217fa0efb2a8e6823bae9dd7c9b/build-end.log
Complete log : http://autobuild.buildroot.net/results/95c01b103c960217fa0efb2a8e6823bae9dd7c9b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/95c01b103c960217fa0efb2a8e6823bae9dd7c9b/config
Defconfig : http://autobuild.buildroot.net/results/95c01b103c960217fa0efb2a8e6823bae9dd7c9b/defconfig
Build 45187dad5680e60748e495fd3839ab0185291dca
==============================================
Status : NOK
Failure reason : boost-1.49.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 07:42:05
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/45187dad5680e60748e495fd3839ab0185291dca/build-end.log
Complete log : http://autobuild.buildroot.net/results/45187dad5680e60748e495fd3839ab0185291dca/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/45187dad5680e60748e495fd3839ab0185291dca/config
Defconfig : http://autobuild.buildroot.net/results/45187dad5680e60748e495fd3839ab0185291dca/defconfig
Build 56d7e24cff14e92c28c229a57516d626dfb3461c
==============================================
Status : NOK
Failure reason : bluez_utils-4.101
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 07:58:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/56d7e24cff14e92c28c229a57516d626dfb3461c/build-end.log
Complete log : http://autobuild.buildroot.net/results/56d7e24cff14e92c28c229a57516d626dfb3461c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/56d7e24cff14e92c28c229a57516d626dfb3461c/config
Defconfig : http://autobuild.buildroot.net/results/56d7e24cff14e92c28c229a57516d626dfb3461c/defconfig
Build b36efcaecb7eb2e796fb98ded8f1977e3ee9c6d6
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 08:51:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/b36efcaecb7eb2e796fb98ded8f1977e3ee9c6d6/build-end.log
Complete log : http://autobuild.buildroot.net/results/b36efcaecb7eb2e796fb98ded8f1977e3ee9c6d6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b36efcaecb7eb2e796fb98ded8f1977e3ee9c6d6/config
Defconfig : http://autobuild.buildroot.net/results/b36efcaecb7eb2e796fb98ded8f1977e3ee9c6d6/defconfig
Build cb2284297c1db0103eba222dbb9ef712fc51682e
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 09:54:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/cb2284297c1db0103eba222dbb9ef712fc51682e/build-end.log
Complete log : http://autobuild.buildroot.net/results/cb2284297c1db0103eba222dbb9ef712fc51682e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cb2284297c1db0103eba222dbb9ef712fc51682e/config
Defconfig : http://autobuild.buildroot.net/results/cb2284297c1db0103eba222dbb9ef712fc51682e/defconfig
Build fbb16ec3c83602a18cf778f3c2004915621cdead
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-21 11:03:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/fbb16ec3c83602a18cf778f3c2004915621cdead/build-end.log
Complete log : http://autobuild.buildroot.net/results/fbb16ec3c83602a18cf778f3c2004915621cdead/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/fbb16ec3c83602a18cf778f3c2004915621cdead/config
Defconfig : http://autobuild.buildroot.net/results/fbb16ec3c83602a18cf778f3c2004915621cdead/defconfig
Build 4d6ea26c09b4903b0bb81a16321bf62e65a343d0
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 11:07:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/4d6ea26c09b4903b0bb81a16321bf62e65a343d0/build-end.log
Complete log : http://autobuild.buildroot.net/results/4d6ea26c09b4903b0bb81a16321bf62e65a343d0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4d6ea26c09b4903b0bb81a16321bf62e65a343d0/config
Defconfig : http://autobuild.buildroot.net/results/4d6ea26c09b4903b0bb81a16321bf62e65a343d0/defconfig
Build 37bfeab6a471a9c3bf62a9c6c492b6deb58ad976
==============================================
Status : NOK
Failure reason : rt-tests-0.83
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 11:33:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/37bfeab6a471a9c3bf62a9c6c492b6deb58ad976/build-end.log
Complete log : http://autobuild.buildroot.net/results/37bfeab6a471a9c3bf62a9c6c492b6deb58ad976/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/37bfeab6a471a9c3bf62a9c6c492b6deb58ad976/config
Defconfig : http://autobuild.buildroot.net/results/37bfeab6a471a9c3bf62a9c6c492b6deb58ad976/defconfig
Build 25afd6b9ca0a12610b67433bc0961fb71de6a25e
==============================================
Status : NOK
Failure reason : tremor-18153
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 12:32:30
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/25afd6b9ca0a12610b67433bc0961fb71de6a25e/build-end.log
Complete log : http://autobuild.buildroot.net/results/25afd6b9ca0a12610b67433bc0961fb71de6a25e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/25afd6b9ca0a12610b67433bc0961fb71de6a25e/config
Defconfig : http://autobuild.buildroot.net/results/25afd6b9ca0a12610b67433bc0961fb71de6a25e/defconfig
Build 97a8a166e863f50eaeb35bf6c934a0760686512d
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-21 13:07:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/97a8a166e863f50eaeb35bf6c934a0760686512d/build-end.log
Complete log : http://autobuild.buildroot.net/results/97a8a166e863f50eaeb35bf6c934a0760686512d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/97a8a166e863f50eaeb35bf6c934a0760686512d/config
Defconfig : http://autobuild.buildroot.net/results/97a8a166e863f50eaeb35bf6c934a0760686512d/defconfig
Build 8f78bf88c46a3d0830738edbfe56aaaf2d367222
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 13:14:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/8f78bf88c46a3d0830738edbfe56aaaf2d367222/build-end.log
Complete log : http://autobuild.buildroot.net/results/8f78bf88c46a3d0830738edbfe56aaaf2d367222/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8f78bf88c46a3d0830738edbfe56aaaf2d367222/config
Defconfig : http://autobuild.buildroot.net/results/8f78bf88c46a3d0830738edbfe56aaaf2d367222/defconfig
Build 41250c9a20419cc318a2e16b5afae2bab276e882
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 14:27:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/41250c9a20419cc318a2e16b5afae2bab276e882/build-end.log
Complete log : http://autobuild.buildroot.net/results/41250c9a20419cc318a2e16b5afae2bab276e882/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/41250c9a20419cc318a2e16b5afae2bab276e882/config
Defconfig : http://autobuild.buildroot.net/results/41250c9a20419cc318a2e16b5afae2bab276e882/defconfig
Build 4b05521820552bc42d21813261c20dc5462992c9
==============================================
Status : NOK
Failure reason : openswan-2.6.38
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-21 14:53:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/4b05521820552bc42d21813261c20dc5462992c9/build-end.log
Complete log : http://autobuild.buildroot.net/results/4b05521820552bc42d21813261c20dc5462992c9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4b05521820552bc42d21813261c20dc5462992c9/config
Defconfig : http://autobuild.buildroot.net/results/4b05521820552bc42d21813261c20dc5462992c9/defconfig
Build 9ba6703295ecc91ea30b5943a6d6b6fae0d10df8
==============================================
Status : NOK
Failure reason : xapp_xclipboard-1.0.1
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 14:57:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/9ba6703295ecc91ea30b5943a6d6b6fae0d10df8/build-end.log
Complete log : http://autobuild.buildroot.net/results/9ba6703295ecc91ea30b5943a6d6b6fae0d10df8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9ba6703295ecc91ea30b5943a6d6b6fae0d10df8/config
Defconfig : http://autobuild.buildroot.net/results/9ba6703295ecc91ea30b5943a6d6b6fae0d10df8/defconfig
Build ac6abe798c5bbb77acc13cecd59510442f30b9e4
==============================================
Status : NOK
Failure reason : erlang-R15B01
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 15:17:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/ac6abe798c5bbb77acc13cecd59510442f30b9e4/build-end.log
Complete log : http://autobuild.buildroot.net/results/ac6abe798c5bbb77acc13cecd59510442f30b9e4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ac6abe798c5bbb77acc13cecd59510442f30b9e4/config
Defconfig : http://autobuild.buildroot.net/results/ac6abe798c5bbb77acc13cecd59510442f30b9e4/defconfig
Build d451329f1c41cd32171a2e59a27e09f1d7b16d5e
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 15:28:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/d451329f1c41cd32171a2e59a27e09f1d7b16d5e/build-end.log
Complete log : http://autobuild.buildroot.net/results/d451329f1c41cd32171a2e59a27e09f1d7b16d5e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d451329f1c41cd32171a2e59a27e09f1d7b16d5e/config
Defconfig : http://autobuild.buildroot.net/results/d451329f1c41cd32171a2e59a27e09f1d7b16d5e/defconfig
Build 966a7889451d4383ac994606b66642c66c57a726
==============================================
Status : NOK
Failure reason : libhid-0.2.16
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 15:45:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/966a7889451d4383ac994606b66642c66c57a726/build-end.log
Complete log : http://autobuild.buildroot.net/results/966a7889451d4383ac994606b66642c66c57a726/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/966a7889451d4383ac994606b66642c66c57a726/config
Defconfig : http://autobuild.buildroot.net/results/966a7889451d4383ac994606b66642c66c57a726/defconfig
Build 066371306223b18c274cabef34a173588a064b4c
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-21 17:16:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/066371306223b18c274cabef34a173588a064b4c/build-end.log
Complete log : http://autobuild.buildroot.net/results/066371306223b18c274cabef34a173588a064b4c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/066371306223b18c274cabef34a173588a064b4c/config
Defconfig : http://autobuild.buildroot.net/results/066371306223b18c274cabef34a173588a064b4c/defconfig
Build 17c9dbd202865188825a1ce436fd4e0abbcf6728
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 17:32:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/17c9dbd202865188825a1ce436fd4e0abbcf6728/build-end.log
Complete log : http://autobuild.buildroot.net/results/17c9dbd202865188825a1ce436fd4e0abbcf6728/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/17c9dbd202865188825a1ce436fd4e0abbcf6728/config
Defconfig : http://autobuild.buildroot.net/results/17c9dbd202865188825a1ce436fd4e0abbcf6728/defconfig
Build d1226e5ec5b1306fe150c28746b351734454467f
==============================================
Status : NOK
Failure reason : mplayer-1.1
Architecture : sh4a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 18:18:43
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/d1226e5ec5b1306fe150c28746b351734454467f/build-end.log
Complete log : http://autobuild.buildroot.net/results/d1226e5ec5b1306fe150c28746b351734454467f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d1226e5ec5b1306fe150c28746b351734454467f/config
Defconfig : http://autobuild.buildroot.net/results/d1226e5ec5b1306fe150c28746b351734454467f/defconfig
Build 7225bb0e1b19423a9ad6a278b71f9b6cec4149df
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 18:22:25
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/7225bb0e1b19423a9ad6a278b71f9b6cec4149df/build-end.log
Complete log : http://autobuild.buildroot.net/results/7225bb0e1b19423a9ad6a278b71f9b6cec4149df/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7225bb0e1b19423a9ad6a278b71f9b6cec4149df/config
Defconfig : http://autobuild.buildroot.net/results/7225bb0e1b19423a9ad6a278b71f9b6cec4149df/defconfig
Build 6af9c52c0b297bcb66fe85641da9f96dda1f44cb
==============================================
Status : NOK
Failure reason : matchbox-lib-1.9
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 19:06:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/6af9c52c0b297bcb66fe85641da9f96dda1f44cb/build-end.log
Complete log : http://autobuild.buildroot.net/results/6af9c52c0b297bcb66fe85641da9f96dda1f44cb/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6af9c52c0b297bcb66fe85641da9f96dda1f44cb/config
Defconfig : http://autobuild.buildroot.net/results/6af9c52c0b297bcb66fe85641da9f96dda1f44cb/defconfig
Build 2a22f33410197f5cf546bf1974c2e168d1b1a070
==============================================
Status : NOK
Failure reason : libplayer-2.0.1
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-21 21:14:26
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/2a22f33410197f5cf546bf1974c2e168d1b1a070/build-end.log
Complete log : http://autobuild.buildroot.net/results/2a22f33410197f5cf546bf1974c2e168d1b1a070/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2a22f33410197f5cf546bf1974c2e168d1b1a070/config
Defconfig : http://autobuild.buildroot.net/results/2a22f33410197f5cf546bf1974c2e168d1b1a070/defconfig
Build 0cbba392a1c75e878a25af0a41449e1508f9fb15
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 21:30:51
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=3d48c41284d0daee0b70312022c7c6d31f730eb7
End of log : http://autobuild.buildroot.net/results/0cbba392a1c75e878a25af0a41449e1508f9fb15/build-end.log
Complete log : http://autobuild.buildroot.net/results/0cbba392a1c75e878a25af0a41449e1508f9fb15/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0cbba392a1c75e878a25af0a41449e1508f9fb15/config
Defconfig : http://autobuild.buildroot.net/results/0cbba392a1c75e878a25af0a41449e1508f9fb15/defconfig
Build 522bfe56baea1f295ea0c2f258327d1d393edc6e
==============================================
Status : NOK
Failure reason : lua-5.1.5
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 21:48:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=6d4cdb081020bafa7062c6a8cf052b3d5000635c
End of log : http://autobuild.buildroot.net/results/522bfe56baea1f295ea0c2f258327d1d393edc6e/build-end.log
Complete log : http://autobuild.buildroot.net/results/522bfe56baea1f295ea0c2f258327d1d393edc6e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/522bfe56baea1f295ea0c2f258327d1d393edc6e/config
Defconfig : http://autobuild.buildroot.net/results/522bfe56baea1f295ea0c2f258327d1d393edc6e/defconfig
Build 3a3279e846f6449c022be56a02a1d28cdfcd1592
==============================================
Status : NOK
Failure reason : sane-backends-1.0.22
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 22:12:18
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=93e4785aa4057649fdeb18954a51c4a1bc833eea
End of log : http://autobuild.buildroot.net/results/3a3279e846f6449c022be56a02a1d28cdfcd1592/build-end.log
Complete log : http://autobuild.buildroot.net/results/3a3279e846f6449c022be56a02a1d28cdfcd1592/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3a3279e846f6449c022be56a02a1d28cdfcd1592/config
Defconfig : http://autobuild.buildroot.net/results/3a3279e846f6449c022be56a02a1d28cdfcd1592/defconfig
Build 61e0c3c5a343c72e99cd48967b28fece4ccc68d7
==============================================
Status : NOK
Failure reason : ffmpeg-0.8.12
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 23:08:19
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=0c5e24d48bdd63ce55cc8fb2b00f05b501876a60
End of log : http://autobuild.buildroot.net/results/61e0c3c5a343c72e99cd48967b28fece4ccc68d7/build-end.log
Complete log : http://autobuild.buildroot.net/results/61e0c3c5a343c72e99cd48967b28fece4ccc68d7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/61e0c3c5a343c72e99cd48967b28fece4ccc68d7/config
Defconfig : http://autobuild.buildroot.net/results/61e0c3c5a343c72e99cd48967b28fece4ccc68d7/defconfig
Build b834bbde93bc5fdd8f6b7db60097cc6eb2e0eecb
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 23:08:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=6bcb68694f50cdc788114c77bdc7ed1ba39e0bef
End of log : http://autobuild.buildroot.net/results/b834bbde93bc5fdd8f6b7db60097cc6eb2e0eecb/build-end.log
Complete log : http://autobuild.buildroot.net/results/b834bbde93bc5fdd8f6b7db60097cc6eb2e0eecb/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b834bbde93bc5fdd8f6b7db60097cc6eb2e0eecb/config
Defconfig : http://autobuild.buildroot.net/results/b834bbde93bc5fdd8f6b7db60097cc6eb2e0eecb/defconfig
Build 6a9c5e7ce9eb1370e6af28704bd1c0687f26832e
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 23:09:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=6bcb68694f50cdc788114c77bdc7ed1ba39e0bef
End of log : http://autobuild.buildroot.net/results/6a9c5e7ce9eb1370e6af28704bd1c0687f26832e/build-end.log
Complete log : http://autobuild.buildroot.net/results/6a9c5e7ce9eb1370e6af28704bd1c0687f26832e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6a9c5e7ce9eb1370e6af28704bd1c0687f26832e/config
Defconfig : http://autobuild.buildroot.net/results/6a9c5e7ce9eb1370e6af28704bd1c0687f26832e/defconfig
Build 980a93d052c9b4b940bc230e4b0c2bba4b3af86b
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-21 23:16:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=6d4cdb081020bafa7062c6a8cf052b3d5000635c
End of log : http://autobuild.buildroot.net/results/980a93d052c9b4b940bc230e4b0c2bba4b3af86b/build-end.log
Complete log : http://autobuild.buildroot.net/results/980a93d052c9b4b940bc230e4b0c2bba4b3af86b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/980a93d052c9b4b940bc230e4b0c2bba4b3af86b/config
Defconfig : http://autobuild.buildroot.net/results/980a93d052c9b4b940bc230e4b0c2bba4b3af86b/defconfig
Build 69f13a46c9508be699be55247af878fcd5dd1968
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-21 23:28:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=0c5e24d48bdd63ce55cc8fb2b00f05b501876a60
End of log : http://autobuild.buildroot.net/results/69f13a46c9508be699be55247af878fcd5dd1968/build-end.log
Complete log : http://autobuild.buildroot.net/results/69f13a46c9508be699be55247af878fcd5dd1968/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/69f13a46c9508be699be55247af878fcd5dd1968/config
Defconfig : http://autobuild.buildroot.net/results/69f13a46c9508be699be55247af878fcd5dd1968/defconfig
Build 19c38c99beed3122253229ac77b193e812351b84
==============================================
Status : NOK
Failure reason : pv-1.2.0
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-21 23:42:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=6bcb68694f50cdc788114c77bdc7ed1ba39e0bef
End of log : http://autobuild.buildroot.net/results/19c38c99beed3122253229ac77b193e812351b84/build-end.log
Complete log : http://autobuild.buildroot.net/results/19c38c99beed3122253229ac77b193e812351b84/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/19c38c99beed3122253229ac77b193e812351b84/config
Defconfig : http://autobuild.buildroot.net/results/19c38c99beed3122253229ac77b193e812351b84/defconfig
--
http://autobuild.buildroot.net
^ permalink raw reply
* [Buildroot] [PATCH] wireshark: new package
From: Baruch Siach @ 2012-10-22 6:27 UTC (permalink / raw)
To: buildroot
This is only the bare minimum needed to build the textual tshark utility.
Support for more options, including the wireshark GUI, can be added later.
---
I override the $prefix configure variable because otherwise the host
/usr/include is added to the -I and -L paths. I'm not sure this is a good idea
though, since it clutters the tshark RPATH with directories from the local
build paths. If you have a better I'd be glad to hear.
package/Config.in | 1 +
package/wireshark/Config.in | 14 ++++++++++++++
package/wireshark/wireshark.mk | 10 ++++++++++
3 files changed, 25 insertions(+)
create mode 100644 package/wireshark/Config.in
create mode 100644 package/wireshark/wireshark.mk
diff --git a/package/Config.in b/package/Config.in
index 1650c71..cd8d9ba 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -646,6 +646,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/wget/Config.in"
endif
source "package/wireless_tools/Config.in"
+source "package/wireshark/Config.in"
source "package/wpa_supplicant/Config.in"
source "package/xinetd/Config.in"
source "package/xl2tp/Config.in"
diff --git a/package/wireshark/Config.in b/package/wireshark/Config.in
new file mode 100644
index 0000000..e6d4e72
--- /dev/null
+++ b/package/wireshark/Config.in
@@ -0,0 +1,14 @@
+config BR2_PACKAGE_WIRESHARK
+ bool "wireshark"
+ select BR2_PACKAGE_LIBPCAP
+ select BR2_PACKAGE_LIBGCRYPT
+ select BR2_PACKAGE_LIBGLIB2
+ depends on BR2_USE_WCHAR # glib2
+ help
+ Network traffic sniffer and protocol decoder. Currently only tshark,
+ the console interface, is enabled.
+
+ http://www.wireshark.org
+
+comment "wireshark requires a toolchain with WCHAR support"
+ depends on !BR2_USE_WCHAR
diff --git a/package/wireshark/wireshark.mk b/package/wireshark/wireshark.mk
new file mode 100644
index 0000000..c89fbf8
--- /dev/null
+++ b/package/wireshark/wireshark.mk
@@ -0,0 +1,10 @@
+WIRESHARK_VERSION = 1.8.3
+WIRESHARK_SOURCE = wireshark-$(WIRESHARK_VERSION).tar.bz2
+WIRESHARK_SITE = http://www.wireshark.org/download/src/all-versions
+WIRESHARK_DEPENDENCIES = libpcap libgcrypt libglib2
+WIRESHARK_CONF_ENV = LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config
+WIRESHARK_CONF_OPT = --disable-wireshark --without-krb5 --disable-usr-local \
+ prefix=$(STAGING_DIR)/usr --with-sysroot=$(STAGING_DIR) \
+ --enable-static=no
+
+$(eval $(call autotools-package))
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] Selecting custom skeleton hides terminal settingsWhy ?
From: Peter Korsgaard @ 2012-10-21 21:10 UTC (permalink / raw)
To: buildroot
In-Reply-To: <ECFD4F3FAD0A470AB0295E623FA9C18B@JohanW7>
>>>>> "Sagaert" == Sagaert Johan <sagaert.johan@skynet.be> writes:
Sagaert> Hi Peter ;
Sagaert> I will try to make a patch so when a custom skeleton is
Sagaert> selected you get a choice whether you would like to configure
Sagaert> the console
Sagaert> yes/no ?
Sagaert> Could you agree with that ?
No, when you select a custom skeleton you have full freedom, but you're
also on your own.
Why don't you just set the correct terminal setting in your custom
inittab?
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [Bug 3049] binutils have a sysroot bug in ld
From: bugzilla at busybox.net @ 2012-10-21 21:07 UTC (permalink / raw)
To: buildroot
In-Reply-To: <bug-3049-163@https.bugs.busybox.net/>
https://bugs.busybox.net/show_bug.cgi?id=3049
Peter Korsgaard <jacmet@uclibc.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #4 from Peter Korsgaard <jacmet@uclibc.org> 2012-10-21 21:07:41 UTC ---
Fixed in git by Gustavoz, thanks.
--
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
^ 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