summaryrefslogtreecommitdiffstats
path: root/build/conf/local.conf.sample
diff options
context:
space:
mode:
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 c8ba7553bf..4d78368511 100644
--- a/build/conf/local.conf.sample
+++ b/build/conf/local.conf.sample
@@ -2,22 +2,12 @@
2DL_DIR ?= "${OEROOT}/sources" 2DL_DIR ?= "${OEROOT}/sources"
3BBFILES = "${OEROOT}/meta/packages/*/*.bb" 3BBFILES = "${OEROOT}/meta/packages/*/*.bb"
4 4
5# Poky has various extra metadata collections (openmoko, extras). 5# Uncomment and set to allow bitbake to execute multiple tasks at once.
6# To enable these, uncomment all (or some of) the following lines: 6# For a quadcore, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would
7# BBFILES = "\ 7# be appropriate.
8# ${OEROOT}/meta/packages/*/*.bb 8# BB_NUMBER_THREADS = "4"
9# ${OEROOT}/meta-extras/packages/*/*.bb 9# Also, make can be passed flags so it run parallel threads e.g.:
10# ${OEROOT}/meta-openmoko/packages/*/*.bb 10# PARALLEL_MAKE = "-j 4"
11# "
12# BBFILE_COLLECTIONS = "normal extras openmoko"
13# BBFILE_PATTERN_normal = "^${OEROOT}/meta/"
14# BBFILE_PATTERN_extras = "^${OEROOT}/meta-extras/"
15# BBFILE_PATTERN_openmoko = "^${OEROOT}/meta-openmoko/"
16# BBFILE_PRIORITY_normal = "5"
17# BBFILE_PRIORITY_extras = "5"
18# BBFILE_PRIORITY_openmoko = "5"
19
20BBMASK = ""
21 11
22# The machine to target 12# The machine to target
23MACHINE ?= "qemuarm" 13MACHINE ?= "qemuarm"
@@ -43,6 +33,23 @@ DISTRO ?= "poky"
43# For bleeding edge / experimental / unstable package versions 33# For bleeding edge / experimental / unstable package versions
44# DISTRO ?= "poky-bleeding" 34# DISTRO ?= "poky-bleeding"
45 35
36# Poky has various extra metadata collections (openmoko, extras).
37# To enable these, uncomment all (or some of) the following lines:
38# BBFILES = "\
39# ${OEROOT}/meta/packages/*/*.bb
40# ${OEROOT}/meta-extras/packages/*/*.bb
41# ${OEROOT}/meta-openmoko/packages/*/*.bb
42# "
43# BBFILE_COLLECTIONS = "normal extras openmoko"
44# BBFILE_PATTERN_normal = "^${OEROOT}/meta/"
45# BBFILE_PATTERN_extras = "^${OEROOT}/meta-extras/"
46# BBFILE_PATTERN_openmoko = "^${OEROOT}/meta-openmoko/"
47# BBFILE_PRIORITY_normal = "5"
48# BBFILE_PRIORITY_extras = "5"
49# BBFILE_PRIORITY_openmoko = "5"
50
51BBMASK = ""
52
46# EXTRA_IMAGE_FEATURES allows extra packages to be added to the generated images 53# EXTRA_IMAGE_FEATURES allows extra packages to be added to the generated images
47# (Some of these are automatically added to certain image types) 54# (Some of these are automatically added to certain image types)
48# "dbg-pkgs" - add -dbg packages for all installed packages 55# "dbg-pkgs" - add -dbg packages for all installed packages
@@ -92,11 +99,6 @@ PACKAGE_CLASSES ?= "package_ipk"
92# <build directory>/tmp 99# <build directory>/tmp
93TMPDIR = "${OEROOT}/build/tmp" 100TMPDIR = "${OEROOT}/build/tmp"
94 101
95# Uncomment and set to allow bitbake to execute multiple tasks at once.
96# Note, This option is currently experimental - YMMV.
97# BB_NUMBER_THREADS = "1"
98# Also, make can be passed flags so it run parallel threads e.g.:
99# PARALLEL_MAKE = "-j 4"
100 102
101# Uncomment this if you are using the Openedhand provided qemu deb - see README 103# Uncomment this if you are using the Openedhand provided qemu deb - see README
102# ASSUME_PROVIDED += "qemu-native" 104# ASSUME_PROVIDED += "qemu-native"