blob: 77701bb57f1a01483e1ff2a1fbcfe148fdb100aa (
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
|
# We have a conf and classes directory, add to BBPATH
BBPATH .= ":${LAYERDIR}"
# We have recipes-* directories, add to BBFILES
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "app-framework"
BBFILE_PATTERN_app-framework = "^${LAYERDIR}/"
BBFILE_PRIORITY_app-framework = "70"
LAYERSERIES_COMPAT_app-framework = "dunfell"
# dependency: meta-oe
LAYERDEPENDS_app-framework = "openembedded-layer"
# dependency: meta-security
LAYERDEPENDS_app-framework += "security"
# AGL core layer is an optional requirement
LAYERRECOMMENDS_app-framework += "aglcore"
LAYERRECOMMENDS_app-framework += "qt5-layer"
BBFILES_DYNAMIC += " \
qt5-layer:${LAYERDIR}/dynamic-layers/meta-qt5/*/*/*.bb \
qt5-layer:${LAYERDIR}/dynamic-layers/meta-qt5/*/*/*.bbappend \
aglcore:${LAYERDIR}/dynamic-layers/meta-agl-core/*/*/*.bb \
aglcore:${LAYERDIR}/dynamic-layers/meta-agl-core/*/*/*.bbappend \
"
# bug in meta-security
BBMASK += "packagegroup-core-security-ptest\.bb"
#BBMASK += "meta-security/recipes-mac/smack/smack-test_1.0.bb
|