From: Mark Hatle <mark.hatle@windriver.com>
To: <openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH] local.conf.sample: Cleanup and improve
Date: Fri, 12 Aug 2011 08:49:54 -0500 [thread overview]
Message-ID: <4E452F82.7060208@windriver.com> (raw)
In-Reply-To: <1313153364.14274.486.camel@rex>
On 8/12/11 7:49 AM, Richard Purdie wrote:
> 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>
>
> diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc
> index 2ef25e4..c2fd77e 100644
> --- a/meta/conf/distro/include/default-distrovars.inc
> +++ b/meta/conf/distro/include/default-distrovars.inc
...
> +#
> +# Package Management configuration
> +#
> +# This variable lists which packaging formats to enable. Multiple package backends
> +# can be enabled at once and the first item listed in the variable will be used
> +# to generate the root filesystems.
> +# Options are:
> +# - 'package_deb' for debian style deb files
> +# - 'package_ipk' for ipk files are used by opkg (a debian style embedded package manager)
> +# - 'package_rpm' for rpm style packages
> +# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk"
> +# We default to rpm:
> +PACKAGE_CLASSES ?= "package_rpm"
While I certainly advocate package_rpm usage, should we be changing from the
default of ipk to rpm here? I'm tempted to say we need to stick w/ ipk for the
time being...
...
> +#
> +# Interactive shell configuration
> +#
> +# Under certain circumstances the system may need input from you and to do this it
> +# can launch an interactive shell. It needs to do this since the build is
> +# multithreaded and needs to be able to handle the case where more than one parallel
> +# process may require the user's attention. The default is to use xterm.
> +#
> +# Examples of the occasions this may happen are when resolving patches which cannot
> +# be applied, to use the devshell or the kernel menuconfig
> +#
> # If you do not use (or have installed) xterm you will need to
> # uncomment these variables and set them to the terminal you wish to use
> -# when resolving patches which cannot be applied
> -# Supported shell prefixes for *_TERMCMD and *_TERMCMDRUN ARE:
> +#
> +# Supported shell prefixes for *_TERMCMD and *_TERMCMDRUN are:
> # GNOME, SCREEN, XTERM and KONSOLE
> # Note: currently, Konsole support only works for KDE 3.x due to the way
> # newer Konsole versions behave
> #TERMCMD = "${XTERM_TERMCMD}"
> #TERMCMDRUN = "${XTERM_TERMCMDRUN}"
> -# Alternatively, if you prefer you can disable patch resolution:
> +# You can disable interactive patch resolution (tasks will just fail instead) with:
> #PATCHRESOLVE = "noop"
Should patch resolution be noop by default? (I suspect due to my above concern
w/ ipkg, changing the behavior now is likely a bad idea.)
...
> diff --git a/meta/conf/local.conf.sample.extended b/meta/conf/local.conf.sample.extended
> new file mode 100644
> index 0000000..a42774c
> --- /dev/null
> +++ b/meta/conf/local.conf.sample.extended
> @@ -0,0 +1,116 @@
...
> +# The following are used to control options related to debugging.
> +#
> +# Uncomment this to change the optimization to make debugging easer, at the
> +# possible cost of performance.
> +# DEBUG_BUILD = "1"
> +#
> +# Uncomment this to disable the stripping of the installed binaries
> +# INHIBIT_PACKAGE_STRIP = "1"
> +#
> +# Uncomment this to disable the split of the debug information into -dbg files
> +# INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
> +#
> +# When splitting debug information, the following controls the results of the
> +# file splitting.
> +#
> +# .debug (default):
> +# When splitting the debug information will be placed into
> +# a .debug directory in the same dirname of the binary produced:
> +# /bin/foo -> /bin/.debug/foo
> +#
> +# debug-file-directory:
> +# When splitting the debug information will be placed into
> +# a central debug-file-directory, /usr/lib/debug:
> +# /bin/foo -> /usr/lib/debug/bin/foo.debug
> +#
> +# Any source code referenced in the debug symbols will be copied
> +# and made available within the /usr/src/debug directory
May have been a bug in the original. The "Any source code ..." comment refers
to both of the above. It should likely lose two spaces in the indent...
> +#
> +#PACKAGE_DEBUG_SPLIT_STYLE = '.debug'
> +# PACKAGE_DEBUG_SPLIT_STYLE = 'debug-file-directory'
> +
--Mark
next prev parent reply other threads:[~2011-08-12 13:54 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-12 12:49 [PATCH] local.conf.sample: Cleanup and improve Richard Purdie
2011-08-12 13:49 ` Mark Hatle [this message]
2011-08-12 14:33 ` Richard Purdie
2011-08-12 14:35 ` Phil Blundell
2011-08-12 15:09 ` Mark Hatle
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E452F82.7060208@windriver.com \
--to=mark.hatle@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox