aboutsummaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-06 17:48:40 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-06 18:07:56 +0000
commitdf76a64d951318db0a608c8bfca8407cded1276a (patch)
tree7ced75bb10729e96a22c8b5f8131191083e30068 /settings.py
parent445b17d3cf62a6c5b212544cd14fd4beb86ce5c8 (diff)
downloadopenembedded-core-contrib-df76a64d951318db0a608c8bfca8407cded1276a.tar.gz
update.py: avoid writing bitbake.lock/cache to current directory
Create a temporary directory for these files. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/settings.py b/settings.py
index 234388578d..298cde659f 100644
--- a/settings.py
+++ b/settings.py
@@ -176,6 +176,9 @@ LOGIN_REDIRECT_URL = '/layerindex'
# Full path to directory where layers should be fetched into by the update script
LAYER_FETCH_DIR = ""
+# Base temporary directory in which to create a directory in which to run BitBake
+TEMP_BASE_DIR = "/tmp"
+
# Fetch URL of the BitBake repository for the update script
BITBAKE_REPO_URL = "git://git.openembedded.org/bitbake"