17 lines
552 B
Plaintext
17 lines
552 B
Plaintext
# 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 += "meta-nwl-distro"
|
|
BBFILE_PATTERN_meta-nwl-distro = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_meta-nwl-distro = "6"
|
|
|
|
LAYERDEPENDS_meta-nwl-distro = "core"
|
|
LAYERSERIES_COMPAT_meta-nwl-distro = "kirkstone"
|
|
|
|
# Set a variable to get to the top of the metadata location
|
|
NWL_ROOT = '${@os.path.normpath("${LAYERDIR}/../../")}'
|