summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-22 05:58:27 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-22 06:02:41 +0200
commit9f0eb82f0d103cb6560bf8d0cfeb9bd9f64a4afb (patch)
treeb2418161af6ea7b9d6036a44c3fc1460b0abacae
parent047d8328a9596a3f63c259437c089454c4efa188 (diff)
bluez: fix blocking on startup
-rw-r--r--package/bluez/files/bluez.init2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/bluez/files/bluez.init b/package/bluez/files/bluez.init
index 3d767c7d5..00909fc0e 100644
--- a/package/bluez/files/bluez.init
+++ b/package/bluez/files/bluez.init
@@ -11,7 +11,7 @@ autostart)
exec sh $0 start
;;
start)
- /usr/libexec/bluetooth/bluetoothd &
+ /usr/libexec/bluetooth/bluetoothd >/dev/null 2>&1 &
;;
stop)
kill $(pgrep -f /usr/libexec/bluetooth/bluetoothd)