diff --git a/documentation/ref-manual/ref-classes.xml b/documentation/ref-manual/ref-classes.xml
index 3f387a3e1a..71df79fa62 100644
--- a/documentation/ref-manual/ref-classes.xml
+++ b/documentation/ref-manual/ref-classes.xml
@@ -714,7 +714,9 @@
provides for automatic checking for upstream recipe updates.
The class creates a comma-separated value (CSV) spreadsheet that
contains information about the recipes.
- The information provides the do_distrodata and
+ The information provides the
+ do_distrodata
+ and
do_distro_check tasks, which do upstream checking
and also verify if a package is used in multiple major distributions.
@@ -728,6 +730,13 @@
INHERIT+= "distrodata"
+
+
+ The distrodata class also provides the
+ do_checkpkg
+ task, which can be used against a simple recipe or against an
+ image to get all its recipe information.
+
diff --git a/documentation/ref-manual/ref-tasks.xml b/documentation/ref-manual/ref-tasks.xml
index b2ecc66269..c46debb55b 100644
--- a/documentation/ref-manual/ref-tasks.xml
+++ b/documentation/ref-manual/ref-tasks.xml
@@ -31,6 +31,36 @@
+
+ do_checkpkg
+
+
+ Provides information about the recipe including its upstream
+ version and status.
+ The upstream version and status reveals whether or not a version
+ of the recipe exists upstream and a status of not updated, updated,
+ or unknown.
+
+
+
+ The checkpkg task is included as part of the
+ distrodata
+ class.
+
+
+
+ To build the checkpkg task, use the
+ bitbake command with the "-c" option and
+ task name:
+
+ $ bitbake core-image-minimal -c checkpkg
+
+ By default, the results are stored in
+ $LOG_DIR
+ (e.g. $BUILD_DIR/tmp/log).
+
+
+
do_compile
@@ -87,6 +117,32 @@
+
+ do_distrodata
+
+
+ Provides information about the recipe.
+
+
+
+ The distrodata task is included as part of the
+ distrodata
+ class.
+
+
+
+ To build the distrodata task, use the
+ bitbake command with the "-c" option and
+ task name:
+
+ $ bitbake core-image-minimal -c distrodata
+
+ By default, the results are stored in
+ $LOG_DIR
+ (e.g. $BUILD_DIR/tmp/log).
+
+
+
do_fetch