DART-SD410 Ubuntu Host Install: Difference between revisions
From Variscite Wiki
Line 12: | Line 12: | ||
</pre> | </pre> | ||
= Installing the | = Installing the Device Tree Compiler = | ||
Install Device tree compiler using: | |||
<pre> | |||
$ sudo apt-get update | |||
$ sudo apt-get install device-tree-compiler | |||
</pre> | |||
= Install fastboot and ADB = | = Install fastboot and ADB = | ||
<pre> | <pre> |
Revision as of 15:01, 15 February 2016
Host requirements installation.
The host development environment for Linux is based on Ubuntu, please install Ubuntu version 14.04 64bit LTS http://www.ubuntu.com/download/desktop
Installing Repo
The following command installs repo:
$ sudo apt-get update $ mkdir ~/bin $ PATH=~/bin:$PATH $ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo $ chmod a+x ~/bin/repo
Installing the Device Tree Compiler
Install Device tree compiler using:
$ sudo apt-get update $ sudo apt-get install device-tree-compiler
Install fastboot and ADB
$ sudo add-apt-repository ppa:nilarimogard/webupd8 $ sudo apt-get update $ sudo apt-get install android-tools-adb android-tools-fastboot
Install GIT
Please provide correct credentials during git initialization.
$ sudo apt-get install git $ git config --global user.email "you@example.com" $ git config --global user.name "Your Name"