docs: add bananapi links and BBB reference
[contrib/mraa.git] / README.md
index 2f30d69..cec2769 100644 (file)
--- a/README.md
+++ b/README.md
@@ -25,14 +25,16 @@ X86
 
 ARM
 ---
-* [Raspberry Pi - Model B](../master/docs/raspberry_pi_b.md)
+* [Raspberry Pi](../master/docs/raspberry_pi.md)
+* [Bannana Pi](../master/docs/banana_pi.md)
+* Beaglebone Black
 
 Installing on your board
 ========
 
 See the section below on compiling or use our repository to install on an
 eglibc based yocto poky image that supports opkg. Adding this repository is as
-simple as:
+simple as and you'll have the latest stable tagged build of mraa installed!
 
 ``` bash
 echo "src mraa-upm http://iotdk.intel.com/repos/1.1/intelgalactic" > /etc/opkg/mraa-upm.conf
@@ -40,6 +42,23 @@ opkg update
 opkg install libmraa0
 ```
 
+If you would like to get the latest & greatest builds from master HEAD you can
+use our -dev repository
+
+```bash
+echo "src mraa-upm http://iotdk.intel.com/repos/1.1/intelgalactic-dev" > /etc/opkg/mraa-upm.conf
+opkg update
+opkg install libmraa0
+```
+
+You can also install just the node.js mraa module by using npm. You will need a
+C++ compiler and the node development headers, however it's not required to
+have SWIG installed.
+
+```bash
+npm install mraa
+```
+
 Compiling
 =========