diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2012-10-16 13:41:59 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-17 17:32:54 +0100 |
commit | 0497b035a2ff8e85f74b79dda9208fe36be3fcaa (patch) | |
tree | 51bc96a0302e14b159345c46856396fd29a4058a /documentation/poky-ref-manual/ref-variables.xml | |
parent | ba6aac310680d9ec197fb1db95a925f9a5874c10 (diff) | |
download | poky-0497b035a2ff8e85f74b79dda9208fe36be3fcaa.tar.gz |
documentation: poky-ref-manual - Added and updated variables.
Fixes [YOCTO_#3262]
* Added correct information to the STAMP variable glossary
entry.
* Created a new variable glossary item for the
MULTIMACH_TARGET_SYS variable.
* Created a new variable glossary item for the
EXTENDPE variable.
Reported-by: Patrick Turley <patrickturley@gamestop.com>
(From yocto-docs rev: ea50e41dc71d3876dd1b00aeec663400ac4a5ced)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/poky-ref-manual/ref-variables.xml')
-rw-r--r-- | documentation/poky-ref-manual/ref-variables.xml | 45 |
1 files changed, 43 insertions, 2 deletions
diff --git a/documentation/poky-ref-manual/ref-variables.xml b/documentation/poky-ref-manual/ref-variables.xml index 331d682bf2..62c5238d50 100644 --- a/documentation/poky-ref-manual/ref-variables.xml +++ b/documentation/poky-ref-manual/ref-variables.xml | |||
@@ -592,6 +592,24 @@ | |||
592 | </glossdef> | 592 | </glossdef> |
593 | </glossentry> | 593 | </glossentry> |
594 | 594 | ||
595 | <glossentry id='var-EXTENDPE'><glossterm>EXTENDPE</glossterm> | ||
596 | <glossdef> | ||
597 | <para> | ||
598 | Used with file and pathnames to create a prefix for a recipe's | ||
599 | version based on the recipe's | ||
600 | <link linkend='var-PE'><filename>PE</filename></link> value. | ||
601 | If <filename>PE</filename> is set and greater than zero for a recipe, | ||
602 | <filename>EXTENDPE</filename> becomes that value (e.g if | ||
603 | <filename>PE</filename> is equal to "1" then <filename>EXTENDPE</filename> | ||
604 | becomes "1_"). | ||
605 | If a recipe's <filename>PE</filename> is not set (the default) or is equal to | ||
606 | zero, <filename>EXTENDPE</filename> becomes "".</para> | ||
607 | <para>See the <link linkend='var-STAMP'><filename>STAMP</filename></link> | ||
608 | variable for an example. | ||
609 | </para> | ||
610 | </glossdef> | ||
611 | </glossentry> | ||
612 | |||
595 | <glossentry id='var-EXTRA_IMAGE_FEATURES'><glossterm>EXTRA_IMAGE_FEATURES</glossterm> | 613 | <glossentry id='var-EXTRA_IMAGE_FEATURES'><glossterm>EXTRA_IMAGE_FEATURES</glossterm> |
596 | <glossdef> | 614 | <glossdef> |
597 | <para>Allows extra packages to be added to the generated images. | 615 | <para>Allows extra packages to be added to the generated images. |
@@ -1609,6 +1627,18 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
1609 | </para> | 1627 | </para> |
1610 | </glossdef> | 1628 | </glossdef> |
1611 | </glossentry> | 1629 | </glossentry> |
1630 | |||
1631 | <glossentry id='var-MULTIMACH_TARGET_SYS'><glossterm>MULTIMACH_TARGET_SYS</glossterm> | ||
1632 | <glossdef> | ||
1633 | <para> | ||
1634 | Used to separate files for different machines such that you can build | ||
1635 | for multiple target machines using the same output directories. | ||
1636 | See the <link linkend='var-STAMP'><filename>STAMP</filename></link> variable | ||
1637 | for an example. | ||
1638 | </para> | ||
1639 | </glossdef> | ||
1640 | </glossentry> | ||
1641 | |||
1612 | </glossdiv> | 1642 | </glossdiv> |
1613 | 1643 | ||
1614 | <!-- <glossdiv id='var-glossary-n'><title>N</title>--> | 1644 | <!-- <glossdiv id='var-glossary-n'><title>N</title>--> |
@@ -2290,8 +2320,19 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
2290 | <glossentry id='var-STAMP'><glossterm>STAMP</glossterm> | 2320 | <glossentry id='var-STAMP'><glossterm>STAMP</glossterm> |
2291 | <glossdef> | 2321 | <glossdef> |
2292 | <para> | 2322 | <para> |
2293 | The directory (usually <filename>TMPDIR/stamps</filename>) with timestamps of | 2323 | Specifies the main part of the pathname and filename for stamp |
2294 | executed tasks. | 2324 | files for a particular recipe. |
2325 | <filename>STAMP</filename> is more than just the directory. | ||
2326 | <literallayout class='monospaced'> | ||
2327 | STAMP = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-${EXTENDPE}${PV}-${PR}" | ||
2328 | </literallayout> | ||
2329 | See <link linkend='var-TMPDIR'><filename>TMPDIR</filename></link>, | ||
2330 | <link linkend='var-MULTIMACH_TARGET_SYS'><filename>MULTIMACH_TARGET_SYS</filename></link>, | ||
2331 | <link linkend='var-PN'><filename>PN</filename></link>, | ||
2332 | <link linkend='var-EXTENDPE'><filename>EXTENDPE</filename></link>, | ||
2333 | <link linkend='var-PV'><filename>PV</filename></link>, and | ||
2334 | <link linkend='var-PR'><filename>PR</filename></link> for related variable | ||
2335 | information. | ||
2295 | </para> | 2336 | </para> |
2296 | </glossdef> | 2337 | </glossdef> |
2297 | </glossentry> | 2338 | </glossentry> |