Skip to content

Instantly share code, notes, and snippets.

@joscha
Forked from annem/gist:3183536
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joscha/571022098df143e37be2 to your computer and use it in GitHub Desktop.
Save joscha/571022098df143e37be2 to your computer and use it in GitHub Desktop.
Install BCM2385 library
#!/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