From 3c3ba5e5927ac5607439f18f95f09592519053a1 Mon Sep 17 00:00:00 2001 From: Jan-Simon Moeller Date: Mon, 13 Jan 2025 12:01:36 +0100 Subject: Batch update for Super Salmon M3 Update the documentation after branching for Milestone 3. Bug-AGL: SPEC-5333 Signed-off-by: Jan-Simon Moeller Change-Id: I04aa470eb53ed937e893445b4b029e24a7b8d12b Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/30759 --- .../02_Building_AGL_Image/02_Preparing_Your_Build_Host.md | 4 ++-- .../02_Building_AGL_Image/03_Downloading_AGL_Software.md | 4 ++-- .../04_Initializing_Your_Build_Environment.md | 6 +++--- .../02_Building_AGL_Image/05_Customizing_Your_Build.md | 4 ++-- .../02_Building_for_x86_(Emulation_and_Hardware).md | 2 +- .../04_Building_for_Supported_Renesas_Boards.md | 12 ++++++------ 6 files changed, 16 insertions(+), 16 deletions(-) (limited to 'docs/01_Getting_Started/02_Building_AGL_Image') diff --git a/docs/01_Getting_Started/02_Building_AGL_Image/02_Preparing_Your_Build_Host.md b/docs/01_Getting_Started/02_Building_AGL_Image/02_Preparing_Your_Build_Host.md index 846271f..fc1d74e 100644 --- a/docs/01_Getting_Started/02_Building_AGL_Image/02_Preparing_Your_Build_Host.md +++ b/docs/01_Getting_Started/02_Building_AGL_Image/02_Preparing_Your_Build_Host.md @@ -17,7 +17,7 @@ the Yocto Project documentation **NOTE:** This entire section presumes you want to build an image. You can skip the entire build process if you want to use a ready-made development image. -The [supported images](https://download.automotivelinux.org/AGL/snapshots/master/latest/) exist for several boards as +The [supported images](https://download.automotivelinux.org/AGL/release/salmon/latest/) exist for several boards as well as for the Quick EMUlator (QEMU). See the "[Quickstart](../01_Quickstart/01_Using_Ready_Made_Images.md)" @@ -56,7 +56,7 @@ section for more information on the ready-made images. **NOTE:** If you are using the CentOS distribution, you need to separately install the epel-release package and run the `makecache` command as described in - "[The Build Host Packages](https://docs.yoctoproject.org/ref-manual/system-requirements.html#required-packages-for-the-build-host)" + "[The Build Host Packages](https://docs.yoctoproject.org/OAref-manual/system-requirements.html#required-packages-for-the-build-host)" section of the Yocto Project Quick Start. Aside from the packages listed in the previous section, you need the following: diff --git a/docs/01_Getting_Started/02_Building_AGL_Image/03_Downloading_AGL_Software.md b/docs/01_Getting_Started/02_Building_AGL_Image/03_Downloading_AGL_Software.md index 02d9108..eb83c54 100644 --- a/docs/01_Getting_Started/02_Building_AGL_Image/03_Downloading_AGL_Software.md +++ b/docs/01_Getting_Started/02_Building_AGL_Image/03_Downloading_AGL_Software.md @@ -59,8 +59,8 @@ The remainder of this section provides steps on how to download the AGL source f ```sh $ cd $AGL_TOP - $ mkdir <> - $ cd <> + $ mkdir <> # e.g. 'salmon' + $ cd <> # e.g. 'salmon' $ repo init -b <> -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo $ repo sync ``` diff --git a/docs/01_Getting_Started/02_Building_AGL_Image/04_Initializing_Your_Build_Environment.md b/docs/01_Getting_Started/02_Building_AGL_Image/04_Initializing_Your_Build_Environment.md index 03b2f5f..3b3f314 100644 --- a/docs/01_Getting_Started/02_Building_AGL_Image/04_Initializing_Your_Build_Environment.md +++ b/docs/01_Getting_Started/02_Building_AGL_Image/04_Initializing_Your_Build_Environment.md @@ -10,7 +10,7 @@ run to initialize the build environment. You can find this script here: ```sh -$AGL_TOP/master/meta-agl/scripts/aglsetup.sh +$AGL_TOP/salmon/meta-agl/scripts/aglsetup.sh ``` The script accepts many options that allow you to define build parameters such @@ -18,7 +18,7 @@ as the target hardware (i.e. the machine), build directory, and so forth. Use the following commands to see the available options and script syntax: ```sh -$ cd $AGL_TOP/master +$ cd $AGL_TOP/salmon $ source meta-agl/scripts/aglsetup.sh -h ``` @@ -231,7 +231,7 @@ Common targets are: Running the script creates the Build Directory if it does not already exist. The default Build Directory is `$AGL_TOP//build`, and the nomenclature to be used throughout this doc is going to be `$AGL_TOP//` -For this example, the Build Directory is `$AGL_TOP/master/qemux86-64`. +For this example, the Build Directory is `$AGL_TOP/salmon/qemux86-64`. The script's output also indicates the machine and AGL features selected for the build. diff --git a/docs/01_Getting_Started/02_Building_AGL_Image/05_Customizing_Your_Build.md b/docs/01_Getting_Started/02_Building_AGL_Image/05_Customizing_Your_Build.md index 31d2852..4da499d 100644 --- a/docs/01_Getting_Started/02_Building_AGL_Image/05_Customizing_Your_Build.md +++ b/docs/01_Getting_Started/02_Building_AGL_Image/05_Customizing_Your_Build.md @@ -128,7 +128,7 @@ using mirrors. To use mirrors, add this line to your `local.conf` file in the Build directory: ```sh -SSTATE_MIRRORS_append = " file://.* https://download.automotivelinux.org/sstate-mirror/master/${DEFAULTTUNE}/PATH \n " +SSTATE_MIRRORS_append = " file://.* https://download.automotivelinux.org/sstate-mirror/salmon/${DEFAULTTUNE}/PATH \n " ``` You can learn more about shared state and how it is used in the @@ -141,7 +141,7 @@ section of the Yocto Project Reference Manual. $ 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 -$ cd $AGL_TOP/master/qemux86-64/ +$ cd $AGL_TOP/salmon/qemux86-64/ $ ln -sf $AGL_TOP/site.conf conf/ In General; diff --git a/docs/01_Getting_Started/02_Building_AGL_Image/06_Building_the_AGL_Image/02_Building_for_x86_(Emulation_and_Hardware).md b/docs/01_Getting_Started/02_Building_AGL_Image/06_Building_the_AGL_Image/02_Building_for_x86_(Emulation_and_Hardware).md index 89ee35d..85157ca 100644 --- a/docs/01_Getting_Started/02_Building_AGL_Image/06_Building_the_AGL_Image/02_Building_for_x86_(Emulation_and_Hardware).md +++ b/docs/01_Getting_Started/02_Building_AGL_Image/06_Building_the_AGL_Image/02_Building_for_x86_(Emulation_and_Hardware).md @@ -133,7 +133,7 @@ If you built your image with bitbake, you can now just use the ``runqemu`` wrapp For this example : ```sh -$ source $AGL_TOP/master/qemux86-64/agl-init-build-env +$ source $AGL_TOP/salmon/qemux86-64/agl-init-build-env ``` In general : diff --git a/docs/01_Getting_Started/02_Building_AGL_Image/06_Building_the_AGL_Image/04_Building_for_Supported_Renesas_Boards.md b/docs/01_Getting_Started/02_Building_AGL_Image/06_Building_the_AGL_Image/04_Building_for_Supported_Renesas_Boards.md index 2a49078..0c38c2a 100644 --- a/docs/01_Getting_Started/02_Building_AGL_Image/06_Building_the_AGL_Image/04_Building_for_Supported_Renesas_Boards.md +++ b/docs/01_Getting_Started/02_Building_AGL_Image/06_Building_the_AGL_Image/04_Building_for_Supported_Renesas_Boards.md @@ -65,7 +65,7 @@ Follow these steps to download the drivers you need: | AGL Version | Renesas version | |:-:|:-:| - | AGL master | 5.9.0 | + | AGL salmon | 5.9.0 | 3. **Download the Files:** @@ -652,8 +652,8 @@ similar to the following: ```text [snip] ---- fragment /home/working/workspace_agl_master/meta-agl/templates/machine/h3ulcb/50_setup.sh -/home/working/workspace_agl_master /home/working/workspace_agl_master/build_gen3 +--- fragment /home/working/workspace_agl_salmon/meta-agl/templates/machine/h3ulcb/50_setup.sh +/home/working/workspace_agl_salmon /home/working/workspace_agl_salmon/build_gen3 The graphics and multimedia acceleration packages for the R-Car Gen3 board can be downloaded from: https://www.renesas.com/en-us/solutions/automotive/rcar-demoboard-2.html @@ -661,11 +661,11 @@ https://www.renesas.com/en-us/solutions/automotive/rcar-demoboard-2.html These 2 files from there should be store in your'/home/devel/Downloads' directory. R-Car_Gen3_Series_Evaluation_Software_Package_for_Linux-weston8-20200923.zip R-Car_Gen3_Series_Evaluation_Software_Package_of_Linux_Drivers-weston8-20200923.zip -/home/working/workspace_agl_master/build_gen3 ---- fragment /home/working/workspace_agl_master/meta-agl/templates/base/99_setup_EULAconf.sh +/home/working/workspace_agl_salmon/build_gen3 +--- fragment /home/working/workspace_agl_salmon/meta-agl/templates/base/99_setup_EULAconf.sh --- end of setup script OK -Generating setup file: /home/working/workspace_agl_master/build_gen3/agl-init-build-env ... OK +Generating setup file: /home/working/workspace_agl_salmon/build_gen3/agl-init-build-env ... OK ------------ aglsetup.sh: Done [snip] ``` -- cgit