]> git.plutz.net Git - rpi_small/blob - files/etc/rc.local
5e8e42cd43f2b6b465adab081c75be299dc79c3b
[rpi_small] / files / etc / rc.local
1 #!/bin/sh
2
3 bt-network -s nap br0 &
4 hciconfig hci0 up
5 hciconfig hci0 sspmode 1
6 hciconfig hci0 piscan
7
8 while sleep 5; do
9   bt-device -l \
10   | grep -oE '[0-9A-F:]{17}' \
11   | while read mac; do
12     bt-device --set "$mac" Trusted 1
13   done
14 done &