-
-
Save joscha/571022098df143e37be2 to your computer and use it in GitHub Desktop.
Install BCM2385 library
This file contains hidden or 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/sh | |
set -o errexit | |
bcm2385_version=1.38 | |
rm bcm2835-$bcm2385_version.tar.gz | |
wget http://www.airspayce.com/mikem/bcm2835/bcm2835-$bcm2385_version.tar.gz | |
tar zxvf bcm2835-$bcm2385_version.tar.gz | |
cd bcm2835-$bcm2385_version | |
./configure | |
make | |
sudo make check | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment