mirror of
https://github.com/optim-enterprises-bv/meta-overc.git
synced 2025-12-30 10:30:47 +00:00
17 lines
640 B
Plaintext
17 lines
640 B
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have recipes-* directories, add to BBFILES
|
|
BBFILES += "${@bb.utils.contains_any('DISTRO', ['overc','poky'], '${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend', '', d)}"
|
|
|
|
BBFILE_COLLECTIONS += "overc"
|
|
BBFILE_PATTERN_overc = "${@bb.utils.contains_any('DISTRO', ['overc','poky'], '^${LAYERDIR}/', '', d)}"
|
|
BBFILE_PRIORITY_overc = "1"
|
|
|
|
# This should only be incremented on significant changes that will
|
|
# cause compatibility issues with other layers
|
|
LAYERVERSION_overc = "1"
|
|
LAYERDEPENDS_overc = "core"
|
|
LAYERSERIES_COMPAT_overc = "kirkstone"
|
|
|