wl1251: make local symbols static
[pandora-wifi.git] / scripts / btload.sh
1 #!/bin/bash
2 MODULES="bluetooth btusb l2cap sco hidp rfcomm bnep"
3 for i in $MODULES; do
4         echo Loading $i...
5         modprobe $i
6 done
7 echo Starting bluetooth service..
8 sudo service bluetooth start
9 sudo service bluetooth status
10