aboutsummaryrefslogtreecommitdiffstats
path: root/docs/1_Hardware_Support/Supported_Hardware_Images.md
diff options
context:
space:
mode:
authorVinod Ahuja <vahuja@unomaha.edu>2022-08-22 15:55:00 -0500
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2022-09-07 16:27:25 +0000
commit98dcd9b851c50f7d151b1f8a6234d6e5d43f57cb (patch)
tree1c858375fe95c341a9ef0d928e1acdf0e2f93a15 /docs/1_Hardware_Support/Supported_Hardware_Images.md
parent118753b6e28466f1b640f0770e921be8c71a72de (diff)
Updating Hardware Support Page
1. Fixing some typos 2. Adding latest snapshot 3. Adding source to tar and binary 4. Separating pages for supported hardware and software Bug-AGL: [SPEC-4470] Signed-off-by: Vinod Ahuja <vahuja@unomaha.edu> Change-Id: I00b80b0d6e8c37f853687860fc5d08d25490df0d Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/27941 Reviewed-by: Scott Murray <scott.murray@konsulko.com> 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>
Diffstat (limited to 'docs/1_Hardware_Support/Supported_Hardware_Images.md')
-rw-r--r--docs/1_Hardware_Support/Supported_Hardware_Images.md97
1 files changed, 97 insertions, 0 deletions
diff --git a/docs/1_Hardware_Support/Supported_Hardware_Images.md b/docs/1_Hardware_Support/Supported_Hardware_Images.md
new file mode 100644
index 0000000..83f3902
--- /dev/null
+++ b/docs/1_Hardware_Support/Supported_Hardware_Images.md
@@ -0,0 +1,97 @@
+---
+title: Supported Hardware Images
+---
+
+
+
+### Supported Hardware Images
+
+AGL supports a variety of interfaces, each requiring unique setup configuration.
+
+#### 1. In-Vehicle Infotainment (IVI)
+
+**Supported boards** :
+
+AGL Reference Boards [QEMU, RCar Gen 3, Raspberry Pi 4](./Overview.md), & agl-refhw
+
+Community supported Boards [BBE, i. MX 6, i. MX 8](./Overview.md)
+
+* Qt Based :
+
+ * Setting up flags at `aglsetup` script :
+
+ ```sh
+ $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo
+
+ #To enable Developer Options
+ $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo agl-devel
+ ```
+
+ * Building target image :
+
+ ```sh
+ $ time bitbake agl-demo-platform
+ ```
+
+* HTML5 Based :
+
+ * Setting up flags at `aglsetup` script :
+
+ ```sh
+ $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo
+
+ # To enable Developer Options
+ $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo agl-devel
+ ```
+
+ * Building target image :
+
+ ```sh
+ $ time bitbake agl-demo-platform-html5
+ ```
+
+
+#### 2. Instrument Cluster
+
+**Supported boards** :
+
+AGL Reference Boards [QEMU, RCar Gen 3, & Raspberry Pi 4](./Overview.md)
+
+* Setting up flags at `aglsetup` script :
+
+ ```sh
+ $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo
+
+ # To enable Developer Options
+ $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo agl-devel
+ ```
+
+* Building target image :
+
+ ```sh
+ $ time bitbake agl-cluster-demo
+ ```
+
+#### 3. Telematics
+
+Headless demo platform for low-spec boards.
+
+**Supported boards** :
+
+Community supported Boards [BeagleBone](./Overview.md)
+
+
+* Setting up flags at `aglsetup` script :
+
+ ```sh
+ $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo
+
+ # To enable Developer Options
+ $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo agl-devel
+ ```
+
+* Building target image :
+
+ ```sh
+ $ time bitbake agl-telematics-demo
+ ```