Last active
May 25, 2016 19:13
-
-
Save marcosscriven/5ed2f4010743ec4dbddbc20319355344 to your computer and use it in GitHub Desktop.
Build the open source patched driver for Kamikaze
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# It takes an age to unpack the headers on the BBB | |
apt-get update | |
apt-get install dkms linux-headers-4.1.6-bone15 | |
git clone https://github.com/pvaret/rtl8192cu-fixes.git | |
# Install | |
dkms add ./rtl8192cu-fixes | |
dkms install 8192cu/1.10 | |
depmod -a | |
# Ensure native drivers are blacklisted, and disable power management | |
cp ./rtl8192cu-fixes/blacklist-native-rtl8192.conf /etc/modprobe.d/ | |
cp ./rtl8192cu-fixes/8192cu-disable-power-management.conf /etc/modprobe.d/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment