blob: 6bbd590cb3971f436a71f296ea65ac34cf1ba627 (
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
78
79
80
81
82
83
|
# 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 \
pulseaudio-module-loopback \
gstreamer1.0-plugins-good-pulse \
gdbserver \
most-tools \
perf \
dropbear \
opkg \
"
# 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 \
ofono-tests \
"
DISTRO_FEATURES_remove="x11"
DISTRO_FEATURES_append = " surroundview "
DISTRO_FEATURES_append = " opencv-sdk "
DISTRO_FEATURES_append = " bluetooth"
IMAGE_INSTALL_remove = "gtk+3-demo clutter-1.0-examples"
EXTRA_IMAGE_FEATURES_append_rcar-gen3 = " eclipse-debug"
PREFERRED_VERSION_opencv = "2.4%"
|