From: Chong Lu Date: Fri, 20 Feb 2015 17:44:05 +0000 (+0000) Subject: bitbake.conf: Add two variables for layer index X-Git-Tag: 2015-4~320 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=ae585a7d2744222606aeb533815d22ade8e10097;p=openembedded-core.git bitbake.conf: Add two variables for layer index Add BBLAYERS_LAYERINDEX_URL variable that bitbake-layers can use to find layer index. Add BBLAYERS_FETCH_DIR variable that bitbake-layers can use to specify fetch directory. [YOCTO #5348] Signed-off-by: Chong Lu Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index b5b54b7819..10ee42ab9a 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -550,6 +550,12 @@ SELECTED_OPTIMIZATION = "${@d.getVar(['FULL_OPTIMIZATION', 'DEBUG_OPTIMIZATION'] SELECTED_OPTIMIZATION[vardeps] += "FULL_OPTIMIZATION DEBUG_OPTIMIZATION" BUILD_OPTIMIZATION = "-O2 -pipe" +################################################################## +# Settings used by bitbake-layers. +################################################################## +BBLAYERS_LAYERINDEX_URL ??= "http://layers.openembedded.org/layerindex/" +BBLAYERS_FETCH_DIR ??= "${COREBASE}" + ################################################################## # Download locations and utilities. ##################################################################