aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>2024-08-11 11:18:34 +0900
committerWalt Miner <walt@linux.com>2024-08-19 20:51:09 +0000
commite8aaed3c5688c92ba1ad85931c3a0981919d1b68 (patch)
treecb62b20448782069baf7034328a5167c45d62ab7
parentfc47271f7ce19cb79b61d00e1fd2b55fa8533171 (diff)
Add command line container exchange method for IC containerquillback_17.1.2quillback/17.1.217.1.2quillback
This patch add most easy container exchange method to document. Bug-AGL: SPEC-5224 Change-Id: Idb9b1b046286dc2cd5b48247d4a007d12ce9bb9f Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/30165 Reviewed-by: Walt Miner <walt@linux.com> Tested-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).md112
-rw-r--r--docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/images/image9.jpegbin84781 -> 75705 bytes
2 files changed, 86 insertions, 26 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 a513190..3099463 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
@@ -327,48 +327,68 @@ card device is /dev/mmcblkX may be.
## 7. How to use container exchange UI.
-### 7a. Momi Web
+IC container integration has three method for container exchange.
-The Momi web is a web interface for container exchange.  When you want
-to use Momi web, you must connect network between board and
-PC/Tablet/Phone.
+| No. | Method | Refer to |
+|:---|:---|:---|
+| 1 | Command line interface | Sub section 7a. |
+| 2 | Web UI | Appendix 3. |
+| 3 | Key board UI | Appendix 4. |
-**The Momi web is completely demo feature, that open many security hole.
- You shall not use out of standalone demo.**
-#### 1st step: Check IP address in your board.
+### 7a. How to change guest using command line interface
-After booting, you check IP address in your board.
+The cmcontrol is a command line interface for the container manager. It supports container listing, shutdown, reboot, force reboot, and active guest change.
```bash
-root@raspberrypi4-64:\~# ifconfig\
-eth0      Link encap:Ethernet  HWaddr E4:XX:YY:ZZ:WW:VV\
-           inet addr:192.168.10.128  Bcast:192.168.10.255
-  Mask:255.255.255.0
+$ cmcontrol
+usage: [options]
+
+ --help print help strings.
+ --get-guest-list get guest container list from container manager.
+ --get-guest-list-json get guest container list from container manager by json.
+ --shutdown-guest-name=N shutdown request to container manager. (N=guest name)
+ --shutdown-guest-role=R shutdown request to container manager. (R=guest role)
+ --reboot-guest-name=N reboot request to container manager. (N=guest name)
+ --reboot-guest-role=R shutdown request to container manager. (R=guest role)
+ --force-reboot-guest-name=N reboot request to container manager. (N=guest name)
+ --force-reboot-guest-role=R shutdown request to container manager. (R=guest role)
+ --change-active-guest-name=N change active guest request to container manager. (N=guest name)
```
-In this case, this board set IP address by 192.168.10.128.
+You can get installed container guests in the system using --get-guest-list option.
-#### 2nd step: Connect to board using web browser.
+```bash
+$ cmcontrol --get-guest-list
+HEADER: name, role, status
+ cluster-demo, cluster, started
+ agl-flutter-ivi-demo, ivi, disable
+ agl-html5-ivi-demo, ivi, disable
+ agl-momi-ivi-demo, ivi, started
+ agl-qt-ivi-demo, ivi, disable
+```
-Open "[http://a.b.c.d:8080](http://a.b.c.d:8080)".  When
-a board is set IP address 192.168.10.128, you open
-"[http://192.168.10.128:8080](http://192.168.10.128:8080)".
+The name is a guest name. The role is a guest role (cluster or ivi). The status is a status of guest. Current inactive guest status is disable.
-When you success to connect to board, your web browser show these web
-UI.
-#### PC View
+If you want to change guest from agl-momi-ivi-demo to agl-flutter-ivi-demo, it uses these command.
-![](images/image4.png)
+```bash
+$ cmcontrol --change-active-guest-name=agl-flutter-ivi-demo
+$ cmcontrol --shutdown-guest-role=ivi
+```
-#### Mobile View
+If you want to reboot IVI guest with shutdown process, it uses these command.
-![](images/image5.png)
+```bash
+$ cmcontrol --reboot-guest-role=ivi
+```
-### 7b. Keyboard Interface
+If you want to force reboot IVI guest without shutdown process, it uses these command.
-Please refer to Appendix 3.
+```bash
+$ cmcontrol --force-reboot-guest-role=ivi
+```
## Frequently Asked Questions
@@ -423,7 +443,47 @@ Please refer to Appendix 3.
![](images/image11.jpeg)
-## Appendix 3. How to configure Special Keyboard.
+## Appendix 3. How to use Web UI (Momi Web).
+
+The Momi web is a web interface for container exchange.  When you want
+to use Momi web, you must connect network between board and
+PC/Tablet/Phone.
+
+**The Momi web is completely demo feature, that open many security hole.
+ You shall not use out of standalone demo.**
+
+### 1st step: Check IP address in your board.
+
+After booting, you check IP address in your board.
+
+```bash
+root@raspberrypi4-64:\~# ifconfig\
+eth0      Link encap:Ethernet  HWaddr E4:XX:YY:ZZ:WW:VV\
+           inet addr:192.168.10.128  Bcast:192.168.10.255
+  Mask:255.255.255.0
+```
+
+In this case, this board set IP address by 192.168.10.128.
+
+### 2nd step: Connect to board using web browser.
+
+Open "[http://a.b.c.d:8080](http://a.b.c.d:8080)".  When
+a board is set IP address 192.168.10.128, you open
+"[http://192.168.10.128:8080](http://192.168.10.128:8080)".
+
+When you success to connect to board, your web browser show these web
+UI.
+
+### PC View
+
+![](images/image4.png)
+
+### Mobile View
+
+![](images/image5.png)
+
+
+## Appendix 4. How to configure Special Keyboard.
### How to get configuration tool.
diff --git a/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/images/image9.jpeg b/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/images/image9.jpeg
index 0a3e945..8d42761 100644
--- a/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/images/image9.jpeg
+++ b/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/images/image9.jpeg
Binary files differ