blob: 25a3795086c8d19b0e91774b2cb948913db9f410 (
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
|
SUMMARY = "Extra software and configuration for tradeshow demo with AGL IVI profile demo platform"
LICENSE = "MIT"
inherit packagegroup
PROVIDES = "${PACKAGES}"
PACKAGES = " \
packagegroup-agl-demo-preload \
"
# NOTES:
# - demo-i2x-udev-conf:
# Adds udev configuration and scripts for supporting USB attached
# I2C devices for RTC and HVAC LED support.
# - sllin-demo:
# Adds systemd unit and scripting to drive configuring sllin
# driver with lin-config utility, enabling HVAC fan control and
# steering wheel controls in the demo.
# - kuksa-dbc-feeder-sllin:
# Adds configuration and systemd unit to run a second instance of
# the DBC feeder against the sllin0 interface to connect the
# steering wheel controls into VIS.
# - simple-can-simulator:
# CAN message simulator for vehicle and engine speed message
# generation, with some support for the cruise control events from
# the steering wheel used in the demo setup.
#
RDEPENDS:${PN} = "\
packagegroup-agl-demo-platform \
demo-i2c-udev-conf \
sllin-demo \
kuksa-dbc-feeder-sllin \
simple-can-simulator \
"
|