Browse Source

bluez: fix blocking on startup

Waldemar Brodkorb 7 years ago
parent
commit
9f0eb82f0d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/bluez/files/bluez.init

+ 1 - 1
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)