Modify the wearable's stack up script
[platform/core/connectivity/bluetooth-tools.git] / scripts / wearable / bt-stack-up.sh
index 1116e6b..c3f213d 100755 (executable)
@@ -25,20 +25,12 @@ fi
 # Script for executing Bluetooth stack
 #
 
-# Start HCI logging
-systemctl start bluetooth-hci-logger.service
-
 # Register BT Device
 /usr/etc/bluetooth/bt-dev-start.sh
 
 if !(/usr/bin/hciconfig | grep hci); then
        echo "Registering BT device is failed."
-       systemctl stop bluetooth-hci-logger.service
        exit 1
 fi
 
-# Execute BlueZ BT stack
-echo "Run bluetoothd"
-/usr/libexec/bluetooth/bluetoothd -d -C &
-
 exit 0