generated from timoschneider/yocto-template
17 lines
417 B
Plaintext
17 lines
417 B
Plaintext
# Add layer to BitBake search path
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# Where recipes live
|
|
BBFILES += "\
|
|
${LAYERDIR}/recipes-*/*/*.bb \
|
|
${LAYERDIR}/recipes-*/*/*.bbappend \
|
|
"
|
|
|
|
# Layer identification (REQUIRED)
|
|
BBFILE_COLLECTIONS += "devdistro"
|
|
BBFILE_PATTERN_devdistro = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_devdistro = "8"
|
|
|
|
# Yocto release compatibility (REQUIRED, else warning)
|
|
LAYERSERIES_COMPAT_devdistro = "scarthgap"
|