diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 12:16:39 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 12:16:39 +0000 |
commit | dc0452c6e9972bee12e3e74e9c6c80983f23ac99 (patch) | |
tree | fe58b8d412b4065ad98843b88f501558dd6f91cd /build/conf | |
parent | 440b33ae8e3d42ef375b8fb65b73c3e7d52fdba7 (diff) | |
download | openembedded-core-dc0452c6e9972bee12e3e74e9c6c80983f23ac99.tar.gz openembedded-core-dc0452c6e9972bee12e3e74e9c6c80983f23ac99.tar.bz2 openembedded-core-dc0452c6e9972bee12e3e74e9c6c80983f23ac99.zip |
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/conf')
-rwxr-xr-x | build/conf/local.conf.sample | 25 |
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" BBMASK = "" -# Uncomment this to specify where BitBake should create its temporary files. -# Note that a full build of everything in OpenEmbedded will take GigaBytes of hard -# disk space, so make sure to free enough space. The default TMPDIR is -# <build directory>/tmp -# TMPDIR = /usr/local/projects/oetmp -# Uncomment this to disable the parse cache (not recommended). -# CACHE = "" -# Uncomment this if you want BitBake to emit debugging output -# BBDEBUG = "yes" - +# The machine to target MACHINE = "c7x0" #MACHINE = "akita" #MACHINE = "spitz" @@ -30,11 +21,19 @@ MACHINE = "c7x0" DISTRO = "poky" +# DISTRO_TYPE determines the type of images that will be built +# "release" - create a streamlined and secure image +# "debug" - enable easier ssh access +# - include the devtools and testapps packages + DISTRO_TYPE = "debug" -KERNEL_VERSION = "2.6" -IMAGE_FSTYPES = "jffs2 tar" +# Uncomment this to specify where BitBake should create its temporary files. +# Note that a full build of everything in OpenEmbedded will take GigaBytes of hard +# disk space, so make sure to free enough space. The default TMPDIR is +# <build directory>/tmp +# TMPDIR = /usr/local/projects/oetmp # Uncomment these two if you want BitBake to build images useful for debugging. # DEBUG_BUILD = "1" @@ -50,6 +49,8 @@ IMAGE_FSTYPES = "jffs2 tar" # SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}" # LDFLAGS =+ "-pg" +# Uncomment this if you want BitBake to emit debugging output +# BBDEBUG = "yes" # Uncomment this if you want BitBake to emit the log if a build fails. BBINCLUDELOGS = "yes" |