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 @@
+ BBMASK
+
+ Prevents BitBake from processing recipes and recipe append files.
+ You can use the BBMASK variable to "hide"
+ these .bb and .bbappend files.
+ BitBake ignores any recipe or recipe append files that match the expression.
+ It is as if BitBake does not see them at all.
+ Consequently, matching files are not parsed or otherwise used by
+ BitBake.
+ The value you provide is passed to python's regular expression compiler.
+ For complete syntax information, see python's documentation at
+ .
+ The expression is compared against the full paths to the files.
+ For example, the following uses a complete regular expression to tell
+ BitBake to ignore all recipe and recipe append files in the
+ .*/meta-ti/recipes-misc/ directory:
+
+ BBMASK = ".*/meta-ti/recipes-misc/"
+
+ Use the BBMASK variable from within the
+ conf/local.conf file found
+ in the Yocto Project build directory.
+
+
+
BB_NUMBER_THREADS
The maximum number of tasks BitBake should run in parallel at any one time.