mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 20:27:58 +02:00
This marks the layers as compatible with honister now they use the new override syntax. (From meta-yocto rev: ea637ebd5a79e5d023bbf347d633568bcb7506a2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
568 B
Plaintext
21 lines
568 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 += "yocto"
|
|
BBFILE_PATTERN_yocto = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_yocto = "5"
|
|
|
|
LAYERSERIES_COMPAT_yocto = "honister"
|
|
|
|
# This should only be incremented on significant changes that will
|
|
# cause compatibility issues with other layers
|
|
LAYERVERSION_yocto = "3"
|
|
|
|
LAYERDEPENDS_yocto = "core"
|
|
|
|
REQUIRED_POKY_BBLAYERS_CONF_VERSION = "2"
|