diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-02-20 17:44:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-21 22:05:37 +0000 |
commit | 850642936887cff02b1f2cb2799c7dac01586bf0 (patch) | |
tree | 162d08b2df5a7af601d18fa2a68dd2e7b3774143 /meta | |
parent | 48d0b3f160625ecad0611247fa000e2eb7d15536 (diff) | |
download | poky-850642936887cff02b1f2cb2799c7dac01586bf0.tar.gz |
layer.conf: set a variable to map to the OE Layer Index name
Add a variable that allows us to map the OE-Core layer to the name that
represents it in the OpenEmbedded layer index. This will be used by
bitbake-layers layerindex-fetch so that it knows that for example
OE-Core is already fetched and included in the current configuration.
Note - it won't be required for us to go around and set this for every
layer - we can do the matching based on repo and subdirectory, but
OE-Core is somewhat special in that it does sometimes appear in
different places, for example in poky.
[YOCTO #5348]
(From OE-Core rev: d1cf0edd79ec3ba3bd17126183e4cb99aa50ffaf)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/layer.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 4fd3a16cec..e5e1f06a54 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf | |||
@@ -11,6 +11,8 @@ BBFILE_PRIORITY_core = "5" | |||
11 | # cause compatibility issues with other layers | 11 | # cause compatibility issues with other layers |
12 | LAYERVERSION_core = "4" | 12 | LAYERVERSION_core = "4" |
13 | 13 | ||
14 | BBLAYERS_LAYERINDEX_NAME_core = "openembedded-core" | ||
15 | |||
14 | # Set a variable to get to the top of the metadata location | 16 | # Set a variable to get to the top of the metadata location |
15 | COREBASE = '${@os.path.normpath("${LAYERDIR}/../")}' | 17 | COREBASE = '${@os.path.normpath("${LAYERDIR}/../")}' |
16 | 18 | ||