diff options
author | Koen Kooi <koen@openembedded.org> | 2005-09-11 14:32:01 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-11 14:32:01 +0000 |
commit | bdd51d47eb683f8bceb61ce03ece89eb509bfd4f (patch) | |
tree | 8fbefe227ad3039538e48e543af3bfbeb724c051 /conf | |
parent | 92c55d15f42c1ac7fffe9aab73291a9a1d93987c (diff) |
conf/local.conf.sample: add a note on DISTRO and INHIBIT_PACKAGE_STRIP
local.conf.sample contained a wrong default which was masked by
http://bugs.openembedded.org/show_bug.cgi?id=319
Diffstat (limited to 'conf')
-rw-r--r-- | conf/local.conf.sample | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/conf/local.conf.sample b/conf/local.conf.sample index 7a7afb4277..7194eaf29f 100644 --- a/conf/local.conf.sample +++ b/conf/local.conf.sample @@ -71,7 +71,8 @@ PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross" # Uncomment this to select a distribution policy. See the conf directory # for distributions currently known to OpenEmbedded. -# DISTRO = "familiar" +# Stay away from unversioned distros unless you really know what you are doing +# DISTRO = "familiar-0.8.3" # Uncomment this to select a particular kernel version if supported by # your MACHINE setting. Currently only supported on Zaurus Clamshells. @@ -82,7 +83,7 @@ PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross" # INHERIT = "package_ipk" # INHERIT = "package_tar" -# Add the required image file system types below. Valid are jffs2, tar, cramfs +# Add the required image file system types below. Valid are jffs2, tar, cramfs and ext2 IMAGE_FSTYPES = "jffs2 tar" # Uncomment this to disable the parse cache (not recommended). @@ -91,7 +92,8 @@ IMAGE_FSTYPES = "jffs2 tar" # Uncomment this if you want BitBake to emit debugging output # BBDEBUG = "yes" -# Uncomment these two if you want BitBake to build images useful for debugging. +# Uncomment these two if you want BitBake to build images useful for debugging. +# Note that INHIBIT_PACKAGE_STRIP needs a package format to be defined # DEBUG_BUILD = "1" # INHIBIT_PACKAGE_STRIP = "1" |