blob: d3f6a7c78d01dd4ba3beaa32972e4fe3e39a124a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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 \
${LAYERDIR}/recipes-*/*.bb \
${LAYERDIR}/recipes-*/*.bbappend \
"
BBFILE_COLLECTIONS += "agl-refhw-gen3"
BBFILE_PATTERN_agl-refhw-gen3 = "^${LAYERDIR}"
BBFILE_PRIORITY_agl-refhw-gen3 = "11"
LAYERDEPENDS_agl-refhw-gen3 = "core rcar-gen3"
LAYERSERIES_COMPAT_agl-refhw-gen3 = "dunfell"
|