summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-07-21 12:16:39 +0000
committerRichard Purdie <richard@openedhand.com>2006-07-21 12:16:39 +0000
commitdc0452c6e9972bee12e3e74e9c6c80983f23ac99 (patch)
treefe58b8d412b4065ad98843b88f501558dd6f91cd /build
parent440b33ae8e3d42ef375b8fb65b73c3e7d52fdba7 (diff)
downloadpoky-dc0452c6e9972bee12e3e74e9c6c80983f23ac99.tar.gz
local.conf.sample: Update, cleanup and document a little more
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@536 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'build')
-rwxr-xr-xbuild/conf/local.conf.sample25
1 files changed, 13 insertions, 12 deletions
diff --git a/build/conf/local.conf.sample b/build/conf/local.conf.sample
index 0c9e5fa39e..b9bd62906f 100755
--- a/build/conf/local.conf.sample
+++ b/build/conf/local.conf.sample
@@ -12,16 +12,7 @@ BBFILES := "POKYROOT/meta/packages/*/*.bb"
12 12
13BBMASK = "" 13BBMASK = ""
14 14
15# Uncomment this to specify where BitBake should create its temporary files. 15# The machine to target
16# Note that a full build of everything in OpenEmbedded will take GigaBytes of hard
17# disk space, so make sure to free enough space. The default TMPDIR is
18# <build directory>/tmp
19# TMPDIR = /usr/local/projects/oetmp
20# Uncomment this to disable the parse cache (not recommended).
21# CACHE = ""
22# Uncomment this if you want BitBake to emit debugging output
23# BBDEBUG = "yes"
24
25MACHINE = "c7x0" 16MACHINE = "c7x0"
26#MACHINE = "akita" 17#MACHINE = "akita"
27#MACHINE = "spitz" 18#MACHINE = "spitz"
@@ -30,11 +21,19 @@ MACHINE = "c7x0"
30 21
31DISTRO = "poky" 22DISTRO = "poky"
32 23
24# DISTRO_TYPE determines the type of images that will be built
25# "release" - create a streamlined and secure image
26# "debug" - enable easier ssh access
27# - include the devtools and testapps packages
28
33DISTRO_TYPE = "debug" 29DISTRO_TYPE = "debug"
34KERNEL_VERSION = "2.6"
35 30
36IMAGE_FSTYPES = "jffs2 tar"
37 31
32# Uncomment this to specify where BitBake should create its temporary files.
33# Note that a full build of everything in OpenEmbedded will take GigaBytes of hard
34# disk space, so make sure to free enough space. The default TMPDIR is
35# <build directory>/tmp
36# TMPDIR = /usr/local/projects/oetmp
38 37
39# Uncomment these two if you want BitBake to build images useful for debugging. 38# Uncomment these two if you want BitBake to build images useful for debugging.
40# DEBUG_BUILD = "1" 39# DEBUG_BUILD = "1"
@@ -50,6 +49,8 @@ IMAGE_FSTYPES = "jffs2 tar"
50# SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}" 49# SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}"
51# LDFLAGS =+ "-pg" 50# LDFLAGS =+ "-pg"
52 51
52# Uncomment this if you want BitBake to emit debugging output
53# BBDEBUG = "yes"
53# Uncomment this if you want BitBake to emit the log if a build fails. 54# Uncomment this if you want BitBake to emit the log if a build fails.
54BBINCLUDELOGS = "yes" 55BBINCLUDELOGS = "yes"
55 56