summaryrefslogtreecommitdiffstats
path: root/documentation/poky-ref-manual
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-01-27 12:18:56 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-08 12:07:45 -0800
commit57f3951f294a7193c742458bd65ad7f5e3cee652 (patch)
tree6f3d383e9e6437ab4c92aed80549820a0db076df /documentation/poky-ref-manual
parentb94e91043d126b9e5669cef551e280efccd299ea (diff)
downloadpoky-57f3951f294a7193c742458bd65ad7f5e3cee652.tar.gz
documentation/poky-ref-manual/ref-variables.xml: new BBMASK glossary entry
Added a glossary entry for BBMASK. Fixes [YOCTO #1935] Reported by: Gary Thomas <gary@mlbassoc.com> (From yocto-docs rev: 4406a8b0b85ac15070e2ccb1c57ef9801827a7f7) 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')
-rw-r--r--documentation/poky-ref-manual/ref-variables.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/documentation/poky-ref-manual/ref-variables.xml b/documentation/poky-ref-manual/ref-variables.xml
index 0f6b60358b..1a958773b9 100644
--- a/documentation/poky-ref-manual/ref-variables.xml
+++ b/documentation/poky-ref-manual/ref-variables.xml
@@ -72,6 +72,31 @@
72 </glossdef> 72 </glossdef>
73 </glossentry> 73 </glossentry>
74 74
75 <glossentry id='var-BBMASK'><glossterm>BBMASK</glossterm>
76 <glossdef>
77 <para>Prevents BitBake from processing recipes and recipe append files.
78 You can use the <filename>BBMASK</filename> variable to "hide"
79 these <filename>.bb</filename> and <filename>.bbappend</filename> files.
80 BitBake ignores any recipe or recipe append files that match the expression.
81 It is as if BitBake does not see them at all.
82 Consequently, matching files are not parsed or otherwise used by
83 BitBake.</para>
84 <para>The value you provide is passed to python's regular expression compiler.
85 For complete syntax information, see python's documentation at
86 <ulink url='http://docs.python.org/release/2.3/lib/re-syntax.html'></ulink>.
87 The expression is compared against the full paths to the files.
88 For example, the following uses a complete regular expression to tell
89 BitBake to ignore all recipe and recipe append files in the
90 <filename>.*/meta-ti/recipes-misc/</filename> directory:
91 <literallayout class='monospaced'>
92 BBMASK = ".*/meta-ti/recipes-misc/"
93 </literallayout></para>
94 <para>Use the <filename>BBMASK</filename> variable from within the
95 <filename>conf/local.conf</filename> file found
96 in the Yocto Project build directory.</para>
97 </glossdef>
98 </glossentry>
99
75 <glossentry id='var-BB_NUMBER_THREADS'><glossterm>BB_NUMBER_THREADS</glossterm> 100 <glossentry id='var-BB_NUMBER_THREADS'><glossterm>BB_NUMBER_THREADS</glossterm>
76 <glossdef> 101 <glossdef>
77 <para>The maximum number of tasks BitBake should run in parallel at any one time. 102 <para>The maximum number of tasks BitBake should run in parallel at any one time.