blob: 548337d459156d4553aed4c7c8f390f82ec2863a (
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
|
SUMMARY = "The software for AGL telematics profile demo platform"
DESCRIPTION = "A set of packages belonging to the AGL telematics demo platform"
LICENSE = "MIT"
inherit packagegroup
PACKAGES = "\
packagegroup-agl-telematics-demo-platform \
"
ALLOW_EMPTY:${PN} = "1"
RDEPENDS:${PN} += "\
packagegroup-agl-profile-telematics \
"
AGL_APPS = " \
telematics-recorder \
"
AGL_APIS = " \
agl-service-gps \
"
RDEPENDS:${PN}:append = " \
gpsd \
sw-gpsd-udev-conf \
usb-can-udev-conf \
simple-can-simulator \
${@bb.utils.contains('DISTRO_FEATURES', 'agl-devel', 'ofono-tests gps-utils' , '', d)} \
${AGL_APPS} \
${AGL_APIS} \
"
# packagegroup-agl-core-navigation? (brings in geoclue...)
|