blob: c78c76299c5ad8919975dbfca33c6fcb812ede1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# We have a conf and classes directory, add to BBPATH
BBPATH =. "${LAYERDIR}:"
# Let us add layer-specific bbappends which are only applied when that
# layer is included in our configuration -
# e.g. only add layers if a bsp is present.
BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bbappend' % layer \
for layer in BBFILE_COLLECTIONS.split())}"
BBFILE_COLLECTIONS += "aglbsp"
BBFILE_PATTERN_aglbsp = "^${LAYERDIR}/"
BBFILE_PRIORITY_aglbsp = "7"
|