diff options
author | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2024-09-23 00:27:46 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-09-30 13:58:58 +0000 |
commit | 022fdcb40bb169dad57f86e62b3501cf1c6f5474 (patch) | |
tree | 446fc07e09a5c4527d82c6b4488e6ea24ddd4705 | |
parent | ceced6d10b8ccb1373ad2741a9676ed132c35d99 (diff) |
Add NanoPC T6 board container integration document
This change add container integration document for NanoPC T6 board.
Bug-AGL: SPEC-5247
Change-Id: I834d0770a3642519e33869d70d2ca7fd3f289402
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/30302
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
-rw-r--r-- | docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/01_Instrument_Cluster_(IC-IVI_with_Container_isolation).md | 46 |
1 files changed, 39 insertions, 7 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 e44e2a9..e535b90 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 @@ -33,10 +33,10 @@ table2. |:---:|:---:|:---:| | 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 | Tested. | -| NanoPC-T6 (4G or 8G or 16G) | 1,3a,3b | TODO. | +| NanoPC-T6 (4G or 8G or 16G) | 1,3a,3b | Tested by 16G board. | +| Raspberry Pi4/5 (4G or 8G) | 1,2a,3a,3b | Tested. | -We recommend to choice AGL RefHW or Raspberry Pi4 (4G or 8G). +We recommend to choice AGL RefHW or Raspberry Pi4 (4G or 8G) or NanoPC-T6 (4G or 8G or 16G) . **Typical Hardware Set is shown in Appendix.1. ** @@ -135,11 +135,22 @@ When your board is R- CarH3 Starter Kit with Kingfisher board. $ source meta-agl/scripts/aglsetup.sh -f -m h3ulcb-kf -b build-ic-h3kf agl-ic-container ``` +When your board is NanoPC T6 +```bash +$ source meta-agl/scripts/aglsetup.sh -f -m nanopc-t6 -b build-ic-nanopc-t6 agl-ic-container +``` + When your board is Raspberry Pi 4 ```bash $ source meta-agl/scripts/aglsetup.sh -f -m raspberrypi4 -b build-ic-rpi4 agl-ic-container ``` +When your board is Raspberry Pi 5 +```bash +$ source meta-agl/scripts/aglsetup.sh -f -m raspberrypi5 -b build-ic-rpi5 agl-ic-container +``` + + ### 2nd step: Build target image. In this time, you can build 1,2a and 3a. If you want to build 3b, @@ -196,11 +207,21 @@ When your board is R- CarH3 Starter Kit with Kingfisher board. $ source meta-agl/scripts/aglsetup.sh -f -m h3ulcb-kf -b build-ivi-h3kf agl-container-guest-demo agl-demo ``` +When your board is NanoPC T6 +```bash +$ source meta-agl/scripts/aglsetup.sh -f -m nanopc-t6 -b build-ic-nanopc-t6 agl-container-guest-demo agl-demo +``` + When your board is Raspberry Pi 4 ```bash $ source meta-agl/scripts/aglsetup.sh -f -m raspberrypi4 -b build-ivi-rpi4 agl-container-guest-demo agl-demo ``` +When your board is Raspberry Pi 5 +```bash +$ source meta-agl/scripts/aglsetup.sh -f -m raspberrypi5 -b build-ivi-rpi5 agl-container-guest-demo agl-demo +``` + #### 2nd step: Build target images. Type 3b integration need to build 3 image, these image are @@ -225,19 +246,31 @@ OUT_OF_TREE_CONTAINER_IMAGE_DEPLOY_DIR = "/path/to/deploy/" ex. When your board is AGL RefHW and your home directory is "/home/user/". ```bash -OUT_OF_TREE_CONTAINER_IMAGE_DEPLOY_DIR = "/home/user/AGL/octopus/build-ivi-refhw/tmp/deploy" +OUT_OF_TREE_CONTAINER_IMAGE_DEPLOY_DIR = "/home/user/AGL/master/build-ivi-refhw/tmp/deploy" ``` ex. When your board is R- CarH3 Starter Kit with Kingfisher board and your home directory is "/home/user/". ```bash -OUT_OF_TREE_CONTAINER_IMAGE_DEPLOY_DIR = "/home/user/AGL/octopus/build-ivi-h3kf/tmp/deploy" +OUT_OF_TREE_CONTAINER_IMAGE_DEPLOY_DIR = "/home/user/AGL/master/build-ivi-h3kf/tmp/deploy" +``` + +ex. When your board is NanoPC T6 board and your home directory is "/home/user/". + +```bash +OUT_OF_TREE_CONTAINER_IMAGE_DEPLOY_DIR = "/home/user/AGL/master/build-ivi-nanopc-t6/tmp/deploy" ``` ex. When your board is Raspberry Pi 4 and your home directory is "/home/user/". ```bash -OUT_OF_TREE_CONTAINER_IMAGE_DEPLOY_DIR = "/home/user/AGL/octopus/build-ivi-rpi4/tmp/deploy" +OUT_OF_TREE_CONTAINER_IMAGE_DEPLOY_DIR = "/home/user/AGL/master/build-ivi-rpi4/tmp/deploy" +``` + +ex. When your board is Raspberry Pi 5 and your home directory is "/home/user/". + +```bash +OUT_OF_TREE_CONTAINER_IMAGE_DEPLOY_DIR = "/home/user/AGL/master/build-ivi-rpi5/tmp/deploy" ``` #### 4th step: Build all in one image (3b). @@ -486,7 +519,6 @@ Upstream: | C | Crash IVI guest | | D | Qt IVI | | G | Flutter IVI | -| H | HTML5 IVI | # Reference webpages 1. [eLinux](https://elinux.org/R-Car/AGL) |