summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmultitech/recipes/bluez/files/bluetooth.init14
1 files changed, 9 insertions, 5 deletions
diff --git a/multitech/recipes/bluez/files/bluetooth.init b/multitech/recipes/bluez/files/bluetooth.init
index 411fd6d..41312e2 100755
--- a/multitech/recipes/bluez/files/bluetooth.init
+++ b/multitech/recipes/bluez/files/bluetooth.init
@@ -1,7 +1,11 @@
#!/bin/sh
-echo "Enabling bluetooth..."
-mts-io-sysfs store bt-enabled 1
-sleep 1
-echo "Setting up bluetooth device..."
-hciattach /dev/bt texas
+case "$1" in
+ start)
+ echo "Enabling bluetooth..."
+ mts-io-sysfs store bt-enabled 1
+ sleep 1
+ echo "Setting up bluetooth device..."
+ hciattach /dev/bt texas
+ ;;
+esac