diff options
author | Antonin Godard <antonin.godard@bootlin.com> | 2024-10-17 15:08:30 +0200 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2024-11-09 05:53:57 -0800 |
commit | f189e96904c77c77cc87ec1a056b8f7fb8209fbf (patch) | |
tree | 3a27a819214bfefd7b4380474166897bd9acf7cb /documentation | |
parent | 987ed7b0508e258361b49bfd81093a48810f319c (diff) | |
download | poky-f189e96904c77c77cc87ec1a056b8f7fb8209fbf.tar.gz |
ref-manual: devtool-reference: refresh example outputs
Previous outputs were missing some commands and options, some others
were obsolete.
(From yocto-docs rev: a0b1cec6f572cf7edd0575c70612ee27fe1239b3)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 1c83037707b4c981a70c968ba04ded502f9bffbf)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/ref-manual/devtool-reference.rst | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/documentation/ref-manual/devtool-reference.rst b/documentation/ref-manual/devtool-reference.rst index 9319addc3c..9c36195c5a 100644 --- a/documentation/ref-manual/devtool-reference.rst +++ b/documentation/ref-manual/devtool-reference.rst | |||
@@ -24,7 +24,7 @@ The ``devtool`` command line is organized similarly to Git in that it | |||
24 | has a number of sub-commands for each function. You can run | 24 | has a number of sub-commands for each function. You can run |
25 | ``devtool --help`` to see all the commands:: | 25 | ``devtool --help`` to see all the commands:: |
26 | 26 | ||
27 | $ devtool -h | 27 | $ devtool --help |
28 | NOTE: Starting bitbake server... | 28 | NOTE: Starting bitbake server... |
29 | usage: devtool [--basepath BASEPATH] [--bbpath BBPATH] [-d] [-q] [--color COLOR] [-h] <subcommand> ... | 29 | usage: devtool [--basepath BASEPATH] [--bbpath BBPATH] [-d] [-q] [--color COLOR] [-h] <subcommand> ... |
30 | 30 | ||
@@ -50,6 +50,7 @@ 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 | ||
53 | rename Rename a recipe file in the workspace | 54 | rename Rename a recipe file in the workspace |
54 | edit-recipe Edit a recipe file | 55 | edit-recipe Edit a recipe file |
55 | find-recipe Find a recipe file | 56 | find-recipe Find a recipe file |
@@ -63,17 +64,11 @@ has a number of sub-commands for each function. You can run | |||
63 | build-image Build image including workspace recipe packages | 64 | build-image Build image including workspace recipe packages |
64 | Advanced: | 65 | Advanced: |
65 | create-workspace Set up workspace in an alternative location | 66 | create-workspace Set up workspace in an alternative location |
67 | import Import exported tar archive into workspace | ||
68 | export Export workspace into a tar archive | ||
66 | extract Extract the source for an existing recipe | 69 | extract Extract the source for an existing recipe |
67 | sync Synchronize the source tree for an existing recipe | 70 | sync Synchronize the source tree for an existing recipe |
68 | menuconfig Alter build-time configuration for a recipe | 71 | menuconfig Alter build-time configuration for a recipe |
69 | import Import exported tar archive into workspace | ||
70 | export Export workspace into a tar archive | ||
71 | other: | ||
72 | selftest-reverse Reverse value (for selftest) | ||
73 | pluginfile Print the filename of this plugin | ||
74 | bbdir Print the BBPATH directory of this plugin | ||
75 | count How many times have this plugin been registered. | ||
76 | multiloaded How many times have this plugin been initialized | ||
77 | Use devtool <subcommand> --help to get help on a specific command | 72 | Use devtool <subcommand> --help to get help on a specific command |
78 | 73 | ||
79 | As directed in the general help output, you can | 74 | As directed in the general help output, you can |
@@ -82,8 +77,8 @@ using ``--help``:: | |||
82 | 77 | ||
83 | $ devtool add --help | 78 | $ devtool add --help |
84 | NOTE: Starting bitbake server... | 79 | NOTE: Starting bitbake server... |
85 | usage: devtool add [-h] [--same-dir | --no-same-dir] [--fetch URI] [--npm-dev] [--version VERSION] [--no-git] [--srcrev SRCREV | --autorev] [--srcbranch SRCBRANCH] [--binary] [--also-native] [--src-subdir SUBDIR] [--mirrors] | 80 | usage: devtool add [-h] [--same-dir | --no-same-dir] [--fetch URI] [--npm-dev] [--no-pypi] [--version VERSION] [--no-git] [--srcrev SRCREV | --autorev] |
86 | [--provides PROVIDES] | 81 | [--srcbranch SRCBRANCH] [--binary] [--also-native] [--src-subdir SUBDIR] [--mirrors] [--provides PROVIDES] |
87 | [recipename] [srctree] [fetchuri] | 82 | [recipename] [srctree] [fetchuri] |
88 | 83 | ||
89 | Adds a new recipe to the workspace to build a specified source tree. Can optionally fetch a remote URI and unpack it to create the source tree. | 84 | Adds a new recipe to the workspace to build a specified source tree. Can optionally fetch a remote URI and unpack it to create the source tree. |
@@ -99,6 +94,7 @@ using ``--help``:: | |||
99 | --no-same-dir Force build in a separate build directory | 94 | --no-same-dir Force build in a separate build directory |
100 | --fetch URI, -f URI Fetch the specified URI and extract it to create the source tree (deprecated - pass as positional argument instead) | 95 | --fetch URI, -f URI Fetch the specified URI and extract it to create the source tree (deprecated - pass as positional argument instead) |
101 | --npm-dev For npm, also fetch devDependencies | 96 | --npm-dev For npm, also fetch devDependencies |
97 | --no-pypi Do not inherit pypi class | ||
102 | --version VERSION, -V VERSION | 98 | --version VERSION, -V VERSION |
103 | Version to use within recipe (PV) | 99 | Version to use within recipe (PV) |
104 | --no-git, -g If fetching source, do not set up source tree as a git repository | 100 | --no-git, -g If fetching source, do not set up source tree as a git repository |