blob: 13400ca50018079e91faf083679f7378648d5fbf (
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
|
DESCRIPTION = "Additional packages beyond console packages shared by TI SDKs"
LICENSE = "MIT"
PR = "r19"
PACKAGE_ARCH = "${MACHINE_ARCH}"
inherit packagegroup
OPTEE_PKGS = " \
optee-os \
optee-client \
optee-test \
"
RDEPENDS_${PN} = "\
dbus \
expat \
glib-2.0 \
libxml2 \
libpcre \
iptables \
iperf \
arago-gpl-notice \
arago-feed-config \
nfs-utils-client \
cifs-utils \
${@base_conditional('OPTEEMACHINE', 'ti', "${OPTEE_PKGS}", "", d)} \
"
|