summaryrefslogtreecommitdiffstats
path: root/build/conf/local.conf.sample
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-09-11 22:41:08 +0000
committerRichard Purdie <richard@openedhand.com>2008-09-11 22:41:08 +0000
commit96a71ae11620b26c51eec434fe1ececb4687bbaf (patch)
tree14b9ca7f861cdd0b0905dcac0edd885a2b17711d /build/conf/local.conf.sample
parentfc6f464b57037e95ba8abe7138b25b315c309a05 (diff)
downloadopenembedded-core-96a71ae11620b26c51eec434fe1ececb4687bbaf.tar.gz
local.conf.sample: Make the parallel threads documentation more visible and update with a quadcore example
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5189 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'build/conf/local.conf.sample')
-rw-r--r--build/conf/local.conf.sample44
1 files changed, 23 insertions, 21 deletions
diff --git a/build/conf/local.conf.sample b/build/conf/local.conf.sample
index 25c3c375b7..619dccabbc 100644
--- a/build/conf/local.conf.sample
+++ b/build/conf/local.conf.sample
@@ -2,22 +2,12 @@
DL_DIR ?= "${OEROOT}/sources"
BBFILES = "${OEROOT}/meta/packages/*/*.bb"
-# Poky has various extra metadata collections (openmoko, extras).
-# To enable these, uncomment all (or some of) the following lines:
-# BBFILES = "\
-# ${OEROOT}/meta/packages/*/*.bb
-# ${OEROOT}/meta-extras/packages/*/*.bb
-# ${OEROOT}/meta-openmoko/packages/*/*.bb
-# "
-# BBFILE_COLLECTIONS = "normal extras openmoko"
-# BBFILE_PATTERN_normal = "^${OEROOT}/meta/"
-# BBFILE_PATTERN_extras = "^${OEROOT}/meta-extras/"
-# BBFILE_PATTERN_openmoko = "^${OEROOT}/meta-openmoko/"
-# BBFILE_PRIORITY_normal = "5"
-# BBFILE_PRIORITY_extras = "5"
-# BBFILE_PRIORITY_openmoko = "5"
-
-BBMASK = ""
+# Uncomment and set to allow bitbake to execute multiple tasks at once.
+# For a quadcore, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would
+# be appropriate.
+# BB_NUMBER_THREADS = "4"
+# Also, make can be passed flags so it run parallel threads e.g.:
+# PARALLEL_MAKE = "-j 4"
# The machine to target
MACHINE ?= "qemuarm"
@@ -44,6 +34,23 @@ DISTRO ?= "poky"
# For bleeding edge / experimental / unstable package versions
# DISTRO ?= "poky-bleeding"
+# Poky has various extra metadata collections (openmoko, extras).
+# To enable these, uncomment all (or some of) the following lines:
+# BBFILES = "\
+# ${OEROOT}/meta/packages/*/*.bb
+# ${OEROOT}/meta-extras/packages/*/*.bb
+# ${OEROOT}/meta-openmoko/packages/*/*.bb
+# "
+# BBFILE_COLLECTIONS = "normal extras openmoko"
+# BBFILE_PATTERN_normal = "^${OEROOT}/meta/"
+# BBFILE_PATTERN_extras = "^${OEROOT}/meta-extras/"
+# BBFILE_PATTERN_openmoko = "^${OEROOT}/meta-openmoko/"
+# BBFILE_PRIORITY_normal = "5"
+# BBFILE_PRIORITY_extras = "5"
+# BBFILE_PRIORITY_openmoko = "5"
+
+BBMASK = ""
+
# EXTRA_IMAGE_FEATURES allows extra packages to be added to the generated images
# (Some of these are automatically added to certain image types)
# "dbg-pkgs" - add -dbg packages for all installed packages
@@ -93,11 +100,6 @@ PACKAGE_CLASSES ?= "package_ipk"
# <build directory>/tmp
TMPDIR = "${OEROOT}/build/tmp"
-# Uncomment and set to allow bitbake to execute multiple tasks at once.
-# Note, This option is currently experimental - YMMV.
-# BB_NUMBER_THREADS = "1"
-# Also, make can be passed flags so it run parallel threads e.g.:
-# PARALLEL_MAKE = "-j 4"
# Uncomment this if you are using the Openedhand provided qemu deb - see README
# ASSUME_PROVIDED += "qemu-native"