[oe-commits] Ross Burton : wpa-supplicant: don't call DBus init script directly

git at git.openembedded.org git at git.openembedded.org
Wed Apr 17 14:45:14 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: d6fb028de172bb649b905b605f6ddc8402af859a
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=d6fb028de172bb649b905b605f6ddc8402af859a

Author: Ross Burton <ross.burton at intel.com>
Date:   Tue Apr 16 15:25:04 2013 +0100

wpa-supplicant: don't call DBus init script directly

After installing Avahi we need DBus to reload it's configuration.  In a
pure-systemd image there isn't a DBus init script to reload, so cut out the
middleman and just sent SIGHUP to all running dbus-daemon processes instead.

Signed-off-by: Ross Burton <ross.burton at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 .../wpa-supplicant/wpa-supplicant-2.0.inc          |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-2.0.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-2.0.inc
index dd85057..e5f7881 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-2.0.inc
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-2.0.inc
@@ -84,9 +84,5 @@ pkg_postinst_wpa-supplicant () {
 		exit 0
 	fi
 
-	DBUSPID=`pidof dbus-daemon`
-
-	if [ "x$DBUSPID" != "x" ]; then
-		/etc/init.d/dbus-1 reload || true
-	fi
+	killall -q -HUP dbus-daemon || true
 }





More information about the Openembedded-commits mailing list