diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2016-09-21 13:50:58 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-28 15:02:32 +0100 |
commit | 89621b137eba2b0678eff5abf4ee57134946d3ef (patch) | |
tree | 560821b869a31aaee95dac217865b16508a712c1 /documentation/ref-manual/usingpoky.xml | |
parent | 959a0620961d5404f826d3545109bb08057fe391 (diff) | |
download | poky-89621b137eba2b0678eff5abf4ee57134946d3ef.tar.gz |
ref-manual: Updated "Viewing Variable Values" section.
Fixes [YOCTO #10292]
I added an additional paragraph at the end of the section that
provided more detail on what the bitbake -e and bitbake -e recipe
commands provide in the way output.
(From yocto-docs rev: 1dcdb6781105f046328271e2b4ba7d875b222dcf)
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/usingpoky.xml')
-rw-r--r-- | documentation/ref-manual/usingpoky.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/documentation/ref-manual/usingpoky.xml b/documentation/ref-manual/usingpoky.xml index b63e031425..75ee86f4f6 100644 --- a/documentation/ref-manual/usingpoky.xml +++ b/documentation/ref-manual/usingpoky.xml | |||
@@ -246,6 +246,38 @@ | |||
246 | export CC="i586-poky-linux-gcc -m32 -march=i586 --sysroot=/home/ulf/poky/build/tmp/sysroots/qemux86" | 246 | export CC="i586-poky-linux-gcc -m32 -march=i586 --sysroot=/home/ulf/poky/build/tmp/sysroots/qemux86" |
247 | </literallayout> | 247 | </literallayout> |
248 | </para> | 248 | </para> |
249 | |||
250 | <para> | ||
251 | In addition to variable values, the output of the | ||
252 | <filename>bitbake -e</filename> and | ||
253 | <filename>bitbake -e</filename> <replaceable>recipe</replaceable> | ||
254 | commands includes the following information: | ||
255 | <itemizedlist> | ||
256 | <listitem><para> | ||
257 | The output starts with a tree listing all configuration | ||
258 | files and classes included globally, recursively listing | ||
259 | the files they include or inherit in turn. | ||
260 | Much of the behavior of the OpenEmbedded build system | ||
261 | (including the behavior of the | ||
262 | <link linkend='normal-recipe-build-tasks'>normal recipe build tasks</link>) | ||
263 | is implemented in the | ||
264 | <link linkend='ref-classes-base'><filename>base</filename></link> | ||
265 | class and the classes it inherits, rather than being built | ||
266 | into BitBake itself. | ||
267 | </para></listitem> | ||
268 | <listitem><para> | ||
269 | After the variable values, all functions appear in the | ||
270 | output. | ||
271 | For shell functions, variables referenced within the | ||
272 | function body are expanded. | ||
273 | If a function has been modified using overrides or | ||
274 | using override-style operators like | ||
275 | <filename>_append</filename> and | ||
276 | <filename>_prepend</filename>, then the final assembled | ||
277 | function body appears in the output. | ||
278 | </para></listitem> | ||
279 | </itemizedlist> | ||
280 | </para> | ||
249 | </section> | 281 | </section> |
250 | 282 | ||
251 | <section id='viewing-package-information-with-oe-pkgdata-util'> | 283 | <section id='viewing-package-information-with-oe-pkgdata-util'> |