diff options
-rw-r--r-- | getting-started/machines/R-Car-Starter-Kit-gen3.md | 15 | ||||
-rw-r--r-- | getting-started/setup-sdk-environment.md | 4 | ||||
-rw-r--r-- | getting-started/source-code.md | 4 |
3 files changed, 17 insertions, 6 deletions
diff --git a/getting-started/machines/R-Car-Starter-Kit-gen3.md b/getting-started/machines/R-Car-Starter-Kit-gen3.md index bd59990..c40fcb4 100644 --- a/getting-started/machines/R-Car-Starter-Kit-gen3.md +++ b/getting-started/machines/R-Car-Starter-Kit-gen3.md @@ -1,4 +1,4 @@ -# AGL Kickstart on Renesas R-Car Starter Kit Gen3 V2.23 (h3ulcb, m3ulcb) +# AGL Kickstart on Renesas R-Car Starter Kit Gen3 V2.23 (h3ulcb, m3ulcb, salvator-x) Here is a non exhaustive list of hardware parts that could be used to setup the R-Car Starter Kit Gen3 board development environment: @@ -14,6 +14,9 @@ For more information and latest news, please check : * [elinux page for h3ulcb][R-car h3ulcb] * [elinux page for m3ulcb][R-car m3ulcb] +* [elinux page for salvator-x][R-car salvator-x] + +Note that the Salvator-X has NDA restrictions, so less documentation is available both here and elsewhere. The following documents may also be helpful: @@ -60,6 +63,11 @@ export MACHINE=h3ulcb export MACHINE=m3ulcb ``` +* for machine **h3-salvator-x**: + + ```bash +export MACHINE=h3-salvator-x + Now, init your build environment: ```bash @@ -101,6 +109,8 @@ grep -w -e "^MACHINE =" $AGL_TOP/build/conf/local.conf MACHINE = "h3ulcb" or MACHINE = "m3ulcb" +or + MACHINE = "h3-salvator-x" ``` Configure for Release or Development: @@ -151,7 +161,7 @@ Follow the documentation on the [eLinux.org wiki][R-car loader update] for the e ### Update the firmware stack -As an AArch64 platform both the **h3ulcb** and **m3ulcb** have a firmware stack that consists of multiple parts. In both cases we have **ARM Trusted Firmware**, **OP-Tee** and **U-Boot** in use. Starting with Eel you must update the firmware to at least the version referenced here. For the exact steps required to flash the device see the eLinux.org wiki for **[h3ulcb][R-car h3ulcb firmware update]** or **[m3ulcb][R-car m3ulcb firmware update]** respectively. In both cases the files listed in the table will be found in the *\$AGL_TOP/build/tmp/deploy/images/$MACHINE* directory as specified in previous steps. +As an AArch64 platform both the **h3ulcb** and **m3ulcb** have a firmware stack that consists of multiple parts. In both cases we have **ARM Trusted Firmware**, **OP-Tee** and **U-Boot** in use. Starting with Eel you must update the firmware to at least the version referenced here. For the exact steps required to flash the device see the eLinux.org wiki for **[h3ulcb][R-car h3ulcb firmware update]** or **[m3ulcb][R-car m3ulcb firmware update]** respectively. In both cases the files listed in the table will be found in the *\$AGL_TOP/build/tmp/deploy/images/$MACHINE* directory as specified in previous steps. The Salvator-X firmware update process is not documented on eLinux. ## Prepare the SD-card on the host @@ -507,6 +517,7 @@ Detailed guides on how to build AGL for Renesas boards and using AGL SDK inside [R-car m3ulcb firmware update]: https://elinux.org/R-Car/Boards/M3SK#Flashing_firmware [R-car h3ulcb]: http://elinux.org/R-Car/Boards/H3SK [R-car h3ulcb firmware update]: https://elinux.org/R-Car/Boards/H3SK#Flashing_firmware +[R-car salvator-x]: https://elinux.org/R-Car/Boards/Salvator-X [R-car loader update]: http://elinux.org/R-Car/Boards/Kingfisher#How_to_update_of_Sample_Loader_and_MiniMonitor [R-car yocto]: http://elinux.org/R-Car/Boards/Yocto-Gen3 [rcar Linux Drivers]: https://www.renesas.com/solutions/automotive/rcar-demoboard.html diff --git a/getting-started/setup-sdk-environment.md b/getting-started/setup-sdk-environment.md index 3479a21..8ef742c 100644 --- a/getting-started/setup-sdk-environment.md +++ b/getting-started/setup-sdk-environment.md @@ -45,10 +45,10 @@ A pre-built image is available on automotivelinux download public site and can b First, download and load the image in your local Docker instance: ```bash -wget -O - https://download.automotivelinux.org/AGL/snapshots/sdk/docker/docker_agl_worker-3.0.tar.xz | sudo docker load; +wget -O - https://download.automotivelinux.org/AGL/snapshots/sdk/docker/docker_agl_worker-latest.tar.xz | sudo docker load; docker images; REPOSITORY TAG IMAGE ID CREATED SIZE - docker.automotivelinux.org/agl/worker 3.0 42009148bc03 6 days ago 926.9 MB + docker.automotivelinux.org/agl/worker 5.0 42009148bc03 6 days ago 926.9 MB jenkins latest 55720d63e328 5 weeks ago 711.9 MB hello-world latest c54a2cc56cbb 5 months ago 1.848 kB ``` diff --git a/getting-started/source-code.md b/getting-started/source-code.md index 567128b..9bf1d96 100644 --- a/getting-started/source-code.md +++ b/getting-started/source-code.md @@ -122,11 +122,11 @@ You can choose your source release ### Download Latest Stable Release -To download all layers for the for the latest stable release, dab 4.0.2: +To download all layers for the for the latest stable release, eel 5.0.2: ```bash cd $AGL_TOP -repo init -b dab -m dab_4.0.2.xml -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo +repo init -b eel -m eel_5.0.2.xml -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo repo sync ``` |