summaryrefslogtreecommitdiff
path: root/debian/bluez-compat.README.Debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian/bluez-compat.README.Debian')
-rw-r--r--debian/bluez-compat.README.Debian14
1 files changed, 14 insertions, 0 deletions
diff --git a/debian/bluez-compat.README.Debian b/debian/bluez-compat.README.Debian
new file mode 100644
index 0000000..1635daa
--- /dev/null
+++ b/debian/bluez-compat.README.Debian
@@ -0,0 +1,14 @@
+bluez compatibility daemons
+===========================
+This package contains old daemons like dund/pand/hidd which have been obsoleted
+by bluetoothd and the D-Bus API, they are provided for backward compatibility.
+
+It is possibile to start the daemons at boot if needed via /etc/rc.local file.
+
+If options were used via /etc/default/bluetooth this can be accomplished by a
+snippet like:
+
+test -f /etc/default/bluetooth && . /etc/default/bluetooth
+[ "$HIDD_ENABLED" -eq 1 ] && /usr/bin/hidd $HIDD_OPTIONS
+[ "$PAND_ENABLED" -eq 1 ] && /usr/bin/pand $PAND_OPTIONS
+[ "$DUND_ENABLED" -eq 1 ] && /usr/bin/dund $DUND_OPTIONS