summaryrefslogtreecommitdiffstats
path: root/docs/04_Developer_Guides
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2024-05-23 19:21:36 +0200
committerScott Murray <scott.murray@konsulko.com>2024-06-03 14:16:18 +0000
commit7e223d628d91f5b06a3c4a4c8d7ba2d2d3a65722 (patch)
treecff1d6a77436c6d645d65a2286b6dfce8cc3cf78 /docs/04_Developer_Guides
parent3f7308eded47b43d47c033d18dab77a7975c9800 (diff)
doc changes for image renaming.
Changes: - Global replace of image names with post-rework names. - .rootfs image name suffix added to locally built image filenames. - Image list updated in a couple of places to match conf-notes.txt update that has been submitted for meta-agl-core. Bug-AGL: SPEC-5138 Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: I437f1e32078972ead2d1156686c54475e87bebaf Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/29928
Diffstat (limited to 'docs/04_Developer_Guides')
-rw-r--r--docs/04_Developer_Guides/01_Setting_Up_AGL_SDK.md14
-rw-r--r--docs/04_Developer_Guides/02_AGL_Layers/03_meta_agl_demo.md2
-rw-r--r--docs/04_Developer_Guides/02_AGL_Layers/05_conf_notes.md35
-rw-r--r--docs/04_Developer_Guides/04_Creating_a_custom_recipe.md2
4 files changed, 23 insertions, 30 deletions
diff --git a/docs/04_Developer_Guides/01_Setting_Up_AGL_SDK.md b/docs/04_Developer_Guides/01_Setting_Up_AGL_SDK.md
index d3f01fb..895d025 100644
--- a/docs/04_Developer_Guides/01_Setting_Up_AGL_SDK.md
+++ b/docs/04_Developer_Guides/01_Setting_Up_AGL_SDK.md
@@ -13,21 +13,21 @@ quickstart the service and application development process.
- **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.
+ **Note:** .sh file will be with name "poky-agl-glibc-x86_64-agl-ivi-demo-qt-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.
+ **Note:** .sh file will be with name " poky-agl-glibc-x86_64-agl-ivi-demo-qt-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.
+ **Note:** .sh file will be with name " poky-agl-glibc-x86_64-agl-ivi-demo-qt-crosssdk-aarch64-qemuarm64-toolchain-$(version number).sh" where version number is regularly updated on the site.
*Henceforth,* **qemux86-64** *is used in these guides, unless specified
- otherwise. We also use the 'agl-demo-platform-crosssdk' as example.*
+ otherwise. We also use the 'agl-ivi-demo-qt-crosssdk' as example.*
2. Create application development directory and copy SDK into them :
@@ -35,7 +35,7 @@ quickstart the service and application development process.
```sh
$ mkdir ~/agl-app
- $ cp ~/Downloads/poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-*.sh ~/agl-app/
+ $ cp ~/Downloads/poky-agl-glibc-x86_64-agl-ivi-demo-qt-crosssdk-*.sh ~/agl-app/
$ cd ~/agl-app
```
@@ -45,9 +45,9 @@ quickstart the service and application development process.
```sh
- $ chmod 777 poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-*.sh
+ $ chmod 777 poky-agl-glibc-x86_64-agl-ivi-demo-qt-crosssdk-*.sh
$ mkdir agl-sdk/
- $ ./poky-agl-glibc-x86_64-agl-demo-platform-crosssdk-*.sh
+ $ ./poky-agl-glibc-x86_64-agl-ivi-demo-qt-crosssdk-*.sh
```
Select target directory for SDK : `~/agl-app/agl-sdk`
diff --git a/docs/04_Developer_Guides/02_AGL_Layers/03_meta_agl_demo.md b/docs/04_Developer_Guides/02_AGL_Layers/03_meta_agl_demo.md
index 3f73d8a..7aae87c 100644
--- a/docs/04_Developer_Guides/02_AGL_Layers/03_meta_agl_demo.md
+++ b/docs/04_Developer_Guides/02_AGL_Layers/03_meta_agl_demo.md
@@ -7,7 +7,7 @@ title: meta-agl-demo
The `meta-agl-demo` layer is the reference user interface layer for the DEMO
platform of Automotive Grade Linux (AGL).
The layer provides a reference platform and applications.
-The BitBake target name for the DEMO platform is `agl-demo-platform`, which is
+The BitBake target name for the DEMO platform is `agl-ivi-demo-qt`, which is
the full DEMO platform image.
## Layer Dependencies
diff --git a/docs/04_Developer_Guides/02_AGL_Layers/05_conf_notes.md b/docs/04_Developer_Guides/02_AGL_Layers/05_conf_notes.md
index c0595bc..d51aafd 100644
--- a/docs/04_Developer_Guides/02_AGL_Layers/05_conf_notes.md
+++ b/docs/04_Developer_Guides/02_AGL_Layers/05_conf_notes.md
@@ -1,7 +1,8 @@
---
-title: config-notes
+title: conf-notes
---
+```
Common targets are:
- meta-agl layer:
- included by default
@@ -10,33 +11,25 @@ Common targets are:
* agl-image-minimal-crosssdk (crosssdk for ^^)
* agl-image-weston (minimal filesystem with weston)
+ * agl-image-compositor (minimal filesystem with AGL compositor)
- meta-agl-demo: (IVI demo with UI)
- with 'agl-demo'
- * agl-image-ivi (base for IVI targets)
- * agl-image-ivi-crosssdk (sdk for ^^)
+ * agl-ivi-image (base for IVI targets)
+ * agl-ivi-image-crosssdk (sdk for ^^)
- * agl-image-graphical-qt5 (weston plus qt5 framework libs)
- * agl-image-graphical-qt5-crosssdk (sdk for ^^)
+ * agl-ivi-demo-qt (IVI Qt demo image)
+ * agl-ivi-demo-qt-crosssdk (sdk for ^^)
+ * agl-ivi-demo-flutter (IVI Flutter demo image)
+ * agl-ivi-demo-html5 (IVI HTML5 demo image)
- * agl-image-graphical-html5 (weston plus chromium for html5)
-
- * agl-image-cluster (minimal image with APIs for cluster)
- * agl-image-cluster-qt5 (image with QT5 and APIs for cluster)
-
- * agl-image-telematics (image with APIs for telematics)
-
- * agl-demo-platform (* default IVI demo target *)
- * agl-demo-platform-crosssdk (sdk for ^^)
-
- * agl-cluster-demo-platform (cluster demo image)
- * agl-cluster-demo-platform-crosssdk (sdk for ^^)
- * agl-cluster-demo-qtcompositor (cluster demo using own compositor)
-
- * agl-telematics-demo-platform (telematics demo image)
- * agl-telematics-demo-platform-crosssdk (sdk for ^^)
+ * agl-cluster-demo-qt (cluster Qt demo image)
+ * agl-cluster-demo-flutter (cluster Flutter demo image)
+ * agl-telematics-demo (telematics demo image)
+ * agl-gateway-demo (gateway demo image)
+```
**Note:** For update details on this page please refer
diff --git a/docs/04_Developer_Guides/04_Creating_a_custom_recipe.md b/docs/04_Developer_Guides/04_Creating_a_custom_recipe.md
index f8650e8..9ff2da4 100644
--- a/docs/04_Developer_Guides/04_Creating_a_custom_recipe.md
+++ b/docs/04_Developer_Guides/04_Creating_a_custom_recipe.md
@@ -31,7 +31,7 @@ For adding a custom linux software/service like cannelloni you have to do the fo
```
devtool build packagename
- devtool build-image agl-demo-platform
+ devtool build-image agl-ivi-demo-qt
```
If that is working you could add it to git/gerrit. You have to add your recipe to a layer.