blob: 8fcb3f2c58e6576dee142b2e4c44d8ca728d7d2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
#
# Script for setting Bluetooth Address
#
if [ -e /csa/bluetooth/.bd_addr ]
then
echo "Already .bd_addr exists"
exit 0
fi
/usr/bin/setbd
echo "Set BT address successes"
|