blob: dbdd465a7ee8e908df3913470e960bdc4c8fc58a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
SUMMARY = "The software for DEMO platform of AGL IVI profile"
DESCRIPTION = "A set of packages belong to AGL Demo Platform"
LICENSE = "MIT"
inherit packagegroup
PACKAGES = "\
packagegroup-agl-demo-platform \
"
ALLOW_EMPTY_${PN} = "1"
RDEPENDS_${PN} += "\
packagegroup-agl-image-ivi \
"
RDEPENDS_${PN} += "\
packagegroup-agl-demo \
"
MOST_DRIVERS = " "
MOST_DRIVERS_append = " \
mocca-usb \
most \
"
# Don't add MOST support when building for Porter
MOST_DRIVERS_remove_porter = "most"
# HVAC dependencies depend on drivers above
MOST_HVAC = " "
MOST_HVAC_append = " \
${MOST_DRIVERS} \
unicens-config \
agl-service-unicens \
"
# can-lin is a binary and only for porter :(
MOST_HVAC_append_porter = " \
can-lin \
"
# mapviewer and mapviewer-demo requires AGL CES2017 demo mock-up
MAPVIEWER = "${@bb.utils.contains("DISTRO_FEATURES", "agl-mapviewer-demo", " mapviewer mapviewer-demo", "",d)}"
AGL_APPS = " \
dashboard \
hvac \
mediaplayer \
mixer \
virtual/navigation \
phone \
poiapp \
radio \
settings \
high-level-viwi-service \
agl-service-signal-composer \
low-can-demo \
"
AGL_APIS = " \
libnaviapi-agl \
"
RDEPENDS_${PN}_append = " \
qtquickcontrols2-agl \
qtquickcontrols2-agl-style \
linux-firmware-ralink \
${MAPVIEWER} \
${MOST_HVAC} \
${AGL_APPS} \
${AGL_APIS} \
"
|