Fix BT enable problem using BT API 53/43453/1 tizen_3.0.m1_mobile tizen_3.0.m1_tv accepted/tizen/ivi/20160218.022855 accepted/tizen/mobile/20150709.111438 accepted/tizen/tv/20150709.111449 accepted/tizen/wearable/20150709.111500 submit/tizen_common/20151023.083358 submit/tizen_common/20151026.085049 submit/tizen_ivi/20160217.000000 submit/tizen_ivi/20160217.000001 submit/tizen_mobile/20150709.105244 submit/tizen_tv/20150709.105247 submit/tizen_wearable/20150709.105251 tizen_3.0.m1_mobile_release tizen_3.0.m1_tv_release tizen_3.0.m2.a1_mobile_release tizen_3.0.m2.a1_tv_release
authorDoHyun Pyun <dh79.pyun@samsung.com>
Thu, 9 Jul 2015 10:51:00 +0000 (19:51 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Thu, 9 Jul 2015 10:51:00 +0000 (19:51 +0900)
Change-Id: Id80483481da9ea207c57cfef60dcdf579c9c6f17
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
scripts/bt-dev-end.sh
scripts/bt-dev-start.sh

index 5fe10a9..0fbf2f8 100755 (executable)
@@ -20,7 +20,7 @@ fi
 killall hciattach
 
 # Turn off Bluetooth Chip
-rfkill block bluetooth
+/usr/sbin/rfkill block bluetooth
 
 #if [ -e /sys/class/gpio/gpio17/value ]
 #then
index de9e4e4..2519604 100755 (executable)
@@ -31,7 +31,7 @@ then
 fi
 
 # Trun-on Bluetooth Chip
-rfkill unblock bluetooth
+/usr/sbin/rfkill unblock bluetooth
 
 echo "Check for Bluetooth device status"
 if (/usr/bin/hciconfig | grep hci); then
@@ -52,6 +52,6 @@ else
                echo "HCIATTACH success"
        else
                echo "HCIATTACH failed"
-               rfkill block bluetooth
+               /usr/sbin/rfkill block bluetooth
        fi
 fi