summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinod Ahuja <vahuja@unomaha.edu>2022-08-29 16:15:57 -0500
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2022-09-07 16:54:03 +0000
commit9f4293ea0cd41102aed93acd67e9f5c4c3dfc4ac (patch)
tree965f47ee53f39606aaeaf2c4d6b32af4295b68f3
parent98dcd9b851c50f7d151b1f8a6234d6e5d43f57cb (diff)
Fixing broken links in Developer Guides
1. Fixing broken links in Developer guides -> setting up AGL SDK in step 1 2. Renaming files in command line code based on the file downloaded in step 1 3. Putting notes for changing the .sh file in different commands Bug-AGL: [SPEC-4470] Signed-off-by: Vinod Ahuja <vahuja@unomaha.edu> Change-Id: I011b958ebab8319ae5f3b519875abb389615b33c Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/27957 Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> ci-image-boot-test: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
-rw-r--r--docs/3_Developer_Guides/1_Setting_Up_AGL_SDK.md36
1 files changed, 27 insertions, 9 deletions
diff --git a/docs/3_Developer_Guides/1_Setting_Up_AGL_SDK.md b/docs/3_Developer_Guides/1_Setting_Up_AGL_SDK.md
index 8cdbe3e..d3f01fb 100644
--- a/docs/3_Developer_Guides/1_Setting_Up_AGL_SDK.md
+++ b/docs/3_Developer_Guides/1_Setting_Up_AGL_SDK.md
@@ -7,34 +7,52 @@ quickstart the service and application development process.
1. Download the prebuilt SDK :
- - **x86** : [qemux86-64](https://download.automotivelinux.org/AGL/snapshots/master/latest/qemux86-64/deploy/sdk/poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-corei7-64-qemux86-64-toolchain-10.90.0+snapshot.sh)
+ Please open the link below and download .sh file for desired machine.
- - **ARM 32 bit** : [qemuarm](https://download.automotivelinux.org/AGL/snapshots/master/latest/qemuarm/deploy/sdk/poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-armv7vet2hf-neon-vfpv4-qemuarm-toolchain-10.90.0+snapshot.sh)
+ **Note:** The links provided are for the master branch. If you want SDK for specific branch than change the name from master to specific branch.
+
+ - **x86** : [qemux86-64](https://download.automotivelinux.org/AGL/snapshots/master/latest/qemux86-64/deploy/sdk/)
+
+ **Note:** .sh file will be with name "poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-corei7-64-qemux86-64-toolchain-$(version number).sh" where version number is regularly updated on the site.
+
+
+ - **ARM 32 bit** : [qemuarm](https://download.automotivelinux.org/AGL/snapshots/master/latest/qemuarm/deploy/sdk/)
+
+ **Note:** .sh file will be with name " poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-armv7vet2hf-neon-vfpv4-qemuarm-toolchain-$(version number).sh" where version number is regularly updated on the site.
+
+
+ - **AARCH64 - ARM 64bit** : [qemuarm64](https://download.automotivelinux.org/AGL/snapshots/master/latest/qemuarm64/deploy/sdk/)
+
+ **Note:** .sh file will be with name " poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-aarch64-qemuarm64-toolchain-$(version number).sh" where version number is regularly updated on the site.
- - **AARCH64 - ARM 64bit** : [qemuarm64](https://download.automotivelinux.org/AGL/snapshots/master/latest/qemuarm64/deploy/sdk/poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-aarch64-qemuarm64-toolchain-10.90.0+snapshot.sh)
*Henceforth,* **qemux86-64** *is used in these guides, unless specified
otherwise. We also use the 'agl-demo-platform-crosssdk' as example.*
-2. Create application developmment directory and copy SDK into them :
+2. Create application development directory and copy SDK into them :
+
+ **Note:** In the copy command below change the file name with name of your downloaded .sh file. In the example below file name is based on x86
```sh
$ mkdir ~/agl-app
- $ cp ~/Downloads/poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-corei7-64-qemux86-64-toolchain-10.90.0+snapshot.sh ~/agl-app/
+ $ cp ~/Downloads/poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-*.sh ~/agl-app/
$ cd ~/agl-app
```
3. Install the downloaded SDK :
+ **Note:** In commands below again change the file name based on your downloaded .sh file
+
+
```sh
- $ chmod 777 poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-corei7-64-qemux86-64-toolchain-10.90.0+snapshot.sh
+ $ chmod 777 poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-*.sh
$ mkdir agl-sdk/
- $ ./poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-corei7-64-qemux86-64-toolchain-10.90.0+snapshot.sh
+ $ ./poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-*.sh
```
Select target directory for SDK : `~/agl-app/agl-sdk`
```sh
- Automotive Grade Linux SDK installer version 10.90.0+snapshot
+ Automotive Grade Linux SDK installer version 14.0.0
=============================================================
Enter target directory for SDK (default: /opt/agl-sdk/10.90.0+snapshot-corei7-64): ~/agl-app/agl-sdk
You are about to install the SDK to "/home/boron/agl-app/agl-sdk". Proceed [Y/n]? Y
@@ -49,4 +67,4 @@ quickstart the service and application development process.
```sh
$ source ~/agl-app/agl-sdk/environment-setup-corei7-64-agl-linux
- ``` \ No newline at end of file
+ ```