aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@free-electrons.com>2014-01-16 14:34:39 +0100
committerRobert Yang <liezhi.yang@windriver.com>2014-01-26 14:08:27 +0800
commit7d7481667fcf4550513aec1eca20d87b4ddfd40e (patch)
tree5c3c7a3ec3232a4018cb5dd918baeee3477eee6a
parentb7016947b29e24a627f441920d3fab8bfd1c6621 (diff)
downloadopenembedded-core-contrib-7d7481667fcf4550513aec1eca20d87b4ddfd40e.tar.gz
wpa-supplicant-2.0: don't exit in pkg_postinst
Exiting explicitly in pkg_postinst makes it impossible to use the update-rc.d class in a .bbappend because the link creation is appended to the pkg_postinst script. (From OE-Core master rev: 758d53d3044f29f3c33ffee3ada88c9edc9f864f) Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
-rw-r--r--meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-2.0.inc5
1 files changed, 2 insertions, 3 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 ce669a1ffa..ba28c6bd45 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-2.0.inc
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-2.0.inc
@@ -82,9 +82,8 @@ do_install () {
pkg_postinst_wpa-supplicant () {
# If we're offline, we don't need to do this.
- if [ "x$D" != "x" ]; then
- exit 0
+ if [ "x$D" = "x" ]; then
+ killall -q -HUP dbus-daemon || true
fi
- killall -q -HUP dbus-daemon || true
}