Modify the wearable's stack up script 73/173773/1 submit/tizen/20180328.081930
authorHyuk Lee <hyuk0512.lee@samsung.com>
Mon, 26 Mar 2018 01:41:49 +0000 (10:41 +0900)
committerHyuk Lee <hyuk0512.lee@samsung.com>
Mon, 26 Mar 2018 01:41:49 +0000 (10:41 +0900)
Change-Id: Ic843de91c8559fa7c28fbd7f6f1ce16cee2a1fb9
Signed-off-by: Hyuk Lee <hyuk0512.lee@samsung.com>
scripts/wearable/bt-stack-down.sh
scripts/wearable/bt-stack-up.sh

index 7bbcd1e..ae3e496 100755 (executable)
@@ -9,7 +9,7 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
 /usr/etc/bluetooth/bt-dev-end.sh
 
 # Stop HCI logging
-systemctl stop bluetooth-hci-logger.service
+/usr/bin/touch /run/.hci_logger_stop
 
 # Kill BlueZ bluetooth stack
 killall obexd obex-client
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