diff options
author | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2024-08-10 05:41:25 +0900 |
---|---|---|
committer | Walt Miner <walt@linux.com> | 2024-08-19 20:56:18 +0000 |
commit | d567d986ab2d483548e2692e635943b728d0ba9f (patch) | |
tree | ea1811d49baf946023311f63ccfa4782163e6314 | |
parent | f8acb4071ff6b89b080ce44f03990d4e1ffe7e98 (diff) |
Fix download procedure at IC doc to use ricefish branchricefish_18.0.2ricefish_18.0.1ricefish_18.0.0ricefish/18.0.2ricefish/18.0.1ricefish/18.0.018.0.218.0.118.0.0ricefish
The "### 6th step: Download the AGL Source Files" has the description
of repo init command. But it is not use ricefish branch.
When developer use this command, repo download master branch.
This patch add branch setting into the description of repo init command.
Bug-AGL: SPEC-5224
Change-Id: I7c81cfefd659cf4f2be9f118cfacdeb157f884ee
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/30189
Tested-by: Walt Miner <walt@linux.com>
Reviewed-by: Walt Miner <walt@linux.com>
-rw-r--r-- | docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/01_Instrument_Cluster_(IC-IVI_with_Container_isolation).md | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/01_Instrument_Cluster_(IC-IVI_with_Container_isolation).md b/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/01_Instrument_Cluster_(IC-IVI_with_Container_isolation).md index f726cb5..f261d04 100644 --- a/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/01_Instrument_Cluster_(IC-IVI_with_Container_isolation).md +++ b/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/01_Instrument_Cluster_(IC-IVI_with_Container_isolation).md @@ -31,10 +31,9 @@ table2. | Board type | Support integration type | status | |:---:|:---:|:---:| -| AGL RefHW | 1,2a,3a,3b | Now break, Fixing now. | -| R-CarH3 Starter Kit with Kingfisher board | 1,2a,3a,3b | Now break, Fixing now. | -| Raspberry Pi4 (4G or 8G) | 1,2a,3a,3b | Now break, Fixing now. | -| NanoPC-T6 (4G or 8G or 16G) | 1,3a,3b | TODO. | +| AGL RefHW | 1,2a,3a,3b | Tested. | +| R-CarH3 Starter Kit with Kingfisher board | 1,2a,3a,3b | Not tested. | +| Raspberry Pi4 (4G or 8G) | 1,2a,3a,3b | Not tested. | We recommend to choice AGL RefHW or Raspberry Pi4 (4G or 8G). @@ -81,15 +80,28 @@ $ git config \--global user.name "Your Name" ### 6th step: Download the AGL Source Files +#### Standard procedure: Use latest point of the ricefish release. + ```bash $ cd $AGL_TOP $ mkdir ricefish $ export AGL_TOP=$HOME/AGL/ricefish $ cd $AGL_TOP -$ repo init -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo +$ repo init -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo -b ricefish $ repo sync ``` +#### Alternative procedure: Use latest release of the quillback release. + +Check a this [release note page](https://wiki.automotivelinux.org/agl-distro/release-notes#latest_oldstable_release). It describe repo command to download latest release point. + +Example +```bash +$ repo init -b ricefish -m ricefish_18.0.0.xml -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo +``` + +When you want to use latest release of the quillback release, please replace repo command from the standard procedure to this. + ### 7th step: Downloading Proprietary DriversĀ (AGL RefHW and R-Car H3/M3 with Kingfisher board only procedure) If your board is Raspberry Pi4, please skip this step. |