mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 21:54:20 +01:00
11 lines
140 B
Bash
11 lines
140 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
hciattach /dev/ttyAMA0 bcm43xx 115200 noflow -
|
|
hciconfig hci0 up
|
|
|
|
while pgrep hciattach > /dev/null
|
|
do
|
|
sleep 600
|
|
done
|