Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932226AbaJ2WFo (ORCPT ); Wed, 29 Oct 2014 18:05:44 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:53264 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756101AbaJ2WDj (ORCPT ); Wed, 29 Oct 2014 18:03:39 -0400 From: Greg Kroah-Hartman To: linux-api@vger.kernel.org, linux-kernel@vger.kernel.org Cc: john.stultz@linaro.org, arnd@arndb.de, tj@kernel.org, marcel@holtmann.org, desrt@desrt.ca, hadess@hadess.net, dh.herrmann@gmail.com, tixxdz@opendz.org, gregkh@linuxfoundation.org, simon.mcvittie@collabora.co.uk, daniel@zonque.org, alban.crequy@collabora.co.uk, javier.martinez@collabora.co.uk, teg@jklm.no Subject: kdbus: add Makefile, Kconfig and MAINTAINERS entry Date: Wed, 29 Oct 2014 15:00:55 -0700 Message-Id: <1414620056-6675-12-git-send-email-gregkh@linuxfoundation.org> X-Mailer: git-send-email 2.1.2 In-Reply-To: <1414620056-6675-1-git-send-email-gregkh@linuxfoundation.org> References: <1414620056-6675-1-git-send-email-gregkh@linuxfoundation.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Daniel Mack This patch hooks up the build system to actually compile the files added by previous patches. It also adds an entry to MAINTAINERS to direct people to Greg KH, David Herrmann, Djalal Harouni and me for questions and patches. Signed-off-by: Daniel Mack Signed-off-by: Greg Kroah-Hartman --- MAINTAINERS | 12 ++++++++++++ drivers/misc/Kconfig | 1 + drivers/misc/Makefile | 1 + drivers/misc/kdbus/Kconfig | 11 +++++++++++ drivers/misc/kdbus/Makefile | 19 +++++++++++++++++++ 5 files changed, 44 insertions(+) create mode 100644 drivers/misc/kdbus/Kconfig create mode 100644 drivers/misc/kdbus/Makefile diff --git a/MAINTAINERS b/MAINTAINERS index dab92a78d1d5..15d2677d6d5b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -5255,6 +5255,18 @@ S: Maintained F: Documentation/kbuild/kconfig-language.txt F: scripts/kconfig/ +KDBUS +M: Greg Kroah-Hartman +M: Daniel Mack +M: David Herrmann +M: Djalal Harouni +L: linux-kernel@vger.kernel.org +S: Maintained +F: drivers/misc/kdbus/* +F: Documentation/kdbus.txt +F: include/uapi/linux/kdbus.h +F: tools/testing/selftests/kdbus/ + KDUMP M: Vivek Goyal M: Haren Myneni diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index bbeb4516facf..fa84e5f4b30a 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -528,4 +528,5 @@ source "drivers/misc/mic/Kconfig" source "drivers/misc/genwqe/Kconfig" source "drivers/misc/echo/Kconfig" source "drivers/misc/cxl/Kconfig" +source "drivers/misc/kdbus/Kconfig" endmenu diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index 7d5c4cd118c4..ce6fa2fe7513 100644 --- a/drivers/misc/Makefile +++ b/drivers/misc/Makefile @@ -56,3 +56,4 @@ obj-$(CONFIG_GENWQE) += genwqe/ obj-$(CONFIG_ECHO) += echo/ obj-$(CONFIG_VEXPRESS_SYSCFG) += vexpress-syscfg.o obj-$(CONFIG_CXL_BASE) += cxl/ +obj-$(CONFIG_KDBUS) += kdbus/ diff --git a/drivers/misc/kdbus/Kconfig b/drivers/misc/kdbus/Kconfig new file mode 100644 index 000000000000..204defa7e237 --- /dev/null +++ b/drivers/misc/kdbus/Kconfig @@ -0,0 +1,11 @@ +config KDBUS + tristate "kdbus interprocess communication" + depends on TMPFS + help + D-Bus is a system for low-latency, low-overhead, easy to use + interprocess communication (IPC). + + See Documentation/kdbus.txt + + To compile this driver as a module, choose M here: the + module will be called kdbus. diff --git a/drivers/misc/kdbus/Makefile b/drivers/misc/kdbus/Makefile new file mode 100644 index 000000000000..2867b776b821 --- /dev/null +++ b/drivers/misc/kdbus/Makefile @@ -0,0 +1,19 @@ +kdbus-y := \ + bus.o \ + connection.o \ + endpoint.o \ + handle.o \ + item.o \ + main.o \ + match.o \ + message.o \ + metadata.o \ + names.o \ + notify.o \ + domain.o \ + policy.o \ + pool.o \ + queue.o \ + util.o + +obj-$(CONFIG_KDBUS) += kdbus.o -- 2.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/