blob: 765cb0e7d0ba5699fa04f6a28d8dac0d8b9b2da8 (
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
|
# We have a conf and classes directory, append to BBPATH
BBPATH .= ":${LAYERDIR}"
# We have a recipes directory, add to BBFILES
BBFILES += " \
${LAYERDIR}/recipes-*/*/*.bb \
${LAYERDIR}/recipes-*/*/*.bbappend \
"
BBFILE_COLLECTIONS += "rcar-gen3-adas"
BBFILE_PATTERN_rcar-gen3-adas := "^${LAYERDIR}/"
BBFILE_PRIORITY_rcar-gen3-adas = "7"
# Custom packages
IMAGE_INSTALL_append_rcar-gen3 = " \
kernel-modules \
kernel-devicetree \
can-utils \
libsocketcan \
iproute2 \
spidev-dbg \
e2fsprogs \
e2fsprogs-tune2fs \
ethtool \
pciutils \
usbutils \
util-linux \
mtd-utils \
capture \
v4l2-fw \
iperf \
bonnie++ \
lmbench \
strace \
libpcap \
eglibc-utils \
ldd \
procps \
can-utils libsocketcan \
rsync \
mm-init \
iio-utils \
pulseaudio-server \
pulseaudio-misc \
pulseaudio-module-cli \
pulseaudio-module-remap-sink \
pulseaudio-module-remap-source \
gstreamer1.0-plugins-good-pulse \
"
# Radio packages
IMAGE_INSTALL_append_rcar-gen3 += " \
si-tools \
linux-firmware-wl18xx \
wireless-tools \
ti-bt \
ti-bt-firmware \
bluez5 \
bluez5-testtools \
pulseaudio-module-bluez5-device \
pulseaudio-module-bluez5-discover \
pulseaudio-module-bluetooth-discover \
pulseaudio-module-bluetooth-policy \
ofono \
"
DISTRO_FEATURES_remove="x11"
DISTRO_FEATURES_append = " surroundview "
DISTRO_FEATURES_append = " opencv-sdk "
IMAGE_INSTALL_remove = "gtk+3-demo clutter-1.0-examples"
|