diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-12 13:44:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-12 16:58:27 +0100 |
commit | a0ccb33ac5a2231c979c3369159f763dff1e0a2e (patch) | |
tree | c2a5bcaaf8f7ea151db22d260980fc069d382c8d /meta/conf/distro | |
parent | a92d56058b21913570bb17ae416c3b00afce055e (diff) | |
download | openembedded-core-a0ccb33ac5a2231c979c3369159f763dff1e0a2e.tar.gz openembedded-core-a0ccb33ac5a2231c979c3369159f763dff1e0a2e.tar.bz2 openembedded-core-a0ccb33ac5a2231c979c3369159f763dff1e0a2e.tar.xz openembedded-core-a0ccb33ac5a2231c979c3369159f763dff1e0a2e.zip |
local.conf.sample: Cleanup and improve
local.conf is the first thing anyone new to the project sees. Over time it
has built up a ton cruft and isn't even accurate in places.
This patch:
* Moves things to local.conf.sample.extended if a new user is unlikely
to need to immediately care about the options
* Reorders the file to be more intuitive to a new user
* Moves certain default values to default-distrovars.inc in cases where
most users wouldn't want to change the value
* Adds large blocks of text to explain what an option does. There have
been too many cases of a user not realising what some of these
settings do and how they can use them to their advantage (like DL_DIR
for example).
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/distro')
-rw-r--r-- | meta/conf/distro/include/default-distrovars.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc index 2ef25e412..c2fd77e23 100644 --- a/meta/conf/distro/include/default-distrovars.inc +++ b/meta/conf/distro/include/default-distrovars.inc @@ -41,3 +41,9 @@ COMMERCIAL_QT ?= "" COMMON_LICENSE_DIR ??= "${COREBASE}/meta/files/common-licenses" BB_GENERATE_MIRROR_TARBALLS ??= "0" + +NO32LIBS ??= "1" + +# Default to emitting logfiles if a build fails. +BBINCLUDELOGS ??= "yes" + |