Disable the SSP mode in headless device 62/120362/1
authorLee Hyuk <hyuk0512.lee@samsung.com>
Wed, 22 Mar 2017 11:47:19 +0000 (20:47 +0900)
committerLee Hyuk <hyuk0512.lee@samsung.com>
Wed, 22 Mar 2017 11:47:19 +0000 (20:47 +0900)
Change-Id: I1463e130da878ac99376b661014809fd59bd27b9
Signed-off-by: Lee Hyuk <hyuk0512.lee@samsung.com>
scripts/bt-dev-start.sh

index ff5e6d5..7dcf4ee 100755 (executable)
@@ -17,5 +17,11 @@ else
        echo "Registering Bluetooth device"
        /usr/bin/hciconfig hci0 up
        /usr/bin/hciconfig hci0 name $BT_PLATFORM_DEFAULT_HCI_NAME
-       /usr/bin/hciconfig hci0 sspmode 1
+       if [ -e "/usr/lib/bt-plugin-headed.so" ]; then
+               echo "Bluetooth headed device"
+               /usr/bin/hciconfig hci0 sspmode 1
+       else
+               echo "Bluetooth headless device"
+               /usr/bin/hciconfig hci0 sspmode 0
+       fi
 fi