Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 1/2] systemd: add option to enable kdbus support
@ 2015-04-05 22:10 Ryan Barnett
  2015-04-05 22:10 ` [Buildroot] [PATCH v2 2/2] miraclecast: new package Ryan Barnett
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Ryan Barnett @ 2015-04-05 22:10 UTC (permalink / raw)
  To: buildroot

In the future when the kernel offically supports kdbus, this option
should automatically enable the kernel kdbus config option(s).

Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com>
---
 package/systemd/Config.in  | 5 +++++
 package/systemd/systemd.mk | 6 ++++++
 2 files changed, 11 insertions(+)

diff --git a/package/systemd/Config.in b/package/systemd/Config.in
index d00ac9d..0543b76 100644
--- a/package/systemd/Config.in
+++ b/package/systemd/Config.in
@@ -71,6 +71,11 @@ config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
 	  Enable extra features for Systemd: journal compression and
 	  signing.
 
+config BR2_PACKAGE_SYSTEMD_KDBUS
+	bool "enable kdbus support"
+	help
+	  Enable kdbus support for Systemd.
+
 config BR2_PACKAGE_SYSTEMD_JOURNAL_GATEWAY
 	bool "HTTP server for journal events"
 	select BR2_PACKAGE_LIBMICROHTTPD
diff --git a/package/systemd/systemd.mk b/package/systemd/systemd.mk
index 98bda02..81fe434 100644
--- a/package/systemd/systemd.mk
+++ b/package/systemd/systemd.mk
@@ -77,6 +77,12 @@ else
 SYSTEMD_CONF_OPTS += --disable-seccomp
 endif
 
+ifeq ($(BR2_PACKAGE_SYSTEMD_KDBUS),y)
+SYSTEMD_CONF_OPTS += --enable-kdbus
+else
+SYSTEMD_CONF_OPTS += --disable-kdbus
+endif
+
 ifeq ($(BR2_PACKAGE_SYSTEMD_ALL_EXTRAS),y)
 SYSTEMD_DEPENDENCIES += \
 	xz 		\
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-11-30 22:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-05 22:10 [Buildroot] [PATCH v2 1/2] systemd: add option to enable kdbus support Ryan Barnett
2015-04-05 22:10 ` [Buildroot] [PATCH v2 2/2] miraclecast: new package Ryan Barnett
2015-11-30 22:26   ` Thomas Petazzoni
2015-04-06  5:04 ` [Buildroot] [PATCH v2 1/2] systemd: add option to enable kdbus support Baruch Siach
2015-04-08  3:15   ` Ryan Barnett
2015-04-21 13:52     ` Mike Williams
2015-07-13 15:36 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox