From patchwork Sat Nov 17 22:24:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 199886 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id A0B002C0086 for ; Sun, 18 Nov 2012 09:27:49 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id EC20A8D45D; Sat, 17 Nov 2012 22:27:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sq8uGi3hDdW8; Sat, 17 Nov 2012 22:27:27 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id F2AE48D371; Sat, 17 Nov 2012 22:26:38 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 86C2B8F75B for ; Sat, 17 Nov 2012 22:26:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 906F58D3D4 for ; Sat, 17 Nov 2012 22:25:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YTLu2wNWB6OB for ; Sat, 17 Nov 2012 22:25:40 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [88.190.12.23]) by whitealder.osuosl.org (Postfix) with ESMTP id 6FF278CBE2 for ; Sat, 17 Nov 2012 22:25:28 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id DF042180; Sat, 17 Nov 2012 23:25:21 +0100 (CET) Received: from localhost (46.130.200.77.rev.sfr.net [77.200.130.46]) by mail.free-electrons.com (Postfix) with ESMTPSA id 4FDD413D for ; Sat, 17 Nov 2012 23:25:12 +0100 (CET) From: Thomas Petazzoni To: buildroot@busybox.net Date: Sat, 17 Nov 2012 23:24:08 +0100 Message-Id: X-Mailer: git-send-email 1.7.9.5 In-Reply-To: References: In-Reply-To: References: Subject: [Buildroot] [PATCH 10/10] dbus: uses fork(), requires MMU X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net In order to solve http://autobuild.buildroot.org/results/34f6843137efda20626af72714c110280ec577d7/build-end.log, this patch makes the D-Bus package as well as all the packages that select the D-Bus package 'depends on BR2_USE_MMU'. In addition, for the specific case of gvfs, the missing BR2_TOOLCHAIN_HAS_THREADS dependency is added (threads are required by D-Bus, so they are also required by gvfs which selects D-Bus). Signed-off-by: Thomas Petazzoni --- package/bluez_utils/Config.in | 1 + package/connman/Config.in | 1 + package/dbus/Config.in | 2 ++ package/efl/libedbus/Config.in | 1 + package/gvfs/Config.in | 2 ++ package/network-manager/Config.in | 1 + package/ofono/Config.in | 1 + package/qt/Config.in | 1 + package/samba/Config.in | 1 + package/systemd/Config.in | 1 + system/Config.in | 1 + 11 files changed, 13 insertions(+) diff --git a/package/bluez_utils/Config.in b/package/bluez_utils/Config.in index c06f8cd..7ca23fc 100644 --- a/package/bluez_utils/Config.in +++ b/package/bluez_utils/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_BLUEZ_UTILS depends on !BR2_avr32 depends on BR2_USE_WCHAR # libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, alsa-lib + depends on BR2_USE_MMU # dbus select BR2_PACKAGE_DBUS select BR2_PACKAGE_LIBGLIB2 help diff --git a/package/connman/Config.in b/package/connman/Config.in index b67b540..93f9ab5 100644 --- a/package/connman/Config.in +++ b/package/connman/Config.in @@ -8,6 +8,7 @@ config BR2_PACKAGE_CONNMAN depends on BR2_USE_WCHAR # libglib2 and gnutls depends on BR2_INET_IPV6 depends on BR2_TOOLCHAIN_HAS_THREADS # dbus + depends on BR2_USE_MMU # dbus help The Connection Manager (ConnMan) project provides a daemon for managing internet connections within embedded devices running diff --git a/package/dbus/Config.in b/package/dbus/Config.in index 2b04e94..62f3eee 100644 --- a/package/dbus/Config.in +++ b/package/dbus/Config.in @@ -1,6 +1,8 @@ config BR2_PACKAGE_DBUS bool "dbus" depends on BR2_TOOLCHAIN_HAS_THREADS + # uses fork() + depends on BR2_USE_MMU help The D-Bus message bus system. diff --git a/package/efl/libedbus/Config.in b/package/efl/libedbus/Config.in index 985939e..9b57592 100644 --- a/package/efl/libedbus/Config.in +++ b/package/efl/libedbus/Config.in @@ -4,6 +4,7 @@ config BR2_PACKAGE_LIBEDBUS select BR2_PACKAGE_LIBECORE select BR2_PACKAGE_DBUS depends on BR2_TOOLCHAIN_HAS_THREADS # dbus + depends on BR2_USE_MMU # dbus help E_Dbus is a set of wrappers around D-Bus APIs so they can be easily used by EFL applications, automatically providing diff --git a/package/gvfs/Config.in b/package/gvfs/Config.in index 87f9a03..e0a945e 100644 --- a/package/gvfs/Config.in +++ b/package/gvfs/Config.in @@ -2,6 +2,8 @@ config BR2_PACKAGE_GVFS bool "gvfs" depends on BR2_LARGEFILE depends on BR2_USE_WCHAR # glib2 + depends on BR2_USE_MMU # dbus + depends on BR2_TOOLCHAIN_HAS_THREADS # dbus select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_DBUS select BR2_PACKAGE_SHARED_MIME_INFO diff --git a/package/network-manager/Config.in b/package/network-manager/Config.in index 3f01fef..e2324d6 100644 --- a/package/network-manager/Config.in +++ b/package/network-manager/Config.in @@ -6,6 +6,7 @@ config BR2_PACKAGE_NETWORK_MANAGER depends on BR2_LARGEFILE # acl depends on BR2_USE_WCHAR # libglib2 and gnutls depends on BR2_TOOLCHAIN_HAS_THREADS # dbus + depends on BR2_USE_MMU # dbus select BR2_PACKAGE_DBUS_GLIB select BR2_PACKAGE_UDEV select BR2_PACKAGE_UDEV_ALL_EXTRAS diff --git a/package/ofono/Config.in b/package/ofono/Config.in index 74c8b53..6248544 100644 --- a/package/ofono/Config.in +++ b/package/ofono/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_OFONO bool "ofono" depends on BR2_USE_WCHAR # gettext/libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # dbus + depends on BR2_USE_MMU # dbus select BR2_PACKAGE_LIBCAP_NG select BR2_PACKAGE_DBUS select BR2_PACKAGE_LIBGLIB2 diff --git a/package/qt/Config.in b/package/qt/Config.in index b99bf4c..fdbb598 100644 --- a/package/qt/Config.in +++ b/package/qt/Config.in @@ -286,6 +286,7 @@ config BR2_PACKAGE_QT_DBUS bool "DBus Module" select BR2_PACKAGE_DBUS depends on BR2_TOOLCHAIN_HAS_THREADS # dbus + depends on BR2_USE_MMU # dbus help Build the Qt DBus module. diff --git a/package/samba/Config.in b/package/samba/Config.in index b4028b1..fedbccd 100644 --- a/package/samba/Config.in +++ b/package/samba/Config.in @@ -233,6 +233,7 @@ config BR2_PACKAGE_SAMBA_AVAHI default y depends on BR2_PACKAGE_AVAHI_DAEMON depends on BR2_TOOLCHAIN_HAS_THREADS # dbus + depends on BR2_USE_MMU # dbus select BR2_PACKAGE_DBUS help Include support for avahi diff --git a/package/systemd/Config.in b/package/systemd/Config.in index 0e7fc39..86ab2cf 100644 --- a/package/systemd/Config.in +++ b/package/systemd/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_SYSTEMD depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV depends on BR2_INET_IPV6 depends on BR2_TOOLCHAIN_HAS_THREADS # dbus + depends on BR2_USE_MMU # dbus select BR2_PACKAGE_DBUS select BR2_PACKAGE_LIBCAP help diff --git a/system/Config.in b/system/Config.in index 10c9d9d..4d5ab00 100644 --- a/system/Config.in +++ b/system/Config.in @@ -56,6 +56,7 @@ config BR2_INIT_SYSTEMD depends on BR2_INET_IPV6 depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV depends on BR2_TOOLCHAIN_HAS_THREADS + depends on BR2_USE_MMU select BR2_PACKAGE_DBUS select BR2_PACKAGE_SYSTEMD