11 lines
314 B
Plaintext
11 lines
314 B
Plaintext
|
#! /bin/bash
|
||
|
# interactive version of run
|
||
|
|
||
|
trap "exit;" SIGINT SIGTERM
|
||
|
|
||
|
while true
|
||
|
do
|
||
|
${ANDROID_BUILD_TOP}/packages/modules/Bluetooth/system/gd/cert/run "$@"
|
||
|
python3 ${ANDROID_BUILD_TOP}/packages/modules/Bluetooth/system/gd/cert/change_waiter.py ${ANDROID_BUILD_TOP}/packages/modules/Bluetooth/system
|
||
|
done
|