Created
April 7, 2018 18:31
-
-
Save Lauszus/f9287053df7ac1f5aa29b021397944a5 to your computer and use it in GitHub Desktop.
Script for installing 8192eu kernel module on a Raspberry Pi
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 -e | |
kernel=$(uname -r | tr -d '+') | |
build=${build:-$(uname -v | awk '{print $1}' | tr -d '#')} | |
tarfile=8192eu-$kernel-$build.tar.gz | |
wget http://downloads.fars-robotics.net/wifi-drivers/8192eu-drivers/$tarfile | |
tar xzf $tarfile | |
./install.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment