diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2021-09-15 11:02:09 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-18 13:03:45 +0100 |
commit | b931182b5b6320975d655dac38e5b14cfeac70af (patch) | |
tree | 1356420dc2ced11395f6a5a287b29daa18594e6b /documentation | |
parent | d6966a39f2d3f63c7e244e2e536564c8ceb9aa17 (diff) | |
download | poky-b931182b5b6320975d655dac38e5b14cfeac70af.tar.gz |
ref-manual: remove checkpkg task
It doesn't exist any more and its functionality is now taken care
of by "devtool check-upgrade-status"
(From yocto-docs rev: 9c155e91dc57cb49b97805805e802330188a2c04)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Reviewed-by: Quentin Schulz <foss@0leil.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/ref-manual/tasks.rst | 31 | ||||
-rw-r--r-- | documentation/ref-manual/variables.rst | 4 |
2 files changed, 2 insertions, 33 deletions
diff --git a/documentation/ref-manual/tasks.rst b/documentation/ref-manual/tasks.rst index ecc701856c..4edae33392 100644 --- a/documentation/ref-manual/tasks.rst +++ b/documentation/ref-manual/tasks.rst | |||
@@ -438,37 +438,6 @@ Manually Called Tasks | |||
438 | These tasks are typically manually triggered (e.g. by using the | 438 | These tasks are typically manually triggered (e.g. by using the |
439 | ``bitbake -c`` command-line option): | 439 | ``bitbake -c`` command-line option): |
440 | 440 | ||
441 | .. _ref-tasks-checkpkg: | ||
442 | |||
443 | ``do_checkpkg`` | ||
444 | --------------- | ||
445 | |||
446 | Provides information about the recipe including its upstream version and | ||
447 | status. The upstream version and status reveals whether or not a version | ||
448 | of the recipe exists upstream and a status of not updated, updated, or | ||
449 | unknown. | ||
450 | |||
451 | To check the upstream version and status of a recipe, use the following | ||
452 | devtool commands:: | ||
453 | |||
454 | $ devtool latest-version | ||
455 | $ devtool check-upgrade-status | ||
456 | |||
457 | See the ":ref:`ref-manual/devtool-reference:\`\`devtool\`\` quick reference`" | ||
458 | chapter for more information on | ||
459 | ``devtool``. See the ":ref:`devtool-checking-on-the-upgrade-status-of-a-recipe`" | ||
460 | section for information on checking the upgrade status of a recipe. | ||
461 | |||
462 | To build the ``checkpkg`` task, use the ``bitbake`` command with the | ||
463 | "-c" option and task name:: | ||
464 | |||
465 | $ bitbake core-image-minimal -c checkpkg | ||
466 | |||
467 | By default, the results are stored in :term:`$LOG_DIR <LOG_DIR>` (e.g. | ||
468 | ``$BUILD_DIR/tmp/log``). | ||
469 | |||
470 | .. _ref-tasks-checkuri: | ||
471 | |||
472 | ``do_checkuri`` | 441 | ``do_checkuri`` |
473 | --------------- | 442 | --------------- |
474 | 443 | ||
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index 24e7772270..5c02033a54 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst | |||
@@ -8497,7 +8497,7 @@ system and gives an overview of their function and contents. | |||
8497 | 8497 | ||
8498 | :term:`UPSTREAM_CHECK_GITTAGREGEX` | 8498 | :term:`UPSTREAM_CHECK_GITTAGREGEX` |
8499 | You can perform a per-recipe check for what the latest upstream | 8499 | You can perform a per-recipe check for what the latest upstream |
8500 | source code version is by calling ``bitbake -c checkpkg`` recipe. If | 8500 | source code version is by calling ``devtool latest-version recipe``. If |
8501 | the recipe source code is provided from Git repositories, the | 8501 | the recipe source code is provided from Git repositories, the |
8502 | OpenEmbedded build system determines the latest upstream version by | 8502 | OpenEmbedded build system determines the latest upstream version by |
8503 | picking the latest tag from the list of all repository tags. | 8503 | picking the latest tag from the list of all repository tags. |
@@ -8520,7 +8520,7 @@ system and gives an overview of their function and contents. | |||
8520 | 8520 | ||
8521 | :term:`UPSTREAM_CHECK_URI` | 8521 | :term:`UPSTREAM_CHECK_URI` |
8522 | You can perform a per-recipe check for what the latest upstream | 8522 | You can perform a per-recipe check for what the latest upstream |
8523 | source code version is by calling ``bitbake -c checkpkg`` recipe. If | 8523 | source code version is by calling ``devtool latest-version recipe``. If |
8524 | the source code is provided from tarballs, the latest version is | 8524 | the source code is provided from tarballs, the latest version is |
8525 | determined by fetching the directory listing where the tarball is and | 8525 | determined by fetching the directory listing where the tarball is and |
8526 | attempting to find a later tarball. When this approach does not work, | 8526 | attempting to find a later tarball. When this approach does not work, |