blob: 58318c3791317ef1b68c15c41b7192fe1fe9f9e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/bash
bt_start()
{
echo "Enabling bluetooth..."
mts-io-sysfs store bt-enabled 0
usleep 200000
mts-io-sysfs store bt-enabled 1
sleep 1
echo "Setting up bluetooth device..."
hciattach /dev/bt texas
}
bt_stop() {
echo "Disabling bluetooth..."
killall hciattach
mts-io-sysfs store bt-enabled 0
}
case "$1" in
start)
bt_start
;;
stop)
bt_stop
;;
restart)
bt_stop
bt_start
;;
*)
echo "Usage $0: start|stop|restart"
exit 1
;;
esac
|