Fixing the branch name in latest stable release
[AGL/documentation.git] / docs / 0_Getting_Started / 2_Building_AGL_Image / 5_3_RCar_Gen_3.md
index 13e3865..33fc50a 100644 (file)
@@ -65,7 +65,7 @@ Follow these steps to download the drivers you need:
 
     | AGL Version | Renesas version |
     |:-:|:-:|
-    | AGL master | 4.7.0 |
+    | AGL master | 5.9.0 |
 
 3. **Download the Files:**
 
@@ -187,9 +187,9 @@ source meta-agl/scripts/aglsetup.sh -m $MACHINE -b build agl-devel agl-demo
 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
+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/
 ```
 
@@ -250,12 +250,27 @@ Start the build using the `bitbake` command.
 CPU and and Internet connection speeds.
 The build also takes approximately 100G-bytes of free disk space.
 
+**Qt based IVI demo :**
 For this example, the target is "agl-demo-platform":
 
 ```sh
 bitbake agl-demo-platform
 ```
 
+**HTML5 based IVI demo :**
+The target is `agl-demo-platform-html5`.
+
+```sh
+$ time bitbake agl-demo-platform-html5
+```
+
+**Instrument Cluster with Container isolation demo :**
+The target is `lxc-host-image-demo`.
+
+```sh
+$ time bitbake lxc-host-image-demo
+```
+
 The build process puts the resulting image in the Build Directory:
 
 ```sh