Fixing broken links and formatting in App Framework page
[AGL/documentation.git] / docs / 2_Hardware_Support / 2_Supported_Hardware_Images.md
1 ---
2 title: Supported Hardware Images
3 ---
4
5
6
7 ### Supported Hardware Images
8
9 AGL supports a variety of interfaces, each requiring unique setup configuration.
10
11 #### 1. In-Vehicle Infotainment (IVI)
12
13 **Supported boards** :
14
15 AGL Reference Boards [QEMU, RCar Gen 3, Raspberry Pi 4](./Overview.md), & agl-refhw
16
17 Community supported Boards [BBE, i. MX 6, i. MX 8](./Overview.md)
18
19 * Qt Based :
20
21     * Setting up flags at `aglsetup` script :
22
23         ```sh
24         $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo
25
26         #To enable Developer Options
27         $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo agl-devel
28         ```
29
30     * Building target image :
31
32         ```sh
33         $ time bitbake agl-demo-platform
34         ```
35
36 * HTML5 Based :
37
38     * Setting up flags at `aglsetup` script :
39
40         ```sh
41         $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo
42
43         # To enable Developer Options
44         $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo agl-devel
45         ```
46
47     * Building target image :
48
49         ```sh
50         $ time bitbake agl-demo-platform-html5
51         ```
52
53
54 #### 2. Instrument Cluster
55
56 **Supported boards** :
57
58 AGL Reference Boards [QEMU, RCar Gen 3, & Raspberry Pi 4](./Overview.md)
59
60 * Setting up flags at `aglsetup` script :
61
62     ```sh
63     $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo
64
65     # To enable Developer Options
66     $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo agl-devel
67     ```
68
69 * Building target image :
70
71     ```sh
72     $ time bitbake agl-cluster-demo
73     ```
74
75 #### 3. Telematics
76
77 Headless demo platform for low-spec boards.
78
79 **Supported boards** :
80
81 Community supported Boards [BeagleBone](./Overview.md)
82
83
84 * Setting up flags at `aglsetup` script :
85
86     ```sh
87     $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo
88
89     # To enable Developer Options
90     $ source meta-agl/scripts/aglsetup.sh -f -m $MACHINE -b build-$MACHINE agl-demo agl-devel
91     ```
92
93 * Building target image :
94
95     ```sh
96     $ time bitbake agl-telematics-demo
97     ```