From patchwork Thu Oct 15 14:35:06 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Williams X-Patchwork-Id: 530739 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 468401401E7 for ; Fri, 16 Oct 2015 01:35:26 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 7634A3317C; Thu, 15 Oct 2015 14:35:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WKr9-ZTDgIZ5; Thu, 15 Oct 2015 14:35:22 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4FD6E2F5E5; Thu, 15 Oct 2015 14:35:22 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 56D3D1CE58D for ; Thu, 15 Oct 2015 14:35:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 51E218C458 for ; Thu, 15 Oct 2015 14:35:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rizh7AfIvcZw for ; Thu, 15 Oct 2015 14:35:20 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail-oi0-f53.google.com (mail-oi0-f53.google.com [209.85.218.53]) by whitealder.osuosl.org (Postfix) with ESMTPS id 7DE958DD30 for ; Thu, 15 Oct 2015 14:35:20 +0000 (UTC) Received: by oiar126 with SMTP id r126so46990453oia.0 for ; Thu, 15 Oct 2015 07:35:19 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=f9V4uvIF9EZ348dHqsuvkayYh5mkhOa2XMs3OgRyQek=; b=IFnH0m2ERDW8z69bCpXE8/95ApkZrEiNhQ0UqN9xb6BRr7EekWS7iqmDnmCqUAuVEj 1cOTFIbB/6AtvB7NpuUUkAcSVuU3jXk9KwU6XB891TFLPTwjNIJE3K42xvfgufWi/nuo uQ2ZGn+pEwg132FfiRQLdWPGE2I+jOJpuEHPNFdKyPoD1/FnJv1mKz58hTN2gQ4kBmYU xlmQ2X6VoFBimYjZJ9fY1RA4xsHKjA98KWCQrDL3Za0p5re/s+kqLkbh5XDqexx4H5as Zetq/kAeo1YVvZwpCaOM7FXiAnusyfSSs0r8lWbPQ8k5SAE8kQ2kF96PHHoyF3F0Xhv3 8oFg== X-Gm-Message-State: ALoCoQmjCoL15bDnFJfcMkQHvARbyWDTtxUAIxbvBB5aIc5KT3u4M4MLqLP9nAG+xE8g/eQ+vimE X-Received: by 10.202.195.208 with SMTP id t199mr5430108oif.117.1444919719593; Thu, 15 Oct 2015 07:35:19 -0700 (PDT) Received: from mikework.lifesafer.com (FUSE-DEDICATED-66-42-228-99.fuse.net. [66.42.228.99]) by smtp.gmail.com with ESMTPSA id e3sm6452960obv.12.2015.10.15.07.35.18 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 15 Oct 2015 07:35:19 -0700 (PDT) From: Mike Williams To: buildroot@busybox.net Date: Thu, 15 Oct 2015 10:35:06 -0400 Message-Id: <1444919707-29869-1-git-send-email-mike@mikebwilliams.com> X-Mailer: git-send-email 2.1.4 Subject: [Buildroot] [PATCH 1/2] connman: fix missing dbus configuration files X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Without connman.conf in /etc/dbus-1/system.d/, connmand cannot take its name on the dbus system bus and will fail to start with a permission denied error. Signed-off-by: Mike Williams --- package/connman/connman.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/connman/connman.mk b/package/connman/connman.mk index 87d81ce..3b14a80 100644 --- a/package/connman/connman.mk +++ b/package/connman/connman.mk @@ -12,6 +12,7 @@ CONNMAN_INSTALL_STAGING = YES CONNMAN_LICENSE = GPLv2 CONNMAN_LICENSE_FILES = COPYING CONNMAN_CONF_OPTS += \ + --with-dbusconfdir=/etc \ $(if $(BR2_PACKAGE_CONNMAN_DEBUG),--enable-debug,--disable-debug) \ $(if $(BR2_PACKAGE_CONNMAN_ETHERNET),--enable-ethernet,--disable-ethernet) \ $(if $(BR2_PACKAGE_CONNMAN_WIFI),--enable-wifi,--disable-wifi) \