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 @@
+ EXTENDPE
+
+
+ Used with file and pathnames to create a prefix for a recipe's
+ version based on the recipe's
+ PE value.
+ If PE is set and greater than zero for a recipe,
+ EXTENDPE becomes that value (e.g if
+ PE is equal to "1" then EXTENDPE
+ becomes "1_").
+ If a recipe's PE is not set (the default) or is equal to
+ zero, EXTENDPE becomes "".
+ See the STAMP
+ variable for an example.
+
+
+
+
EXTRA_IMAGE_FEATURESAllows 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"
+
+ MULTIMACH_TARGET_SYS
+
+
+ Used to separate files for different machines such that you can build
+ for multiple target machines using the same output directories.
+ See the STAMP variable
+ for an example.
+
+
+
+
@@ -2290,8 +2320,19 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
STAMP
- The directory (usually TMPDIR/stamps) with timestamps of
- executed tasks.
+ Specifies the main part of the pathname and filename for stamp
+ files for a particular recipe.
+ STAMP is more than just the directory.
+
+ STAMP = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-${EXTENDPE}${PV}-${PR}"
+
+ See TMPDIR,
+ MULTIMACH_TARGET_SYS,
+ PN,
+ EXTENDPE,
+ PV, and
+ PR for related variable
+ information.