summaryrefslogtreecommitdiff
path: root/BUILD.md
diff options
context:
space:
mode:
authorTatiana Jamison <tjamison@jaguarlandrover.com>2016-02-23 16:46:58 -0800
committerTatiana Jamison <tjamison@jaguarlandrover.com>2016-02-23 16:46:58 -0800
commit1529f48c8c2e4d98a99b2f3a28cbe01f8be9cc43 (patch)
tree730190b24e033e13fccddf4f7247da2e69c87c0c /BUILD.md
parentceef6f073b224caddc5e5492d71f85b7ef0a448a (diff)
downloadrvi_core-1529f48c8c2e4d98a99b2f3a28cbe01f8be9cc43.tar.gz
[53177] Update installation docs
Add install instructions for Ubuntu 14.04 Add install instructions for Raspbian Add install instructions for Debian Update build, readme files to point to install instructions
Diffstat (limited to 'BUILD.md')
-rw-r--r--BUILD.md24
1 files changed, 15 insertions, 9 deletions
diff --git a/BUILD.md b/BUILD.md
index d7367e6..567b32d 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -13,8 +13,10 @@ Attribution-ShareAlike 4.0 International.
# BUILD INSTRUCTIONS FOR RVI #
-This document describes the build process for the RVI project on an
-Ubuntu 14.04 Linux machine.
+This document describes the build process from source for the RVI
+project on an Ubuntu 14.04 Linux machine. Packages are also available
+for [Ubuntu](INSTALL_ubuntu.md), [Debian](INSTALL_debian.md),
+and [Raspbian](INSTALL_raspbian.md).
Please see ```README.md``` for a general description of the project
and its structure.
@@ -54,7 +56,8 @@ Grade Linux repositories where the code resides:
sudo apt-get install git
-Also ensure that you have the latest BlueZ Linux Bluetooth headers and that g++ is installed on your system:
+Also ensure that you have the latest BlueZ Linux Bluetooth headers
+and that g++ is installed on your system:
sudo apt-get install libbluetooth-dev g++
@@ -62,22 +65,25 @@ Also ensure that you have the latest BlueZ Linux Bluetooth headers and that g++
Install Erlang 18.2, or a later version 18 release:
-Tested packages of the latest versions of Erlang can be downloaded from [packages.erlang-solutions.com](https://www.erlang-solutions.com/resources/download.html)
+Tested packages of the latest versions of Erlang can be downloaded from
+[packages.erlang-solutions.com](https://www.erlang-solutions.com/resources/download.html)
Add the following line to your /etc/apt/sources.list
deb http://packages.erlang-solutions.com/ubuntu trusty contrib
-Update and install erlang
+Update and install esl-erlang
sudo apt-get update
- sudo apt-get install erlang
+ sudo apt-get install esl-erlang
-**If you receive an authentication error** (such as NO_PUBKEY): note the hexadecimal value (e.g., 6D975C4791E7EE5E) and request the key:
+**If you receive an authentication error** (such as NO_PUBKEY):
+note the hexadecimal value (e.g., 6D975C4791E7EE5E) and request the key:
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys HEXVALUE
+ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys HEX
-where HEXVALUE is the hexadecimal value specified in the error. Then rerun the ```update``` and ```install``` commands.
+where HEX is the hexadecimal value specified in the error.
+Then rerun the ```update``` and ```install``` commands.
## CLONE THE RVI REPOSITORY ##