* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2012-12-09 18:13 Thomas Petazzoni
2012-12-09 18:13 ` [Buildroot] [PATCH 1/8] ccache: uses fork(), there only usable on MMU platforms Thomas Petazzoni
` (7 more replies)
0 siblings, 8 replies; 33+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:13 UTC (permalink / raw)
To: buildroot
Hello,
A bunch of build failure fixes, especially one for the neard
<linux/nfc.h> problem, which is causing most of the autobuilders
failure noise at the moment.
Thanks.
Thomas
The following changes since commit 054f97e1f2de337ea0c788d766212a36d6d4e41c:
pkg-infra: add <pkg>-extract and <pkg>-patch targets to OVERRIDE support (2012-12-06 17:13:57 -0800)
are available in the git repository at:
git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git misc-fixes
for you to fetch changes up to 998c031cc673d7c76c7d9bd8c4402fa928ed803e:
libev: disable on avr32 (2012-12-09 18:44:40 +0100)
----------------------------------------------------------------
Thomas Petazzoni (8):
ccache: uses fork(), there only usable on MMU platforms
ccache: deprecate the target package
rt-tests: requires thread support in the toolchain
rt-tests: not available on avr32, too old uClibc
bmon: needs MMU for fork()
xapp_xmh: add dependency on xdata_xbitmap
neard: fix build failure caused by missing <linux/nfc.h>
libev: disable on avr32
package/bmon/Config.in | 2 +
package/ccache/Config.in | 4 +
package/libev/Config.in | 2 +
.../neard/neard-fix-missing-linux-nfc-header.patch | 387 ++++++++++++++++++++
package/neard/neard.mk | 1 +
package/rt-tests/Config.in | 4 +
package/x11r7/xapp_xmh/Config.in | 1 +
package/x11r7/xapp_xmh/xapp_xmh.mk | 2 +-
8 files changed, 402 insertions(+), 1 deletion(-)
create mode 100644 package/neard/neard-fix-missing-linux-nfc-header.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 33+ messages in thread* [Buildroot] [PATCH 1/8] ccache: uses fork(), there only usable on MMU platforms
2012-12-09 18:13 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
@ 2012-12-09 18:13 ` Thomas Petazzoni
2012-12-09 20:50 ` Peter Korsgaard
2012-12-09 18:13 ` [Buildroot] [PATCH 2/8] ccache: deprecate the target package Thomas Petazzoni
` (6 subsequent siblings)
7 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:13 UTC (permalink / raw)
To: buildroot
Fixes:
http://autobuild.buildroot.org/results/2ba0eb693d24ac4ed9979762db234bfff1952c69/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/ccache/Config.in | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/ccache/Config.in b/package/ccache/Config.in
index 4a37973..30e6578 100644
--- a/package/ccache/Config.in
+++ b/package/ccache/Config.in
@@ -1,5 +1,7 @@
config BR2_PACKAGE_CCACHE
bool "ccache"
+ # needs fork()
+ depends on BR2_USE_MMU
help
ccache is a compiler cache. It speeds up recompilation by
caching previous compilations and detecting when the same
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [Buildroot] [PATCH 2/8] ccache: deprecate the target package
2012-12-09 18:13 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
2012-12-09 18:13 ` [Buildroot] [PATCH 1/8] ccache: uses fork(), there only usable on MMU platforms Thomas Petazzoni
@ 2012-12-09 18:13 ` Thomas Petazzoni
2012-12-09 20:51 ` Peter Korsgaard
2012-12-09 18:13 ` [Buildroot] [PATCH 3/8] rt-tests: requires thread support in the toolchain Thomas Petazzoni
` (5 subsequent siblings)
7 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:13 UTC (permalink / raw)
To: buildroot
Since we have deprecated the capability of building a toolchain for
the target, it makes sense to also deprecate ccache for the target.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/ccache/Config.in | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/ccache/Config.in b/package/ccache/Config.in
index 30e6578..41ace52 100644
--- a/package/ccache/Config.in
+++ b/package/ccache/Config.in
@@ -2,6 +2,8 @@ config BR2_PACKAGE_CCACHE
bool "ccache"
# needs fork()
depends on BR2_USE_MMU
+ # We no longer support a toolchain on the target
+ depends on BR2_DEPRECATED
help
ccache is a compiler cache. It speeds up recompilation by
caching previous compilations and detecting when the same
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [Buildroot] [PATCH 3/8] rt-tests: requires thread support in the toolchain
2012-12-09 18:13 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
2012-12-09 18:13 ` [Buildroot] [PATCH 1/8] ccache: uses fork(), there only usable on MMU platforms Thomas Petazzoni
2012-12-09 18:13 ` [Buildroot] [PATCH 2/8] ccache: deprecate the target package Thomas Petazzoni
@ 2012-12-09 18:13 ` Thomas Petazzoni
2012-12-09 20:53 ` Peter Korsgaard
2012-12-09 18:13 ` [Buildroot] [PATCH 4/8] rt-tests: not available on avr32, too old uClibc Thomas Petazzoni
` (4 subsequent siblings)
7 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:13 UTC (permalink / raw)
To: buildroot
The rt-tests package extensively use threads, so this package should
only be available if the toolchain has thread support.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/rt-tests/Config.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in
index e645266..337c020 100644
--- a/package/rt-tests/Config.in
+++ b/package/rt-tests/Config.in
@@ -1,5 +1,6 @@
config BR2_PACKAGE_RT_TESTS
bool "rt-tests"
+ depends on BR2_TOOLCHAIN_HAS_THREADS
help
Set of utilities for testing the real-time behaviour of a
Linux system.
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [Buildroot] [PATCH 3/8] rt-tests: requires thread support in the toolchain
2012-12-09 18:13 ` [Buildroot] [PATCH 3/8] rt-tests: requires thread support in the toolchain Thomas Petazzoni
@ 2012-12-09 20:53 ` Peter Korsgaard
0 siblings, 0 replies; 33+ messages in thread
From: Peter Korsgaard @ 2012-12-09 20:53 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The rt-tests package extensively use threads, so this package should
Thomas> only be available if the toolchain has thread support.
Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas> ---
Thomas> package/rt-tests/Config.in | 1 +
Thomas> 1 file changed, 1 insertion(+)
Thomas> diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in
Thomas> index e645266..337c020 100644
Thomas> --- a/package/rt-tests/Config.in
Thomas> +++ b/package/rt-tests/Config.in
Thomas> @@ -1,5 +1,6 @@
Thomas> config BR2_PACKAGE_RT_TESTS
Thomas> bool "rt-tests"
Thomas> + depends on BR2_TOOLCHAIN_HAS_THREADS
You forgot to add a comment when not available. I've added that and
committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 33+ messages in thread
* [Buildroot] [PATCH 4/8] rt-tests: not available on avr32, too old uClibc
2012-12-09 18:13 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
` (2 preceding siblings ...)
2012-12-09 18:13 ` [Buildroot] [PATCH 3/8] rt-tests: requires thread support in the toolchain Thomas Petazzoni
@ 2012-12-09 18:13 ` Thomas Petazzoni
2012-12-09 20:56 ` Peter Korsgaard
2012-12-09 18:14 ` [Buildroot] [PATCH 5/8] bmon: needs MMU for fork() Thomas Petazzoni
` (3 subsequent siblings)
7 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:13 UTC (permalink / raw)
To: buildroot
The old uClibc used for the AVR32 architecture does not implement
priority inheritance, therefore rt-tests cannot build.
Fixes:
http://autobuild.buildroot.org/results/695293d889128c666174d5fe03c5deadbe4d5415/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/rt-tests/Config.in | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in
index 337c020..54cb8d0 100644
--- a/package/rt-tests/Config.in
+++ b/package/rt-tests/Config.in
@@ -1,6 +1,9 @@
config BR2_PACKAGE_RT_TESTS
bool "rt-tests"
depends on BR2_TOOLCHAIN_HAS_THREADS
+ # Too old uClibc, does not provide priority-inheritance
+ # mutexes
+ depends on !BR2_avr32
help
Set of utilities for testing the real-time behaviour of a
Linux system.
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [Buildroot] [PATCH 5/8] bmon: needs MMU for fork()
2012-12-09 18:13 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
` (3 preceding siblings ...)
2012-12-09 18:13 ` [Buildroot] [PATCH 4/8] rt-tests: not available on avr32, too old uClibc Thomas Petazzoni
@ 2012-12-09 18:14 ` Thomas Petazzoni
2012-12-09 18:20 ` Thomas Petazzoni
2012-12-09 20:56 ` Peter Korsgaard
2012-12-09 18:14 ` [Buildroot] [PATCH 6/8] xapp_xmh: add dependency on xdata_xbitmap Thomas Petazzoni
` (2 subsequent siblings)
7 siblings, 2 replies; 33+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:14 UTC (permalink / raw)
To: buildroot
Fixes:
http://autobuild.buildroot.org/results/673b0e9a1ba75123ba2c59df8ad81550170fffef/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/bmon/Config.in | 2 ++
package/rt-tests/Config.in | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/package/bmon/Config.in b/package/bmon/Config.in
index 9692118..652fd9e 100644
--- a/package/bmon/Config.in
+++ b/package/bmon/Config.in
@@ -1,6 +1,8 @@
config BR2_PACKAGE_BMON
bool "bmon"
depends on BR2_INET_IPV6
+ # needs fork()
+ depends on BR2_USE_MMU
help
Linux bandwidth monitor
diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in
index 54cb8d0..1a0592f 100644
--- a/package/rt-tests/Config.in
+++ b/package/rt-tests/Config.in
@@ -1,8 +1,8 @@
config BR2_PACKAGE_RT_TESTS
bool "rt-tests"
depends on BR2_TOOLCHAIN_HAS_THREADS
- # Too old uClibc, does not provide priority-inheritance
- # mutexes
+ # Too old uClibc on AVR32, does not provide
+ # priority-inheritance mutexes
depends on !BR2_avr32
help
Set of utilities for testing the real-time behaviour of a
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [Buildroot] [PATCH 5/8] bmon: needs MMU for fork()
2012-12-09 18:14 ` [Buildroot] [PATCH 5/8] bmon: needs MMU for fork() Thomas Petazzoni
@ 2012-12-09 18:20 ` Thomas Petazzoni
2012-12-09 20:56 ` Peter Korsgaard
1 sibling, 0 replies; 33+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:20 UTC (permalink / raw)
To: buildroot
On Sun, 9 Dec 2012 19:14:00 +0100, Thomas Petazzoni wrote:
> diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in
> index 54cb8d0..1a0592f 100644
> --- a/package/rt-tests/Config.in
> +++ b/package/rt-tests/Config.in
> @@ -1,8 +1,8 @@
> config BR2_PACKAGE_RT_TESTS
> bool "rt-tests"
> depends on BR2_TOOLCHAIN_HAS_THREADS
> - # Too old uClibc, does not provide priority-inheritance
> - # mutexes
> + # Too old uClibc on AVR32, does not provide
> + # priority-inheritance mutexes
> depends on !BR2_avr32
> help
> Set of utilities for testing the real-time behaviour of a
FWIW, I've pushed at the same location a new version of this branch
that removes this incorrect part (and squashed it properly in the
previous commit).
Sorry for the mess.
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 33+ messages in thread
* [Buildroot] [PATCH 5/8] bmon: needs MMU for fork()
2012-12-09 18:14 ` [Buildroot] [PATCH 5/8] bmon: needs MMU for fork() Thomas Petazzoni
2012-12-09 18:20 ` Thomas Petazzoni
@ 2012-12-09 20:56 ` Peter Korsgaard
1 sibling, 0 replies; 33+ messages in thread
From: Peter Korsgaard @ 2012-12-09 20:56 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> Fixes:
Thomas> http://autobuild.buildroot.org/results/673b0e9a1ba75123ba2c59df8ad81550170fffef/build-end.log
Gustavo already sent a similar patch for this, so I dropped this one.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 33+ messages in thread
* [Buildroot] [PATCH 6/8] xapp_xmh: add dependency on xdata_xbitmap
2012-12-09 18:13 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
` (4 preceding siblings ...)
2012-12-09 18:14 ` [Buildroot] [PATCH 5/8] bmon: needs MMU for fork() Thomas Petazzoni
@ 2012-12-09 18:14 ` Thomas Petazzoni
2012-12-09 20:57 ` Peter Korsgaard
2012-12-09 18:14 ` [Buildroot] [PATCH 7/8] neard: fix build failure caused by missing <linux/nfc.h> Thomas Petazzoni
2012-12-09 18:14 ` [Buildroot] [PATCH 8/8] libev: disable on avr32 Thomas Petazzoni
7 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:14 UTC (permalink / raw)
To: buildroot
Fixes:
http://autobuild.buildroot.org/results/fa059a89a305914700f63d7f0b0d4a3f63beb039/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/x11r7/xapp_xmh/Config.in | 1 +
package/x11r7/xapp_xmh/xapp_xmh.mk | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/package/x11r7/xapp_xmh/Config.in b/package/x11r7/xapp_xmh/Config.in
index 3da965a..1ef65c7 100644
--- a/package/x11r7/xapp_xmh/Config.in
+++ b/package/x11r7/xapp_xmh/Config.in
@@ -1,5 +1,6 @@
config BR2_PACKAGE_XAPP_XMH
bool "xmh"
select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XDATA_XBITMAPS
help
send and read mail with an X interface to MH
diff --git a/package/x11r7/xapp_xmh/xapp_xmh.mk b/package/x11r7/xapp_xmh/xapp_xmh.mk
index 934f38d..920289e 100644
--- a/package/x11r7/xapp_xmh/xapp_xmh.mk
+++ b/package/x11r7/xapp_xmh/xapp_xmh.mk
@@ -7,6 +7,6 @@
XAPP_XMH_VERSION = 1.0.2
XAPP_XMH_SOURCE = xmh-$(XAPP_XMH_VERSION).tar.bz2
XAPP_XMH_SITE = http://xorg.freedesktop.org/releases/individual/app
-XAPP_XMH_DEPENDENCIES = xlib_libXaw
+XAPP_XMH_DEPENDENCIES = xlib_libXaw xdata_xbitmaps
$(eval $(autotools-package))
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [Buildroot] [PATCH 7/8] neard: fix build failure caused by missing <linux/nfc.h>
2012-12-09 18:13 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
` (5 preceding siblings ...)
2012-12-09 18:14 ` [Buildroot] [PATCH 6/8] xapp_xmh: add dependency on xdata_xbitmap Thomas Petazzoni
@ 2012-12-09 18:14 ` Thomas Petazzoni
2012-12-09 20:58 ` Peter Korsgaard
2012-12-09 18:14 ` [Buildroot] [PATCH 8/8] libev: disable on avr32 Thomas Petazzoni
7 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:14 UTC (permalink / raw)
To: buildroot
Fixes:
http://autobuild.buildroot.org/results/bd1cb8795415b7369a9f4268b9f058cb78d4000d/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
| 387 ++++++++++++++++++++
package/neard/neard.mk | 1 +
2 files changed, 388 insertions(+)
create mode 100644 package/neard/neard-fix-missing-linux-nfc-header.patch
--git a/package/neard/neard-fix-missing-linux-nfc-header.patch b/package/neard/neard-fix-missing-linux-nfc-header.patch
new file mode 100644
index 0000000..9b9ce32
--- /dev/null
+++ b/package/neard/neard-fix-missing-linux-nfc-header.patch
@@ -0,0 +1,387 @@
+Add a private copy of <linux/nfc.h>
+
+The addition of the <linux/nfc.h> header in the kernel sources is
+moderately recent, and therefore, a number of toolchains don't have
+this header.
+
+As a workaround until all reasonable toolchains get this header
+included, add a configure check in neard to test whether this header
+is available or not, and if not, use our own private copy of it.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+Index: neard-0.8/configure.ac
+===================================================================
+--- neard-0.8.orig/configure.ac 2012-11-03 19:56:07.000000000 +0100
++++ neard-0.8/configure.ac 2012-12-09 17:08:00.000000000 +0100
+@@ -88,6 +88,8 @@
+ AC_SUBST(NETLINK_CFLAGS)
+ AC_SUBST(NETLINK_LIBS)
+
++AC_CHECK_HEADER(linux/nfc.h, [AC_DEFINE(HAVE_LINUX_NFC_H, 1, [Defines if linux/nfc.h header is available])], [], [#include <sys/socket.h>])
++
+ AC_ARG_ENABLE(test, AC_HELP_STRING([--enable-test],
+ [enable test/example scripts]),
+ [enable_test=${enableval}])
+Index: neard-0.8/src/near.h
+===================================================================
+--- neard-0.8.orig/src/near.h 2012-11-03 19:56:07.000000000 +0100
++++ neard-0.8/src/near.h 2012-12-09 16:56:40.000000000 +0100
+@@ -23,7 +23,11 @@
+ #include <sys/socket.h>
+
+ #include <linux/socket.h>
++#ifdef HAVE_LINUX_NFC_H
+ #include <linux/nfc.h>
++#else
++#include "linux-nfc.h"
++#endif
+
+ #include <glib.h>
+
+Index: neard-0.8/src/linux-nfc.h
+===================================================================
+--- /dev/null 1970-01-01 00:00:00.000000000 +0000
++++ neard-0.8/src/linux-nfc.h 2012-12-09 17:11:10.000000000 +0100
+@@ -0,0 +1,197 @@
++/*
++ * Copyright (C) 2011 Instituto Nokia de Tecnologia
++ *
++ * Authors:
++ * Lauro Ramos Venancio <lauro.venancio@openbossa.org>
++ * Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
++ *
++ * This program is free software; you can redistribute it and/or modify
++ * it under the terms of the GNU General Public License as published by
++ * the Free Software Foundation; either version 2 of the License, or
++ * (at your option) any later version.
++ *
++ * This program is distributed in the hope that it will be useful,
++ * but WITHOUT ANY WARRANTY; without even the implied warranty of
++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
++ * GNU General Public License for more details.
++ *
++ * You should have received a copy of the GNU General Public License
++ * along with this program; if not, write to the
++ * Free Software Foundation, Inc.,
++ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
++ */
++
++#ifndef __LINUX_NFC_H
++#define __LINUX_NFC_H
++
++#include <linux/types.h>
++#include <linux/socket.h>
++
++#define NFC_GENL_NAME "nfc"
++#define NFC_GENL_VERSION 1
++
++#define NFC_GENL_MCAST_EVENT_NAME "events"
++
++/**
++ * enum nfc_commands - supported nfc commands
++ *
++ * @NFC_CMD_UNSPEC: unspecified command
++ *
++ * @NFC_CMD_GET_DEVICE: request information about a device (requires
++ * %NFC_ATTR_DEVICE_INDEX) or dump request to get a list of all nfc devices
++ * @NFC_CMD_DEV_UP: turn on the nfc device
++ * (requires %NFC_ATTR_DEVICE_INDEX)
++ * @NFC_CMD_DEV_DOWN: turn off the nfc device
++ * (requires %NFC_ATTR_DEVICE_INDEX)
++ * @NFC_CMD_START_POLL: start polling for targets using the given protocols
++ * (requires %NFC_ATTR_DEVICE_INDEX and %NFC_ATTR_PROTOCOLS)
++ * @NFC_CMD_STOP_POLL: stop polling for targets (requires
++ * %NFC_ATTR_DEVICE_INDEX)
++ * @NFC_CMD_GET_TARGET: dump all targets found by the previous poll (requires
++ * %NFC_ATTR_DEVICE_INDEX)
++ * @NFC_EVENT_TARGETS_FOUND: event emitted when a new target is found
++ * (it sends %NFC_ATTR_DEVICE_INDEX)
++ * @NFC_EVENT_DEVICE_ADDED: event emitted when a new device is registred
++ * (it sends %NFC_ATTR_DEVICE_NAME, %NFC_ATTR_DEVICE_INDEX and
++ * %NFC_ATTR_PROTOCOLS)
++ * @NFC_EVENT_DEVICE_REMOVED: event emitted when a device is removed
++ * (it sends %NFC_ATTR_DEVICE_INDEX)
++ * @NFC_EVENT_TM_ACTIVATED: event emitted when the adapter is activated in
++ * target mode.
++ * @NFC_EVENT_DEVICE_DEACTIVATED: event emitted when the adapter is deactivated
++ * from target mode.
++ */
++enum nfc_commands {
++ NFC_CMD_UNSPEC,
++ NFC_CMD_GET_DEVICE,
++ NFC_CMD_DEV_UP,
++ NFC_CMD_DEV_DOWN,
++ NFC_CMD_DEP_LINK_UP,
++ NFC_CMD_DEP_LINK_DOWN,
++ NFC_CMD_START_POLL,
++ NFC_CMD_STOP_POLL,
++ NFC_CMD_GET_TARGET,
++ NFC_EVENT_TARGETS_FOUND,
++ NFC_EVENT_DEVICE_ADDED,
++ NFC_EVENT_DEVICE_REMOVED,
++ NFC_EVENT_TARGET_LOST,
++ NFC_EVENT_TM_ACTIVATED,
++ NFC_EVENT_TM_DEACTIVATED,
++/* private: internal use only */
++ __NFC_CMD_AFTER_LAST
++};
++#define NFC_CMD_MAX (__NFC_CMD_AFTER_LAST - 1)
++
++/**
++ * enum nfc_attrs - supported nfc attributes
++ *
++ * @NFC_ATTR_UNSPEC: unspecified attribute
++ *
++ * @NFC_ATTR_DEVICE_INDEX: index of nfc device
++ * @NFC_ATTR_DEVICE_NAME: device name, max 8 chars
++ * @NFC_ATTR_PROTOCOLS: nfc protocols - bitwise or-ed combination from
++ * NFC_PROTO_*_MASK constants
++ * @NFC_ATTR_TARGET_INDEX: index of the nfc target
++ * @NFC_ATTR_TARGET_SENS_RES: NFC-A targets extra information such as NFCID
++ * @NFC_ATTR_TARGET_SEL_RES: NFC-A targets extra information (useful if the
++ * target is not NFC-Forum compliant)
++ * @NFC_ATTR_TARGET_NFCID1: NFC-A targets identifier, max 10 bytes
++ * @NFC_ATTR_TARGET_SENSB_RES: NFC-B targets extra information, max 12 bytes
++ * @NFC_ATTR_TARGET_SENSF_RES: NFC-F targets extra information, max 18 bytes
++ * @NFC_ATTR_COMM_MODE: Passive or active mode
++ * @NFC_ATTR_RF_MODE: Initiator or target
++ * @NFC_ATTR_IM_PROTOCOLS: Initiator mode protocols to poll for
++ * @NFC_ATTR_TM_PROTOCOLS: Target mode protocols to listen for
++ */
++enum nfc_attrs {
++ NFC_ATTR_UNSPEC,
++ NFC_ATTR_DEVICE_INDEX,
++ NFC_ATTR_DEVICE_NAME,
++ NFC_ATTR_PROTOCOLS,
++ NFC_ATTR_TARGET_INDEX,
++ NFC_ATTR_TARGET_SENS_RES,
++ NFC_ATTR_TARGET_SEL_RES,
++ NFC_ATTR_TARGET_NFCID1,
++ NFC_ATTR_TARGET_SENSB_RES,
++ NFC_ATTR_TARGET_SENSF_RES,
++ NFC_ATTR_COMM_MODE,
++ NFC_ATTR_RF_MODE,
++ NFC_ATTR_DEVICE_POWERED,
++ NFC_ATTR_IM_PROTOCOLS,
++ NFC_ATTR_TM_PROTOCOLS,
++/* private: internal use only */
++ __NFC_ATTR_AFTER_LAST
++};
++#define NFC_ATTR_MAX (__NFC_ATTR_AFTER_LAST - 1)
++
++#define NFC_DEVICE_NAME_MAXSIZE 8
++#define NFC_NFCID1_MAXSIZE 10
++#define NFC_SENSB_RES_MAXSIZE 12
++#define NFC_SENSF_RES_MAXSIZE 18
++#define NFC_GB_MAXSIZE 48
++
++/* NFC protocols */
++#define NFC_PROTO_JEWEL 1
++#define NFC_PROTO_MIFARE 2
++#define NFC_PROTO_FELICA 3
++#define NFC_PROTO_ISO14443 4
++#define NFC_PROTO_NFC_DEP 5
++#define NFC_PROTO_ISO14443_B 6
++
++#define NFC_PROTO_MAX 7
++
++/* NFC communication modes */
++#define NFC_COMM_ACTIVE 0
++#define NFC_COMM_PASSIVE 1
++
++/* NFC RF modes */
++#define NFC_RF_INITIATOR 0
++#define NFC_RF_TARGET 1
++#define NFC_RF_NONE 2
++
++/* NFC protocols masks used in bitsets */
++#define NFC_PROTO_JEWEL_MASK (1 << NFC_PROTO_JEWEL)
++#define NFC_PROTO_MIFARE_MASK (1 << NFC_PROTO_MIFARE)
++#define NFC_PROTO_FELICA_MASK (1 << NFC_PROTO_FELICA)
++#define NFC_PROTO_ISO14443_MASK (1 << NFC_PROTO_ISO14443)
++#define NFC_PROTO_NFC_DEP_MASK (1 << NFC_PROTO_NFC_DEP)
++#define NFC_PROTO_ISO14443_B_MASK (1 << NFC_PROTO_ISO14443_B)
++
++struct sockaddr_nfc {
++ sa_family_t sa_family;
++ __u32 dev_idx;
++ __u32 target_idx;
++ __u32 nfc_protocol;
++};
++
++#define NFC_LLCP_MAX_SERVICE_NAME 63
++struct sockaddr_nfc_llcp {
++ sa_family_t sa_family;
++ __u32 dev_idx;
++ __u32 target_idx;
++ __u32 nfc_protocol;
++ __u8 dsap; /* Destination SAP, if known */
++ __u8 ssap; /* Source SAP to be bound to */
++ char service_name[NFC_LLCP_MAX_SERVICE_NAME]; /* Service name URI */;
++ size_t service_name_len;
++};
++
++/* NFC socket protocols */
++#define NFC_SOCKPROTO_RAW 0
++#define NFC_SOCKPROTO_LLCP 1
++#define NFC_SOCKPROTO_MAX 2
++
++#define NFC_HEADER_SIZE 1
++
++/**
++ * Pseudo-header info for raw socket packets
++ * First byte is the adapter index
++ * Second byte contains flags
++ * - 0x01 - Direction (0=RX, 1=TX)
++ * - 0x02-0x80 - Reserved
++ **/
++#define NFC_LLCP_RAW_HEADER_SIZE 2
++#define NFC_LLCP_DIRECTION_RX 0x00
++#define NFC_LLCP_DIRECTION_TX 0x01
++
++#endif /*__LINUX_NFC_H */
+Index: neard-0.8/plugins/mifare.c
+===================================================================
+--- neard-0.8.orig/plugins/mifare.c 2012-10-10 05:29:07.000000000 +0200
++++ neard-0.8/plugins/mifare.c 2012-12-09 16:58:22.000000000 +0100
+@@ -29,7 +29,11 @@
+ #include <sys/socket.h>
+
+ #include <linux/socket.h>
++#ifdef HAVE_LINUX_NFC_H
+ #include <linux/nfc.h>
++#else
++#include "../src/linux-nfc.h"
++#endif
+
+ #include <near/plugin.h>
+ #include <near/log.h>
+Index: neard-0.8/plugins/p2p.c
+===================================================================
+--- neard-0.8.orig/plugins/p2p.c 2012-11-03 19:56:07.000000000 +0100
++++ neard-0.8/plugins/p2p.c 2012-12-09 16:59:06.000000000 +0100
+@@ -30,7 +30,11 @@
+ #include <sys/socket.h>
+
+ #include <linux/socket.h>
++#ifdef HAVE_LINUX_NFC_H
+ #include <linux/nfc.h>
++#else
++#include "../src/linux-nfc.h"
++#endif
+
+ #include <near/plugin.h>
+ #include <near/log.h>
+Index: neard-0.8/plugins/handover.c
+===================================================================
+--- neard-0.8.orig/plugins/handover.c 2012-11-03 19:56:07.000000000 +0100
++++ neard-0.8/plugins/handover.c 2012-12-09 17:13:30.000000000 +0100
+@@ -29,7 +29,11 @@
+ #include <sys/socket.h>
+
+ #include <linux/socket.h>
++#ifdef HAVE_LINUX_NFC_H
+ #include <linux/nfc.h>
++#else
++#include "../src/linux-nfc.h"
++#endif
+
+ #include <near/types.h>
+ #include <near/log.h>
+Index: neard-0.8/plugins/nfctype1.c
+===================================================================
+--- neard-0.8.orig/plugins/nfctype1.c 2012-10-10 05:29:07.000000000 +0200
++++ neard-0.8/plugins/nfctype1.c 2012-12-09 17:09:13.000000000 +0100
+@@ -29,7 +29,11 @@
+ #include <sys/socket.h>
+
+ #include <linux/socket.h>
++#ifdef HAVE_LINUX_NFC_H
+ #include <linux/nfc.h>
++#else
++#include "../src/linux-nfc.h"
++#endif
+
+ #include <near/plugin.h>
+ #include <near/log.h>
+Index: neard-0.8/plugins/nfctype2.c
+===================================================================
+--- neard-0.8.orig/plugins/nfctype2.c 2012-10-10 05:29:07.000000000 +0200
++++ neard-0.8/plugins/nfctype2.c 2012-12-09 17:09:52.000000000 +0100
+@@ -29,7 +29,11 @@
+ #include <sys/socket.h>
+
+ #include <linux/socket.h>
++#ifdef HAVE_LINUX_NFC_H
+ #include <linux/nfc.h>
++#else
++#include "../src/linux-nfc.h"
++#endif
+
+ #include <near/plugin.h>
+ #include <near/log.h>
+Index: neard-0.8/plugins/nfctype3.c
+===================================================================
+--- neard-0.8.orig/plugins/nfctype3.c 2012-11-03 19:56:07.000000000 +0100
++++ neard-0.8/plugins/nfctype3.c 2012-12-09 17:11:51.000000000 +0100
+@@ -29,7 +29,11 @@
+ #include <sys/socket.h>
+
+ #include <linux/socket.h>
++#ifdef HAVE_LINUX_NFC_H
+ #include <linux/nfc.h>
++#else
++#include "../src/linux-nfc.h"
++#endif
+
+ #include <near/plugin.h>
+ #include <near/log.h>
+Index: neard-0.8/plugins/nfctype4.c
+===================================================================
+--- neard-0.8.orig/plugins/nfctype4.c 2012-11-03 19:56:07.000000000 +0100
++++ neard-0.8/plugins/nfctype4.c 2012-12-09 17:12:14.000000000 +0100
+@@ -30,7 +30,11 @@
+ #include <sys/socket.h>
+
+ #include <linux/socket.h>
++#ifdef HAVE_LINUX_NFC_H
+ #include <linux/nfc.h>
++#else
++#include "../src/linux-nfc.h"
++#endif
+
+ #include <near/plugin.h>
+ #include <near/log.h>
+Index: neard-0.8/plugins/npp.c
+===================================================================
+--- neard-0.8.orig/plugins/npp.c 2012-10-10 05:29:07.000000000 +0200
++++ neard-0.8/plugins/npp.c 2012-12-09 17:12:36.000000000 +0100
+@@ -29,7 +29,11 @@
+ #include <sys/socket.h>
+
+ #include <linux/socket.h>
++#ifdef HAVE_LINUX_NFC_H
+ #include <linux/nfc.h>
++#else
++#include "../src/linux-nfc.h"
++#endif
+
+ #include <near/plugin.h>
+ #include <near/log.h>
+Index: neard-0.8/plugins/snep.c
+===================================================================
+--- neard-0.8.orig/plugins/snep.c 2012-11-03 19:56:07.000000000 +0100
++++ neard-0.8/plugins/snep.c 2012-12-09 17:13:07.000000000 +0100
+@@ -29,7 +29,11 @@
+ #include <sys/socket.h>
+
+ #include <linux/socket.h>
++#ifdef HAVE_LINUX_NFC_H
+ #include <linux/nfc.h>
++#else
++#include "../src/linux-nfc.h"
++#endif
+
+ #include <near/plugin.h>
+ #include <near/log.h>
diff --git a/package/neard/neard.mk b/package/neard/neard.mk
index 2d3e30e..3c9dd7c 100644
--- a/package/neard/neard.mk
+++ b/package/neard/neard.mk
@@ -8,6 +8,7 @@ NEARD_SITE = $(BR2_KERNEL_MIRROR)/linux/network/nfc
NEARD_LICENSE = GPLv2
NEARD_LICENSE_FILES = COPYING
+NEARD_AUTORECONF = YES
NEARD_DEPENDENCIES = host-pkgconf dbus libglib2 libnl
NEARD_CONF_OPT = --disable-traces
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [Buildroot] [PATCH 8/8] libev: disable on avr32
2012-12-09 18:13 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
` (6 preceding siblings ...)
2012-12-09 18:14 ` [Buildroot] [PATCH 7/8] neard: fix build failure caused by missing <linux/nfc.h> Thomas Petazzoni
@ 2012-12-09 18:14 ` Thomas Petazzoni
2012-12-09 20:59 ` Peter Korsgaard
7 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:14 UTC (permalink / raw)
To: buildroot
Fixes:
http://autobuild.buildroot.org/results/4951121337fad670d8bf869483774ccf9e91dd47/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/libev/Config.in | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/libev/Config.in b/package/libev/Config.in
index 71abe77..fd74f55 100644
--- a/package/libev/Config.in
+++ b/package/libev/Config.in
@@ -1,5 +1,7 @@
config BR2_PACKAGE_LIBEV
bool "libev"
+ # needs memory fences
+ depends on !BR2_avr32
help
Userspace library for handling asynchronous notifications
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread
* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2012-11-17 22:23 Thomas Petazzoni
2012-11-17 22:54 ` Peter Korsgaard
0 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2012-11-17 22:23 UTC (permalink / raw)
To: buildroot
The following changes since commit ee3a96137b6cbb8f970c540c61f75300a44ea803:
lua-msgpack-native: fix fetch (2012-11-17 10:15:24 +0100)
are available in the git repository at:
git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git misc-fixes
for you to fetch changes up to e269850f46106974a04c05f22889e61202608453:
dbus: uses fork(), requires MMU (2012-11-17 23:23:17 +0100)
----------------------------------------------------------------
Thomas Petazzoni (8):
python: use default configure commands to get shared build
libatomic_ops: bump to version 7.2
gnutls: fix build failure due to non-existing gets in recent C libraries
gsl: fix build on !i386 uClibc
libffi: make thread support optional
php: fix C++ link issue
attr: fix static build
dbus: uses fork(), requires MMU
Vellemans Noel (2):
libxml2: add support for building host library with python support
mesa3d: requires host-libxml2 and host-python to generate some files
...r-0001-attr-Fix-static-build-installation.patch | 30 ++++++++
package/bluez_utils/Config.in | 1 +
package/connman/Config.in | 1 +
package/dbus/Config.in | 2 +
package/efl/libedbus/Config.in | 1 +
...001-gets-no-longer-exists-in-e-glibc-2.16.patch | 56 +++++++++++++++
package/gsl/gsl.mk | 13 ++++
package/gvfs/Config.in | 2 +
package/libatomic_ops/libatomic_ops.mk | 2 +-
...ffi-0003-Make-thread-support-conditionnal.patch | 73 ++++++++++++++++++++
package/libxml2/Config.in | 3 +
package/libxml2/libxml2.mk | 10 ++-
package/network-manager/Config.in | 1 +
package/ofono/Config.in | 1 +
package/php/php.mk | 4 ++
package/python/python.mk | 14 +---
package/qt/Config.in | 1 +
package/samba/Config.in | 1 +
package/systemd/Config.in | 1 +
package/x11r7/mesa3d/Config.in | 1 +
package/x11r7/mesa3d/mesa3d.mk | 4 +-
system/Config.in | 1 +
22 files changed, 207 insertions(+), 16 deletions(-)
create mode 100644 package/attr/attr-0001-attr-Fix-static-build-installation.patch
create mode 100644 package/gnutls/gnutls-0001-gets-no-longer-exists-in-e-glibc-2.16.patch
create mode 100644 package/libffi/libffi-0003-Make-thread-support-conditionnal.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 33+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2012-03-20 8:09 Thomas Petazzoni
0 siblings, 0 replies; 33+ messages in thread
From: Thomas Petazzoni @ 2012-03-20 8:09 UTC (permalink / raw)
To: buildroot
The following changes since commit b5fd0f2709cab72f48da12a5804dd8670fffbf6e:
Change the /etc/mtab symlink to use an absolute path (2012-03-19 17:08:13 +0100)
are available in the git repository at:
git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git misc-fixes
Thomas Petazzoni (1):
parted: make sure to select libuuid in util-linux
package/parted/Config.in | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 33+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2012-03-19 15:40 Thomas Petazzoni
2012-03-19 15:44 ` Peter Korsgaard
0 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2012-03-19 15:40 UTC (permalink / raw)
To: buildroot
The following changes since commit e687bb71a028303f326aeebfaf94a3ac1c43b4e4:
gcc: bump 4.4.x version (2012-03-13 16:27:25 +0100)
are available in the git repository at:
git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git misc-fixes
Thomas Petazzoni (3):
transmission: add missing host-intltool dependency
at: uses fork(), so requires MMU
glib-networking: add missing host-intltool dependency
package/at/Config.in | 1 +
package/glib-networking/glib-networking.mk | 6 +++++-
package/transmission/transmission.mk | 1 +
3 files changed, 7 insertions(+), 1 deletions(-)
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 33+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
2012-03-19 15:40 Thomas Petazzoni
@ 2012-03-19 15:44 ` Peter Korsgaard
0 siblings, 0 replies; 33+ messages in thread
From: Peter Korsgaard @ 2012-03-19 15:44 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit e687bb71a028303f326aeebfaf94a3ac1c43b4e4:
Thomas> gcc: bump 4.4.x version (2012-03-13 16:27:25 +0100)
Thomas> are available in the git repository at:
Thomas> git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git misc-fixes
Thomas> Thomas Petazzoni (3):
Thomas> transmission: add missing host-intltool dependency
Thomas> at: uses fork(), so requires MMU
Thomas> glib-networking: add missing host-intltool dependency
Committed all 3, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 33+ messages in thread
* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2010-07-07 6:20 Thomas Petazzoni
2010-07-08 11:57 ` Peter Korsgaard
0 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2010-07-07 6:20 UTC (permalink / raw)
To: buildroot
The following changes since commit ecb7642cce36bc68d93f0eee677adc7da538228d:
Thomas Petazzoni (1):
external-toolchain: hardcode the destination directory for a library
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Darius Augulis (1):
GETPT support is needed by rxvt.
Thomas Petazzoni (19):
webkit: fix misc build issues
xcb-util: add dependency on host-gperf
xlib_libXt: fix build issues
ruby: convert to autotools and fix build
cmake: pass LDFLAGS/CFLAGS when building for the host
fontconfig: fix cross-compilation patch
Solve the host tools relying on host libraries problem
Remove unneeded variables in HOST_CONFIGURE_OPTS
Separate flags from commands in HOST_CONFIGURE_OPTS
Rework sysroot option handling
Cleanup TARGET_CONFIGURE_OPTS
Remove *_FOR_TARGET variables from TARGET_CONFIGURE_OPTS
Remove $(TOOLCHAIN_DIR)/bin and $(STAGING_DIR)/{usr/bin,bin} from the PATH
Introduce support for host config cache
Merge TARGET_CONFIGURE_ENV into TARGET_CONFIGURE_OPTS
openssl: don't override the CC passed at configure time
external-toolchain: adjust tests on TARGET_CC and TARGET_CXX
Update all packages to quote $(TARGET_CC)
xvkbd: add missing dependency on xlib_libXtst
Makefile | 8 +-
boot/grub/grub.mk | 8 +-
boot/grub2/grub2.mk | 4 +-
package/Makefile.autotools.in | 2 +-
package/Makefile.in | 120 +++++++-------------
package/acpid/acpid.mk | 2 +-
package/busybox/busybox.mk | 6 +-
package/cmake/cmake.mk | 4 +-
package/coreutils/coreutils.mk | 4 +-
package/dillo/dillo.mk | 2 +-
package/docker/docker.mk | 2 +-
package/eeprog/eeprog.mk | 2 +-
package/ezxml/ezxml.mk | 2 +-
.../fontconfig-2.6.0-use_for_build.patch | 93 +++++++++------
package/gadgetfs-test/gadgetfs-test.mk | 2 +-
package/games/rubix/rubix.mk | 2 +-
package/gettext/gettext.mk | 4 +-
package/gtk2-engines/gtk2-engines.mk | 2 +-
package/iostat/iostat.mk | 2 +-
package/iproute2/iproute2.mk | 2 +-
package/libfloat/libfloat.mk | 4 +-
package/libglib12/libglib12.mk | 2 +-
package/libgtk12/libgtk12.mk | 2 +-
package/lmbench/lmbench.mk | 4 +-
package/lockfile-progs/lockfile-progs.mk | 3 +-
package/mdadm/mdadm.mk | 2 +-
package/memstat/memstat.mk | 2 +-
package/microperl/microperl.mk | 2 +-
package/microwin/microwin.mk | 4 +-
package/mii-diag/mii-diag.mk | 4 +-
package/mrouted/mrouted.mk | 2 +-
package/mtd/mtd.mk | 3 +-
package/multimedia/alsa-utils/alsa-utils.mk | 2 +-
package/multimedia/festival/festival/festival.mk | 2 +-
.../festival/speech-tools/speech-tools.mk | 2 +-
package/multimedia/ffmpeg/ffmpeg.mk | 1 -
package/multimedia/mplayer/mplayer.mk | 2 +-
package/netkitbase/netkitbase.mk | 8 +-
package/netkittelnet/netkittelnet.mk | 10 +-
package/netplug/netplug.mk | 2 +-
package/netsnmp/netsnmp.mk | 2 +-
package/newt/newt.mk | 2 +-
package/nfs-utils/nfs-utils.mk | 2 +-
package/openssh/openssh.mk | 2 +-
package/openssl/openssl.mk | 4 +-
package/pcmcia/pcmcia.mk | 2 +-
package/portmap/portmap.mk | 2 +-
package/pppd/pppd.mk | 2 +-
package/python/python.mk | 4 +-
package/ruby/ruby.mk | 71 +-----------
package/sed/sed.mk | 4 +-
package/slang/slang.mk | 2 +-
package/stunnel/stunnel.mk | 2 +-
package/sysvinit/sysvinit.mk | 2 +-
package/tcpdump/dhcpdump.mk | 2 +-
package/udev/udev.mk | 2 +-
package/util-linux/util-linux.mk | 2 +-
package/vsftpd/vsftpd.mk | 2 +-
package/webkit/webkit.mk | 3 +-
package/wipe/wipe.mk | 4 +-
package/wireless-tools/wireless-tools.mk | 6 +-
package/x11r7/xcb-util/xcb-util.mk | 1 +
.../xlib_libXt-1.0.7-fix-cross-compile.patch | 96 ++++++++++++++++
package/x11r7/xlib_libXt/xlib_libXt.mk | 3 +-
package/xvkbd/Config.in | 1 +
package/xvkbd/xvkbd.mk | 4 +-
toolchain/Makefile.in | 2 -
toolchain/external-toolchain/ext-tool.mk | 16 ++-
toolchain/gdb/gdb.mk | 4 +-
toolchain/uClibc/uClibc-0.9.30.config | 2 +-
toolchain/uClibc/uClibc-0.9.31.config | 2 +-
71 files changed, 308 insertions(+), 283 deletions(-)
create mode 100644 package/x11r7/xlib_libXt/xlib_libXt-1.0.7-fix-cross-compile.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 33+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
2010-07-07 6:20 Thomas Petazzoni
@ 2010-07-08 11:57 ` Peter Korsgaard
0 siblings, 0 replies; 33+ messages in thread
From: Peter Korsgaard @ 2010-07-08 11:57 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit ecb7642cce36bc68d93f0eee677adc7da538228d:
Thomas> Thomas Petazzoni (1):
Thomas> external-toolchain: hardcode the destination directory for a library
Thomas> are available in the git repository at:
Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Pulled, thanks!
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 33+ messages in thread
* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2010-05-07 19:30 Thomas Petazzoni
0 siblings, 0 replies; 33+ messages in thread
From: Thomas Petazzoni @ 2010-05-07 19:30 UTC (permalink / raw)
To: buildroot
Hello,
Here is a resend of this patch set, with an additional check that
Python is actually installed on the host.
Thomas
The following changes since commit ea0695ff5edff392603a77b9299833fbb399e429:
Luca Ceresoli (1):
customize: fix copy paths
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Thomas Petazzoni (3):
busybox: disable MTD utils in default configuration
libxcb: fix path to Python modules
xlib_libX11: re-add a patch to fix the keysymdef issue
package/busybox/busybox-1.16.x.config | 8 ++--
package/x11r7/libxcb/libxcb.mk | 3 +-
.../xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch | 35 ++++++++++++++++++++
toolchain/dependencies/dependencies.sh | 2 +-
4 files changed, 42 insertions(+), 6 deletions(-)
create mode 100644 package/x11r7/xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 33+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2010-05-05 21:55 Thomas Petazzoni
2010-05-07 22:05 ` Peter Korsgaard
0 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2010-05-05 21:55 UTC (permalink / raw)
To: buildroot
The following changes since commit d701a82321ad2f3e5bfa16639e93532294cad4ce:
Paulius Zaleckas (1):
Remove gtk-doc documentations from target
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Thomas Petazzoni (3):
busybox: disable MTD utils in default configuration
libxcb: fix path to Python modules
xlib_libX11: re-add a patch to fix the keysymdef issue
package/busybox/busybox-1.16.x.config | 8 ++--
package/x11r7/libxcb/libxcb.mk | 3 +-
.../xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch | 35 ++++++++++++++++++++
3 files changed, 41 insertions(+), 5 deletions(-)
create mode 100644 package/x11r7/xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 33+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
2010-05-05 21:55 Thomas Petazzoni
@ 2010-05-07 22:05 ` Peter Korsgaard
0 siblings, 0 replies; 33+ messages in thread
From: Peter Korsgaard @ 2010-05-07 22:05 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit d701a82321ad2f3e5bfa16639e93532294cad4ce:
Thomas> Paulius Zaleckas (1):
Thomas> Remove gtk-doc documentations from target
Thomas> are available in the git repository at:
Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Pulled, thanks!
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 33+ messages in thread
* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2010-04-28 21:40 Thomas Petazzoni
2010-05-02 22:03 ` Peter Korsgaard
0 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2010-04-28 21:40 UTC (permalink / raw)
To: buildroot
Hello,
Here is a set of patches, some of them are important fixes that should
really be merged before 2010.05, some other are improvements and
cleanups that can be postponed if needed.
The important ones are :
libxslt: fix host compilation
uClibc: add UCLIBC_HAS_NFTW to default configuration
uclibc: make sure the default configuration doesn't ask questions
Fix autotools configuration cache handling
Best regards,
Thomas
The following changes since commit 671ec3917b7b8d9e6a22c1f881ff46808e3d8806:
Peter Korsgaard (1):
alsa-utils: alsamixer needs WCHAR
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Thomas Petazzoni (19):
autotools: fix autoreconf check
libxslt: fix host compilation
openssl: convert to the generic infrastructure
autotools: inherit LIBTOOL_PATCH for host packages
packages: remove useless HOST_*_LIBTOOL_PATCH
autotools: fix referencing to LIBTOOL_PATCH variable
freetype: disable autoreconf
packages: handle interrupted downloads
uClibc: add UCLIBC_HAS_NFTW to default configuration
uclibc: make sure the default configuration doesn't ask questions
Commonalize the definition of TOOLCHAIN_DIR
Get rid of KERNEL_CROSS
Remove latest users of the ROOTFS_SUFFIX thing
Get rid of the code computing ROOTFS_SUFFIX
Update defconfigs after BR2_ROOTFS_SUFFIX removal
Remove BR2_GNU_TARGET_SUFFIX and compute GNU_TARGET_NAME
Update defconfigs after BR2_GNU_TARGET_SUFFIX removal
Unverbosify autoreconf output
Fix autotools configuration cache handling
Config.in | 18 -----
Makefile | 2 +
configs/arm_toolchain_defconfig | 2 -
configs/at91rm9200df_defconfig | 2 -
configs/at91rm9200df_ext_bare_defconfig | 2 -
configs/at91rm9200df_ext_defconfig | 2 -
configs/at91sam9260dfc_defconfig | 2 -
configs/at91sam9260dfc_ext_bare_defconfig | 2 -
configs/at91sam9260dfc_ext_defconfig | 2 -
configs/at91sam9260pf_defconfig | 1 -
configs/at91sam9261ek_defconfig | 2 -
configs/at91sam9261ek_ext_bare_defconfig | 2 -
configs/at91sam9261ek_ext_defconfig | 2 -
configs/at91sam9263ek_defconfig | 2 -
configs/at91sam9263ek_ext_bare_defconfig | 2 -
configs/at91sam9263ek_ext_defconfig | 2 -
configs/at91sam9g20dfc_defconfig | 2 -
configs/at91sam9g20dfc_ext_bare_defconfig | 2 -
configs/at91sam9g20dfc_ext_defconfig | 2 -
configs/atngw100-base_defconfig | 2 -
configs/atngw100_defconfig | 2 -
configs/atstk1005_defconfig | 2 -
configs/atstk100x_defconfig | 2 -
configs/i386_defconfig | 2 -
configs/i686_defconfig | 2 -
configs/integrator926_defconfig | 2 -
configs/integrator926_huge_defconfig | 2 -
configs/kb9202_defconfig | 2 -
configs/v100sc2_defconfig | 2 -
package/Makefile.autotools.in | 15 +++-
package/Makefile.in | 29 ++++----
package/Makefile.package.in | 8 ++-
package/autoconf/autoconf.mk | 2 +-
package/dbus/dbus.mk | 1 -
package/directfb/directfb.mk | 1 -
package/expat/expat.mk | 1 -
package/fakeroot/fakeroot.mk | 1 -
package/freetype/freetype.mk | 2 +-
package/libglib2/libglib2.mk | 1 -
package/libpng/libpng.mk | 1 -
package/libxml2/libxml2.mk | 2 -
package/libxslt/libxslt.mk | 3 +-
package/openssl/openssl.mk | 85 +++++++++++++---------
package/pcmcia/pcmcia.mk | 2 +-
package/x11r7/xlib_libfontenc/xlib_libfontenc.mk | 1 -
target/linux/Makefile.in | 5 +-
target/linux/Makefile.in.advanced | 5 +-
toolchain/uClibc/uClibc-0.9.31.config | 2 +-
toolchain/uClibc/uclibc.mk | 4 +-
49 files changed, 98 insertions(+), 146 deletions(-)
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 33+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
2010-04-28 21:40 Thomas Petazzoni
@ 2010-05-02 22:03 ` Peter Korsgaard
0 siblings, 0 replies; 33+ messages in thread
From: Peter Korsgaard @ 2010-05-02 22:03 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> Hello,
Thomas> Here is a set of patches, some of them are important fixes that should
Thomas> really be merged before 2010.05, some other are improvements and
Thomas> cleanups that can be postponed if needed.
Thomas> The important ones are :
Thomas> libxslt: fix host compilation
Thomas> uClibc: add UCLIBC_HAS_NFTW to default configuration
Thomas> uclibc: make sure the default configuration doesn't ask questions
Thomas> Fix autotools configuration cache handling
Thanks, I've committed everything except for 7 and 8 (freetype +
interrupted downloads).
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 33+ messages in thread
* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2010-02-26 8:14 Thomas Petazzoni
2010-02-26 9:43 ` Peter Korsgaard
0 siblings, 1 reply; 33+ messages in thread
From: Thomas Petazzoni @ 2010-02-26 8:14 UTC (permalink / raw)
To: buildroot
The following changes since commit 0f40a46a54a3620c88fbd52e38a0f29c6aedb9a0:
Gustavo Zacarias (1):
Remove obsolete hostap package
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Thomas Petazzoni (6):
avahi: add dependency on host-intltool
libcgicc: fix build breakage and bump version
libraw1394: fix tarball URL
cramfs: add CFLAGS/LDFLAGS and host-zlib dependency
squashfs: pass CFLAGS/LDFLAGS and add host-zlib dependency
busybox: add upstream 1.16 fix
package/avahi/avahi.mk | 2 +-
package/busybox/busybox-1.16.0-fsync.patch | 13 ++++
package/libcgicc/cgicc-3.2.7-memset.patch | 12 ----
.../cgicc-3.2.9-disable-documentation-option.patch | 50 +++++++++++++++
package/libcgicc/libcgicc.mk | 8 ++-
package/libraw1394/libraw1394.mk | 2 +-
target/cramfs/cramfs.mk | 4 +-
.../squashfs/squashfs-4.0-build-system-fix.patch | 65 ++++++++++++++++++++
target/squashfs/squashfsroot.mk | 4 +-
9 files changed, 139 insertions(+), 21 deletions(-)
create mode 100644 package/busybox/busybox-1.16.0-fsync.patch
delete mode 100644 package/libcgicc/cgicc-3.2.7-memset.patch
create mode 100644 package/libcgicc/cgicc-3.2.9-disable-documentation-option.patch
create mode 100644 target/squashfs/squashfs-4.0-build-system-fix.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 33+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
2010-02-26 8:14 Thomas Petazzoni
@ 2010-02-26 9:43 ` Peter Korsgaard
2010-02-26 10:02 ` Thomas Petazzoni
0 siblings, 1 reply; 33+ messages in thread
From: Peter Korsgaard @ 2010-02-26 9:43 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit 0f40a46a54a3620c88fbd52e38a0f29c6aedb9a0:
Thomas> Gustavo Zacarias (1):
Thomas> Remove obsolete hostap package
Thomas> are available in the git repository at:
Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Pulled and pushed, thanks!
Anything else missing before 2010.20?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 33+ messages in thread
end of thread, other threads:[~2012-12-09 20:59 UTC | newest]
Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-09 18:13 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
2012-12-09 18:13 ` [Buildroot] [PATCH 1/8] ccache: uses fork(), there only usable on MMU platforms Thomas Petazzoni
2012-12-09 20:50 ` Peter Korsgaard
2012-12-09 18:13 ` [Buildroot] [PATCH 2/8] ccache: deprecate the target package Thomas Petazzoni
2012-12-09 20:51 ` Peter Korsgaard
2012-12-09 18:13 ` [Buildroot] [PATCH 3/8] rt-tests: requires thread support in the toolchain Thomas Petazzoni
2012-12-09 20:53 ` Peter Korsgaard
2012-12-09 18:13 ` [Buildroot] [PATCH 4/8] rt-tests: not available on avr32, too old uClibc Thomas Petazzoni
2012-12-09 20:56 ` Peter Korsgaard
2012-12-09 18:14 ` [Buildroot] [PATCH 5/8] bmon: needs MMU for fork() Thomas Petazzoni
2012-12-09 18:20 ` Thomas Petazzoni
2012-12-09 20:56 ` Peter Korsgaard
2012-12-09 18:14 ` [Buildroot] [PATCH 6/8] xapp_xmh: add dependency on xdata_xbitmap Thomas Petazzoni
2012-12-09 20:57 ` Peter Korsgaard
2012-12-09 18:14 ` [Buildroot] [PATCH 7/8] neard: fix build failure caused by missing <linux/nfc.h> Thomas Petazzoni
2012-12-09 20:58 ` Peter Korsgaard
2012-12-09 18:14 ` [Buildroot] [PATCH 8/8] libev: disable on avr32 Thomas Petazzoni
2012-12-09 20:59 ` Peter Korsgaard
-- strict thread matches above, loose matches on Subject: below --
2012-11-17 22:23 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
2012-11-17 22:54 ` Peter Korsgaard
2012-03-20 8:09 Thomas Petazzoni
2012-03-19 15:40 Thomas Petazzoni
2012-03-19 15:44 ` Peter Korsgaard
2010-07-07 6:20 Thomas Petazzoni
2010-07-08 11:57 ` Peter Korsgaard
2010-05-07 19:30 Thomas Petazzoni
2010-05-05 21:55 Thomas Petazzoni
2010-05-07 22:05 ` Peter Korsgaard
2010-04-28 21:40 Thomas Petazzoni
2010-05-02 22:03 ` Peter Korsgaard
2010-02-26 8:14 Thomas Petazzoni
2010-02-26 9:43 ` Peter Korsgaard
2010-02-26 10:02 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox