summaryrefslogtreecommitdiffstats
path: root/getting-started/source-code.md
diff options
context:
space:
mode:
authorStephane Desneux <stephane.desneux@iot.bzh>2016-11-07 18:23:01 +0100
committerStephane Desneux <stephane.desneux@iot.bzh>2016-11-07 18:23:01 +0100
commit93367bbf66fb0e3c443cf79807f84573505abbba (patch)
tree8db6d09aa9b9cd4c493725fd6888ab9b7108b99b /getting-started/source-code.md
docs subfolder created; moved all MD files in docs
Change-Id: I89e02117c9569354567816ec5ba2a5565b79849b Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'getting-started/source-code.md')
-rw-r--r--getting-started/source-code.md62
1 files changed, 62 insertions, 0 deletions
diff --git a/getting-started/source-code.md b/getting-started/source-code.md
new file mode 100644
index 0000000..a33065f
--- /dev/null
+++ b/getting-started/source-code.md
@@ -0,0 +1,62 @@
+# Download AGL Source Code
+
+The AGL source code and Yocto layers are maintained on the AGL Gerrit server. For information on how to create accounts for gerrit see Getting Started with AGL.
+
+## Prepare Repo Tool
+
+AGL Uses the Repo tool for managing repositories. First you need to setup layers of AGL. You can use the commands below to prepare Repo:
+```
+mkdir ~/bin
+export PATH=~/bin:$PATH
+curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
+chmod a+x ~/bin/repo
+```
+## Download Latest Stable Release
+
+To download all layers for the for the latest stable release, Blowfish 2.0.2:
+
+```
+repo init -b blowfish -m default_blowfish_2.0.2.xml -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo
+repo sync
+```
+
+## Download Latest on Blowfish Branch
+
+To download all layers on the current release branch which may be in the midst of testing or changes prior to the next stable release:
+```
+repo init -b blowfish -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo
+repo sync
+```
+## Download Master Branch
+
+To download all code from master:
+
+```
+repo init -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo
+repo sync
+```
+
+## Set up Build Environment
+
+Set up the development environment for the desired target hardware. AGL has created a set up script for defining the target build and desired optional features. To get a complete list of the options available run.
+
+```
+ $ source meta-agl/scripts/aglsetup.sh -h
+```
+
+Once you run aglsetup.sh with your desired paramaters, you can build any target desired.
+
+## Features supported by aglsetup
+
+Here is the list of features for AGL 2.0 that can be specified in the aglsetup.sh command line:
+
+- in **meta-agl**
+ * **agl-devel**: activate development options (empty root password, debugger, strace, valgrind …)
+ * **agl-netboot**: enable network boot support through TFTP and NBD (see meta-netboot layer)
+- in **meta-agl-extra**
+ * **agl-appfw-smack**: enables IoT.bzh Application Framework + SMACK + Cynara
+ * **agl-demo**: enable layer meta-agl-demo and meta-qt5 - required to build * agl-demo-platform
+ * **agl-localdev**: add a local layer named “meta-localdev” in meta directory and a local.dev.inc conf file if present
+ * **agl-sota**: enable SOTA components and dependencies (meta-sota, meta-filesystems, meta-ruby, meta-rust are added)
+
+For newer features or to get more details on a given feature, take a look at the configuration files stored for each feature and/or each machine in meta-agl/templates and meta-agl-extra/templates.