From eb6d3bf04d5ceaf4c6cb377625720acb1a512d80 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Thu, 4 Oct 2018 18:10:37 +0200 Subject: Removed mention of TFTP port and minor improvements. Change-Id: Ib4124eb51a9544bd5f8e81996287a895bcdfff27 Signed-off-by: Sebastien Douheret --- docs/part-1/1-1_install-xds-server-docker.md | 7 +++---- docs/part-1/1-2_install-xds-server-vm.md | 3 +-- docs/part-1/3_install-sdks.md | 7 +++++++ 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/part-1/1-1_install-xds-server-docker.md b/docs/part-1/1-1_install-xds-server-docker.md index 37e1fba..a0ab604 100644 --- a/docs/part-1/1-1_install-xds-server-docker.md +++ b/docs/part-1/1-1_install-xds-server-docker.md @@ -30,12 +30,12 @@ Use provided script to create a new docker image and start a new container: # Get script wget -O xds-docker-create-container.sh 'https://gerrit.automotivelinux.org/gerrit/gitweb?p=src/xds/xds-server.git;a=blob_plain;f=scripts/xds-docker-create-container.sh;hb=master' -# Create new XDS worker container -bash ./xds-docker-create-container.sh +# Create new XDS worker container (-id option value should be changed when you get port conflict error) +bash ./xds-docker-create-container.sh -id 0 # Check that new container is running docker ps | grep worker-xds -f67079db4339 docker.automotivelinux.org/agl/worker-xds:5.0 "/usr/bin/wait_for..." About a minute ago Up 34 seconds 0.0.0.0:8000->8000/tcp, 0.0.0.0:69->69/udp, 0.0.0.0:10809->10809/tcp, 0.0.0.0:2222->22/tcp agl-xds-HOSTNAME-0-USERNAME +f67079db4339 docker.automotivelinux.org/agl/worker-xds:5.0 "/usr/bin/wait_for..." About a minute ago Up 34 seconds 0.0.0.0:8000->8000/tcp,0.0.0.0:10809->10809/tcp, 0.0.0.0:2222->22/tcp agl-xds-HOSTNAME-0-USERNAME ``` This container exposes following ports: @@ -43,7 +43,6 @@ This container exposes following ports: | Port number | Description | |-------------|---------------------------------------------| | 8000 | `xds-server`: serve XDS webapp and REST API | -| 69 | TFTP | | 2222 | ssh | This container also creates the following volumes (shared folders between diff --git a/docs/part-1/1-2_install-xds-server-vm.md b/docs/part-1/1-2_install-xds-server-vm.md index 32a8c20..3bf2f61 100644 --- a/docs/part-1/1-2_install-xds-server-vm.md +++ b/docs/part-1/1-2_install-xds-server-vm.md @@ -50,7 +50,7 @@ Add share folder to appliance, **mandatory** to use **path-mapping sharing type mkdir -p $HOME/xds-workspace #Add share folder to appliance -vboxmanage sharedfolder add ${VDS_VMNAME} --name XDS-workspace --hostpath $HOME/xds-workspace +VBoxManage sharedfolder add ${VDS_VMNAME} --name XDS-workspace --hostpath $HOME/xds-workspace ``` Start appliance @@ -65,7 +65,6 @@ Start appliance This image exposes following network ports (NAT mode): - 8000 : `xds-server` to serve XDS basic web page -- 69 : TFTP - 2222 : ssh ## Check if xds-server is running diff --git a/docs/part-1/3_install-sdks.md b/docs/part-1/3_install-sdks.md index 36ee48e..094e547 100644 --- a/docs/part-1/3_install-sdks.md +++ b/docs/part-1/3_install-sdks.md @@ -66,6 +66,13 @@ xds-cli sdks abort -id d65fe750 # Install a SDK (using a local SDK package/file) xds-cli sdks install --file $HOME/xds-workspace/sdks/poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-corei7-64-toolchain-4.99.5.sh +# List installed SDKs +xds-cli sdks ls + +List of installed SDKs: +ID NAME STATUS VERSION ARCH +e45ac787 AGL-corei7-64-4.99.5+snapshot Installed 4.99.5 x86_64 +d65fe750 AGL-release-eel-latest-qemux86-64 Installed 4.99.3 corei7-64 ``` -- cgit 1.2.3-korg