summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonan Le Martret <ronan.lemartret@iot.bzh>2021-10-08 11:37:48 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2021-11-19 13:39:23 +0000
commita61157d817e4ba337760e7a2c417e602d9e068f3 (patch)
tree7d801db85e403a5440bfbd44d1da839ef7476575
parent709ab5c90d9a219ca989bb0d8e51db904c9df071 (diff)
Renesas: Add Build Environment Insrument Cluster
Bug-AGL: SPEC-4024 Signed-off-by: Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com> Change-Id: Ic7dcb520d48d64b4b880ec9bb767ca863f176af9 Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh> Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/26730 Reviewed-by: Naoto YAMAGUCHI <naoto.yamaguchi@aisin.co.jp> Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
-rw-r--r--docs/0_Getting_Started/2_Building_AGL_Image/5_3_RCar_Gen_3.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/0_Getting_Started/2_Building_AGL_Image/5_3_RCar_Gen_3.md b/docs/0_Getting_Started/2_Building_AGL_Image/5_3_RCar_Gen_3.md
index dac8481..13e3865 100644
--- a/docs/0_Getting_Started/2_Building_AGL_Image/5_3_RCar_Gen_3.md
+++ b/docs/0_Getting_Started/2_Building_AGL_Image/5_3_RCar_Gen_3.md
@@ -183,6 +183,18 @@ cd $AGL_TOP
source meta-agl/scripts/aglsetup.sh -m $MACHINE -b build agl-devel agl-demo
```
+**NOTE:**
+To avoid useless download and rebuild, it's important to set the variable DL_DIR and SSTATE_DIR in your configuration.
+
+```sh
+echo '# reuse download directories' >> $AGL_TOP/site.conf
+echo 'DL_DIR = "$HOME/downloads/"' >> $AGL_TOP/site.conf
+echo 'SSTATE_DIR = "$AGL_TOP/sstate-cache/"' >> $AGL_TOP/site.conf
+ln -sf $AGL_TOP/site.conf conf/
+```
+
+**Reference Hardware :**
+
If building for the AGL Reference Hardware (with `MACHINE` set to "h3ulcb" or
"h3ulcb-nogfx"), add `agl-refhw-h3`, for example:
@@ -191,6 +203,20 @@ cd $AGL_TOP
source meta-agl/scripts/aglsetup.sh -m $MACHINE -b build agl-devel agl-demo agl-refhw-h3
```
+**HTML5 based IVI demo :**
+
+For HTML5 based IVI demo the feature "agl-profile-graphical-html5" is needed.
+
+```sh
+$ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b $MACHINE agl-demo agl-devel agl-profile-graphical-html5
+```
+
+**Instrument Cluster with Container isolation demo :**
+
+```sh
+$ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b $MACHINE agl-lxc
+```
+
**NOTE:**
You can check if your logs match what is expected in the [troubleshooting section](#4-troubleshooting).