diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-23 12:15:52 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-23 12:15:52 +0000 |
commit | 6a9c195935a5f8c67767ab9457b7da6754f38b8e (patch) | |
tree | 66beaa10f5c7cd41ec1d76d666c3cb219c36ea60 /build/conf | |
parent | 14d1d6d8796eb3c5bf6df2b444ad8a4555a2e1ed (diff) | |
download | poky-6a9c195935a5f8c67767ab9457b7da6754f38b8e.tar.gz |
local.conf.sample: Allow environment to override MACHINE and DL_DIR
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@949 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'build/conf')
-rw-r--r-- | build/conf/local.conf.sample | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/build/conf/local.conf.sample b/build/conf/local.conf.sample index 1b8ee64c98..23e6017072 100644 --- a/build/conf/local.conf.sample +++ b/build/conf/local.conf.sample | |||
@@ -1,5 +1,5 @@ | |||
1 | # Where to cache the files OE downloads | 1 | # Where to cache the files OE downloads |
2 | DL_DIR = "${OEROOT}/sources" | 2 | DL_DIR ?= "${OEROOT}/sources" |
3 | BBFILES = "${OEROOT}/meta/packages/*/*.bb" | 3 | BBFILES = "${OEROOT}/meta/packages/*/*.bb" |
4 | 4 | ||
5 | # To enable extra packages, uncomment the following lines: | 5 | # To enable extra packages, uncomment the following lines: |
@@ -13,15 +13,15 @@ BBFILES = "${OEROOT}/meta/packages/*/*.bb" | |||
13 | BBMASK = "" | 13 | BBMASK = "" |
14 | 14 | ||
15 | # The machine to target | 15 | # The machine to target |
16 | MACHINE = "qemuarm" | 16 | MACHINE ?= "qemuarm" |
17 | 17 | ||
18 | # Other supported machines | 18 | # Other supported machines |
19 | #MACHINE = "cmx270" | 19 | #MACHINE ?= "cmx270" |
20 | #MACHINE = "qemux86" | 20 | #MACHINE ?= "qemux86" |
21 | #MACHINE = "c7x0" | 21 | #MACHINE ?= "c7x0" |
22 | #MACHINE = "akita" | 22 | #MACHINE ?= "akita" |
23 | #MACHINE = "spitz" | 23 | #MACHINE ?= "spitz" |
24 | #MACHINE = "nokia770" | 24 | #MACHINE ?= "nokia770" |
25 | 25 | ||
26 | DISTRO = "poky" | 26 | DISTRO = "poky" |
27 | 27 | ||