diff options
Diffstat (limited to 'build/conf/local.conf.sample')
-rw-r--r-- | build/conf/local.conf.sample | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/build/conf/local.conf.sample b/build/conf/local.conf.sample index 619dccabbc..478dac9ad0 100644 --- a/build/conf/local.conf.sample +++ b/build/conf/local.conf.sample | |||
@@ -1,6 +1,15 @@ | |||
1 | # Where to cache the files Poky downloads | 1 | # Where to cache the files Poky downloads |
2 | DL_DIR ?= "${OEROOT}/sources" | 2 | DL_DIR ?= "${OEROOT}/sources" |
3 | BBFILES = "${OEROOT}/meta/packages/*/*.bb" | 3 | BBFILES = "\ |
4 | ${OEROOT}/meta/packages/*/*.bb \ | ||
5 | ${OEROOT}/meta-moblin/packages/*/*.bb" | ||
6 | |||
7 | BBFILE_COLLECTIONS = "normal moblin" | ||
8 | BBFILE_PATTERN_normal = "^${OEROOT}/meta/" | ||
9 | BBFILE_PATTERN_moblin = "^${OEROOT}/meta-moblin/" | ||
10 | |||
11 | BBFILE_PRIORITY_normal = "5" | ||
12 | BBFILE_PRIORITY_moblin = "5" | ||
4 | 13 | ||
5 | # Uncomment and set to allow bitbake to execute multiple tasks at once. | 14 | # Uncomment and set to allow bitbake to execute multiple tasks at once. |
6 | # For a quadcore, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would | 15 | # For a quadcore, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would |
@@ -10,11 +19,11 @@ BBFILES = "${OEROOT}/meta/packages/*/*.bb" | |||
10 | # PARALLEL_MAKE = "-j 4" | 19 | # PARALLEL_MAKE = "-j 4" |
11 | 20 | ||
12 | # The machine to target | 21 | # The machine to target |
13 | MACHINE ?= "qemuarm" | 22 | MACHINE ?= "netbook" |
14 | 23 | ||
15 | # Other supported machines | 24 | # Other supported machines |
16 | #MACHINE ?= "qemux86" | 25 | #MACHINE ?= "qemux86" |
17 | #MACHINE ?= "eee901" | 26 | #MACHINE ?= "qemuarm" |
18 | #MACHINE ?= "c7x0" | 27 | #MACHINE ?= "c7x0" |
19 | #MACHINE ?= "akita" | 28 | #MACHINE ?= "akita" |
20 | #MACHINE ?= "spitz" | 29 | #MACHINE ?= "spitz" |
@@ -37,17 +46,20 @@ DISTRO ?= "poky" | |||
37 | # Poky has various extra metadata collections (openmoko, extras). | 46 | # Poky has various extra metadata collections (openmoko, extras). |
38 | # To enable these, uncomment all (or some of) the following lines: | 47 | # To enable these, uncomment all (or some of) the following lines: |
39 | # BBFILES = "\ | 48 | # BBFILES = "\ |
40 | # ${OEROOT}/meta/packages/*/*.bb | 49 | # ${OEROOT}/meta/packages/*/*.bb \ |
41 | # ${OEROOT}/meta-extras/packages/*/*.bb | 50 | # ${OEROOT}/meta-extras/packages/*/*.bb \ |
42 | # ${OEROOT}/meta-openmoko/packages/*/*.bb | 51 | # ${OEROOT}/meta-openmoko/packages/*/*.bb \ |
52 | # ${OEROOT}/meta-moblin/packages/*/*.bb \ | ||
43 | # " | 53 | # " |
44 | # BBFILE_COLLECTIONS = "normal extras openmoko" | 54 | # BBFILE_COLLECTIONS = "normal extras openmoko moblin" |
45 | # BBFILE_PATTERN_normal = "^${OEROOT}/meta/" | 55 | # BBFILE_PATTERN_normal = "^${OEROOT}/meta/" |
46 | # BBFILE_PATTERN_extras = "^${OEROOT}/meta-extras/" | 56 | # BBFILE_PATTERN_extras = "^${OEROOT}/meta-extras/" |
47 | # BBFILE_PATTERN_openmoko = "^${OEROOT}/meta-openmoko/" | 57 | # BBFILE_PATTERN_openmoko = "^${OEROOT}/meta-openmoko/" |
58 | # BBFILE_PATTERN_moblin = "^${OEROOT}/meta-moblin/" | ||
48 | # BBFILE_PRIORITY_normal = "5" | 59 | # BBFILE_PRIORITY_normal = "5" |
49 | # BBFILE_PRIORITY_extras = "5" | 60 | # BBFILE_PRIORITY_extras = "5" |
50 | # BBFILE_PRIORITY_openmoko = "5" | 61 | # BBFILE_PRIORITY_openmoko = "5" |
62 | # BBFILE_PRIORITY_moblin = "5" | ||
51 | 63 | ||
52 | BBMASK = "" | 64 | BBMASK = "" |
53 | 65 | ||