Revert "[Warnings] Fix build warnings."
[platform/adaptation/bluetooth-firmware-bcm.git] / scripts / bt-set-addr.sh
1 #!/bin/sh
2
3 #
4 # Script for setting Bluetooth Address
5 #
6
7 if [ -e /opt/etc/.bd_addr ]
8 then
9         echo "Already .bd_addr exists"
10         exit 0
11 fi
12
13 /usr/bin/setbd
14
15 echo "Set BT address successes"
16