aboutsummaryrefslogtreecommitdiffstats
path: root/docs/0_Getting_Started/6_ Developing_an_Application /2_Download_or_Build_Your_SDK_Installer.md
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2020-10-14 13:26:09 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-10-14 11:28:17 +0000
commit93c1058794d8bdab19c49df6d402a40963be65ec (patch)
treeab893f78a3b9928cf409cd3b63f6129381e4f5aa /docs/0_Getting_Started/6_ Developing_an_Application /2_Download_or_Build_Your_SDK_Installer.md
parent11d46ac01cf2b4bbc2e8ffe9b70ca27783af0137 (diff)
Added Documentation for Jellyfish
(rewrote majority of them and updated with minor changes) (removed whitespaces, added contribution guide, corrected rcar-gen3 section 7, added aglsetup.h flags to hardware support, some minor changes) Bug-AGL: [SPEC-3633] Signed-off-by: Shankho Boron Ghosh <shankhoghosh123@gmail.com> Change-Id: Ifd6b3c1cdaa41f05a74c1affe6db9e24763921b9 Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/25411 Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'docs/0_Getting_Started/6_ Developing_an_Application /2_Download_or_Build_Your_SDK_Installer.md')
-rw-r--r--docs/0_Getting_Started/6_ Developing_an_Application /2_Download_or_Build_Your_SDK_Installer.md73
1 files changed, 0 insertions, 73 deletions
diff --git a/docs/0_Getting_Started/6_ Developing_an_Application /2_Download_or_Build_Your_SDK_Installer.md b/docs/0_Getting_Started/6_ Developing_an_Application /2_Download_or_Build_Your_SDK_Installer.md
deleted file mode 100644
index ef29bf2..0000000
--- a/docs/0_Getting_Started/6_ Developing_an_Application /2_Download_or_Build_Your_SDK_Installer.md
+++ /dev/null
@@ -1,73 +0,0 @@
----
-edit_link: ''
-title: Download or Build Your SDK Installer
-origin_url: >-
- https://raw.githubusercontent.com/automotive-grade-linux/docs-sources/master/docs/getting-started/app-workflow-sdk.md
----
-
-<!-- WARNING: This file is generated by fetch_docs.js using /home/boron/Documents/AGL/docs-webtemplate/site/_data/tocs/getting_started/master/image-development-workflow-getting-started-book.yml -->
-
-# 2. Download or Build Your SDK Installer #
-
-The Software Development Kit (SDK) allows you to use your build host
-to develop an application specific to your target hardware.
-SDKs are installed onto your build host by running an SDK installer
-file (``*.sh``).
-
-You must either download a pre-built installer file for your SDK or
-build an installer file.
-If you are developing an application for a board supported by the AGL software, you might
-want to just download a pre-built SDK installer file.
-If your hardware is not supported by AGL, you need to build the SDK installer file.
-
-## Downloading a pre-built SDK Installer ##
-
-For a look at the SDK installers for supported boards, go to the
-[AGL Download Website](https://download.automotivelinux.org/AGL/release/).
-From there, you can explore to find the SDK installer you want to download.
-As an example, consider using a pre-built SDK to develop applications suited for a 64-bit
-ARM-based board that you want to emulate using QEMU.
-Furthermore, you are using the 8.0.0 "Halibut" release of the AGL software.
-Follow these links:
-
-```
-halibut -> 8.0.0 -> qemuarm64 -> deploy -> sdk
-```
-
-From the list, you download the ``*.sh`` file, which is an installation script for the SDK.
-Running the SDK installer script installs the SDK onto your build host.
-
-SDK installation scripts have long names that reflect the platform specifics.
-For example, the following file installs the SDK given the specifics earlier:
-
-``poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-aarch64-toolchain-8.0.0.sh``
-
-**NOTE:** If you want to know more about SDK installer file naming, which is a result of
-BitBake and the Yocto Project, see the
-"[Locating Pre-Built SDK Installers](https://yoctoproject.org/docs/2.4.4/sdk-manual/sdk-manual.html#sdk-locating-pre-built-sdk-installers)"
-section in the Yocto Project documentation.
-
-## Building an SDK Installer ##
-
-If you cannot find a pre-built SDK installer for your hardware, you need to build one.
-In this case, use BitBake in a similar manner used to build the image.
-See the
-"[Building an image](./app-workflow-image.html#building-an-image)"
-section for information on building an image with BitBake.
-
-The only difference between building the image and the SDK installer
-is the target you give BitBake on the command line and the final location of
-the ``*.sh`` file.
-Following is the command that you use to build the SDK installer for ``agl-demo-platform``:
-
-```
-$ bitbake agl-demo-platform-crosssdk
-```
-
-The SDK installer file (``*.sh``) is placed in the build directory.
-Assuming your top-level workspace is ``~/workspace_agl``, here is an example location
-and SDK installer file:
-
-```
-~/workspace_agl/build/tmp/deploy/sdk/poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-aarch64-toolchain-8.0.0.sh
-```