0b703b5cfa23d4aca9bb4e039182517a506981c1
[platform/core/connectivity/bluetooth-tools.git] / scripts / bt-hci-logdump.sh
1 #!/bin/sh
2
3 #--------------------------------------
4 #    bluetooth hci
5 #--------------------------------------
6
7 BLUETOOTH_DEBUG=${1}/bluetooth
8 PREV_PWD=${PWD}
9 BT_DUMP_DIR=/opt/usr/media/Others/.bt_dump
10
11 if [ ! -e ${BT_DUMP_DIR} ]
12 then
13         exit 0
14 fi
15
16 /bin/mkdir -p ${BLUETOOTH_DEBUG}
17
18 cd ${BT_DUMP_DIR}
19 /bin/tar -cvzf ${BLUETOOTH_DEBUG}/bt_dump.tar.gz *
20
21 cd ${PREV_PWD}