summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/layer.conf10
1 files changed, 7 insertions, 3 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf
index ed50f1c509..78ceae9db6 100644
--- a/meta/conf/layer.conf
+++ b/meta/conf/layer.conf
@@ -3,9 +3,13 @@ BBPATH .= ":${LAYERDIR}"
3# We have a packages directory, add to BBFILES 3# We have a packages directory, add to BBFILES
4BBFILES += "${LAYERDIR}/recipes-*/*/*.bb" 4BBFILES += "${LAYERDIR}/recipes-*/*/*.bb"
5 5
6BBFILE_COLLECTIONS += "normal" 6BBFILE_COLLECTIONS += "core"
7BBFILE_PATTERN_normal := "^${LAYERDIR}/" 7BBFILE_PATTERN_core := "^${LAYERDIR}/"
8BBFILE_PRIORITY_normal = "5" 8BBFILE_PRIORITY_core = "5"
9
10# This should only be incremented on significant changes that will
11# cause compatibility issues with other layers
12LAYERVERSION_core = "1"
9 13
10# Set a variable to get to the top of the metadata location 14# Set a variable to get to the top of the metadata location
11COREBASE := '${@os.path.normpath("${LAYERDIR}/../")}' 15COREBASE := '${@os.path.normpath("${LAYERDIR}/../")}'