diff options
-rwxr-xr-x | multitech/recipes/bluez/files/bluetooth.init | 14 |
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 |