All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking][PATCH 0/2] networkmanager/polkit: add consolekit only when x11 is enabled
@ 2017-11-13  8:04 jackie.huang
  2017-11-13  8:04 ` [meta-networking][PATCH 1/2] networkmanager: " jackie.huang
  2017-11-13  8:04 ` [meta-networking][PATCH 2/2] polkit: " jackie.huang
  0 siblings, 2 replies; 3+ messages in thread
From: jackie.huang @ 2017-11-13  8:04 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

--
The following changes since commit 5d6d21e98ed594809169d2b2f6964e90a3369a96:

  libreport: fix Nothing RPROVIDES 'lib32-python3-libreport' (2017-10-27 16:39:34 +0000)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib.git jhuang0/d_consolekit_171113_1
  http://git.pokylinux.org/cgit.cgi//log/?h=jhuang0/d_consolekit_171113_1

Jackie Huang (2):
  networkmanager: add consolekit only when x11 is enabled
  polkit: add consolekit only when x11 is enabled

 .../recipes-connectivity/networkmanager/networkmanager_1.4.4.bb       | 3 ++-
 meta-oe/recipes-extended/polkit/polkit_0.113.bb                       | 4 +++-
 2 files changed, 5 insertions(+), 2 deletions(-)

-- 
2.11.0



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

* [meta-networking][PATCH 1/2] networkmanager: add consolekit only when x11 is enabled
  2017-11-13  8:04 [meta-networking][PATCH 0/2] networkmanager/polkit: add consolekit only when x11 is enabled jackie.huang
@ 2017-11-13  8:04 ` jackie.huang
  2017-11-13  8:04 ` [meta-networking][PATCH 2/2] polkit: " jackie.huang
  1 sibling, 0 replies; 3+ messages in thread
From: jackie.huang @ 2017-11-13  8:04 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

consolekit depends on virtual/libx11 then it requires x11
distro feature, so add consolekit option only when x11
is in DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 .../recipes-connectivity/networkmanager/networkmanager_1.4.4.bb        | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.4.4.bb b/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.4.4.bb
index bfd2aada7..d5f456f37 100644
--- a/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.4.4.bb
+++ b/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.4.4.bb
@@ -60,7 +60,8 @@ do_compile_prepend() {
 }
 
 PACKAGECONFIG ??= "nss ifupdown netconfig dhclient dnsmasq \
-    ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', 'consolekit', d)} \
+    ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', \
+       bb.utils.contains('DISTRO_FEATURES', 'x11', 'consolekit', '', d), d)} \
     ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', '${BLUEZ}', '', d)} \
     ${@bb.utils.filter('DISTRO_FEATURES', 'wifi', d)} \
 "
-- 
2.11.0



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

* [meta-networking][PATCH 2/2] polkit: add consolekit only when x11 is enabled
  2017-11-13  8:04 [meta-networking][PATCH 0/2] networkmanager/polkit: add consolekit only when x11 is enabled jackie.huang
  2017-11-13  8:04 ` [meta-networking][PATCH 1/2] networkmanager: " jackie.huang
@ 2017-11-13  8:04 ` jackie.huang
  1 sibling, 0 replies; 3+ messages in thread
From: jackie.huang @ 2017-11-13  8:04 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

consolekit depends on virtual/libx11 then it requires x11
distro feature, so add consolekit option only when x11
is in DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-oe/recipes-extended/polkit/polkit_0.113.bb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-extended/polkit/polkit_0.113.bb b/meta-oe/recipes-extended/polkit/polkit_0.113.bb
index 326c9340e..f34928fe3 100644
--- a/meta-oe/recipes-extended/polkit/polkit_0.113.bb
+++ b/meta-oe/recipes-extended/polkit/polkit_0.113.bb
@@ -10,7 +10,9 @@ DEPENDS = "expat glib-2.0 intltool-native mozjs"
 inherit autotools gtk-doc pkgconfig useradd systemd gobject-introspection
 
 PACKAGECONFIG = "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)} \
-                 ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', 'consolekit', d)}"
+                 ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', \
+                    bb.utils.contains('DISTRO_FEATURES', 'x11', 'consolekit', '', d), d)} \
+                "
 
 PACKAGECONFIG[pam] = "--with-authfw=pam,--with-authfw=shadow,libpam,libpam"
 PACKAGECONFIG[systemd] = "--enable-libsystemd-login=yes --with-systemdsystemunitdir=${systemd_unitdir}/system/,--enable-libsystemd-login=no --with-systemdsystemunitdir=,systemd"
-- 
2.11.0



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

end of thread, other threads:[~2017-11-13  8:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-13  8:04 [meta-networking][PATCH 0/2] networkmanager/polkit: add consolekit only when x11 is enabled jackie.huang
2017-11-13  8:04 ` [meta-networking][PATCH 1/2] networkmanager: " jackie.huang
2017-11-13  8:04 ` [meta-networking][PATCH 2/2] polkit: " jackie.huang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.