blob: 7313a95425acbc44b357457e0b04933747a725df (
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
77
|
# Base image
require recipes-ivi/images/agl-image-ivi.inc
DESCRIPTION = "AGL Demo Platform image currently contains a simple HMI and \
demos."
IMAGE_FEATURES_append = " \
"
# add packages for demo platform (include demo apps) here
IMAGE_INSTALL_append = " \
packagegroup-agl-core \
packagegroup-agl-ivi \
packagegroup-ivi-common-core \
packagegroup-agl-demo-platform \
"
# fonts
IMAGE_TTF_FONTS = " \
ttf-bitstream-vera \
ttf-dejavu-sans \
ttf-dejavu-sans-mono \
ttf-dejavu-serif \
"
# add packages for CES2017 demo
# Only for porter as these kernel module sources
# are for the 3.10.x kernel only
MOST_DRIVERS = " "
MOST_DRIVERS_append_porter = " \
aim-cdev \
aim-network \
aim-sound \
aim-v4l2 \
hdm-dim2 \
hdm-i2c \
hdm-usb \
mocca-usb \
mostcore \
"
# HVAC dependencies depend on drivers above
IMAGE_MOST_HVAC = " "
IMAGE_MOST_HVAC_append_porter = " \
${MOST_DRIVERS} \
unicens \
vod-server \
"
# can-lin is a binary and only for porter :(
IMAGE_MOST_HVAC_append_porter = " \
can-lin \
"
IMAGE_AGL_APPS = " \
hvac \
mediaplayer \
mixer \
navigation \
settings \
"
IMAGE_INSTALL_append = " \
ces2017-demo \
linux-firmware-ath9k \
linux-firmware-ralink \
can-utils \
iproute2 \
python-curses \
dhcp-client \
climatecontrolplugin \
navigation \
poiapp \
${IMAGE_MOST_HVAC} \
${IMAGE_AGL_APPS} \
${IMAGE_TTF_FONTS} \
"
|