diff options
Diffstat (limited to 'documentation/ref-manual/devtool-reference.rst')
-rw-r--r-- | documentation/ref-manual/devtool-reference.rst | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/documentation/ref-manual/devtool-reference.rst b/documentation/ref-manual/devtool-reference.rst index 70b36127eb..a50789171a 100644 --- a/documentation/ref-manual/devtool-reference.rst +++ b/documentation/ref-manual/devtool-reference.rst | |||
@@ -50,7 +50,6 @@ has a number of sub-commands for each function. You can run | |||
50 | search Search available recipes | 50 | search Search available recipes |
51 | Working on a recipe in the workspace: | 51 | Working on a recipe in the workspace: |
52 | build Build a recipe | 52 | build Build a recipe |
53 | ide-sdk Setup the SDK and configure the IDE | ||
54 | rename Rename a recipe file in the workspace | 53 | rename Rename a recipe file in the workspace |
55 | edit-recipe Edit a recipe file | 54 | edit-recipe Edit a recipe file |
56 | find-recipe Find a recipe file | 55 | find-recipe Find a recipe file |
@@ -461,6 +460,20 @@ Here is an example that resets the workspace directory that contains the | |||
461 | NOTE: Leaving source tree /home/scottrif/poky/build/workspace/sources/mtr as-is; if you no longer need it then please delete it manually | 460 | NOTE: Leaving source tree /home/scottrif/poky/build/workspace/sources/mtr as-is; if you no longer need it then please delete it manually |
462 | $ | 461 | $ |
463 | 462 | ||
463 | .. _devtool-finish-working-on-a-recipe: | ||
464 | |||
465 | Finish Working on a Recipe | ||
466 | ========================== | ||
467 | |||
468 | Use the ``devtool finish`` command to push any committed changes to the | ||
469 | specified recipe in the specified layer and remove it from your workspace. | ||
470 | |||
471 | This is roughly equivalent to the ``devtool update-recipe`` command followed by | ||
472 | the ``devtool reset`` command. The changes must have been committed to the git | ||
473 | repository created by ``devtool``. Here is an example:: | ||
474 | |||
475 | $ devtool finish recipe /path/to/custom/layer | ||
476 | |||
464 | .. _devtool-building-your-recipe: | 477 | .. _devtool-building-your-recipe: |
465 | 478 | ||
466 | Building Your Recipe | 479 | Building Your Recipe |
@@ -613,3 +626,20 @@ a match. | |||
613 | 626 | ||
614 | When you use the ``devtool search`` command, you must supply a keyword. | 627 | When you use the ``devtool search`` command, you must supply a keyword. |
615 | The command uses the keyword when searching for a match. | 628 | The command uses the keyword when searching for a match. |
629 | |||
630 | Alternatively, the ``devtool find-recipe`` command can be used to search for | ||
631 | recipe files instead of recipe names. Likewise, you must supply a keyword. | ||
632 | |||
633 | .. _devtool-get-the-configure-script-help: | ||
634 | |||
635 | Get Information on Recipe Configuration Scripts | ||
636 | =============================================== | ||
637 | |||
638 | Use the ``devtool configure-help`` command to get help on the configuration | ||
639 | script options for a given recipe. You must supply the recipe name to the | ||
640 | command. For example, it shows the output of ``./configure --help`` for | ||
641 | :ref:`autotools <ref-classes-autotools>`-based recipes. | ||
642 | |||
643 | The ``configure-help`` command will also display the configuration options | ||
644 | currently in use, including the ones passed through the :term:`EXTRA_OECONF` | ||
645 | variable. | ||