mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
since python recipes are now spun out into its own layer and there are recipes like crda which depend on M2Crypto python module, of which the recipe is now moved from meta-oe into meta-python, we need to express this change of layers otherwise if you are not using meta-python then you end up with errors e.g. Nothing PROVIDES 'python-m2crypto-native' (but meta-networking/recipes-connectivity/crda/crda_1.1.3.bb DEPENDS on or otherwise requires it). Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
21 lines
680 B
Plaintext
21 lines
680 B
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have a packages directory, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
|
|
${LAYERDIR}/recipes-*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "networking-layer"
|
|
BBFILE_PATTERN_networking-layer := "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_networking-layer = "5"
|
|
|
|
# This should only be incremented on significant changes that will
|
|
# cause compatibility issues with other layers
|
|
LAYERVERSION_networking-layer = "1"
|
|
|
|
LAYERDEPENDS_networking-layer = "core"
|
|
LAYERDEPENDS_networking-layer = "openembedded-layer"
|
|
LAYERDEPENDS_networking-layer = "meta-python"
|
|
|
|
LICENSE_PATH += "${LAYERDIR}/licenses"
|