Advertisement
rfkrocktk

Update Broadcom 4331 Driver

Dec 25th, 2011
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.33 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. if [ $EUID -ne 0 ]; then
  4.     echo "You're not root."
  5.     exit 1
  6. fi
  7.  
  8. cd /opt/broadcom43/compat-wireless-*
  9.  
  10. echo "Compiling Broadcom 4331 Wireless Driver."
  11.  
  12. make clean
  13. make
  14. make install
  15.  
  16. echo "Done Compiling Broadcom 4331 Wireless Driver, enabling it."
  17.  
  18. rmmod b43
  19.  
  20. modprobe b43
  21.  
  22. echo "Done." && exit 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement