summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/conf/local.conf.sample10
-rw-r--r--meta/conf/bitbake.conf4
2 files changed, 8 insertions, 6 deletions
diff --git a/build/conf/local.conf.sample b/build/conf/local.conf.sample
index e58c476a7d..32bd409ecc 100644
--- a/build/conf/local.conf.sample
+++ b/build/conf/local.conf.sample
@@ -1,10 +1,12 @@
1# CONF_VERSION is increased each time build/conf/ changes incompatibly 1# CONF_VERSION is increased each time build/conf/ changes incompatibly
2CONF_VERSION = "1" 2CONF_VERSION = "1"
3 3
4# Where to cache the files Poky downloads 4# Uncomment and change to cache the files Poky downloads in an alternative
5DL_DIR ?= "${OEROOT}/sources" 5# location, default it ${TOPDIR}/sources
6# Where to cache Poky's built staging output 6#DL_DIR ?= "${TOPDIR}/sources"
7PSTAGE_DIR ?= "${OEROOT}/pstage" 7# Uncomment and change to cache Poky's built staging output in an alternative
8# location, default ${TOPDIR}/pstage
9#PSTAGE_DIR ?= "${TOPDIR}/pstage"
8 10
9# Uncomment and set to allow bitbake to execute multiple tasks at once. 11# Uncomment and set to allow bitbake to execute multiple tasks at once.
10# For a quadcore, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would 12# For a quadcore, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index ab91b932c4..daf978025c 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -626,8 +626,8 @@ require conf/abi_version.conf
626# Weak variables (usually to retain backwards compatibility) 626# Weak variables (usually to retain backwards compatibility)
627################################################################## 627##################################################################
628 628
629DL_DIR ?= "${TMPDIR}/downloads" 629DL_DIR ?= "${TOPDIR}/downloads"
630PSTAGE_DIR ?= "${TMPDIR}/pstage" 630PSTAGE_DIR ?= "${TOPDIR}/pstage"
631IMAGE_FSTYPES ?= "tar.gz" 631IMAGE_FSTYPES ?= "tar.gz"
632PCMCIA_MANAGER ?= "pcmcia-cs" 632PCMCIA_MANAGER ?= "pcmcia-cs"
633DEFAULT_TASK_PROVIDER ?= "task-base" 633DEFAULT_TASK_PROVIDER ?= "task-base"