summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2019-05-24 10:05:44 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-18 11:30:37 +0100
commitcd8304bfd70488dabaa2172810ca8e03ba134616 (patch)
tree499b50fdea498bd4917fc79a80acb38836fd0691 /documentation
parent4b29fd938023e7786fcbf46d741c627e60e771b9 (diff)
downloadpoky-cd8304bfd70488dabaa2172810ca8e03ba134616.tar.gz
ref-manual: Udated devtool help output examples.
Specifically missing was the "devtool check-upgrade-status" command. (From yocto-docs rev: 1b6e87598e246806af7908e7d2e17ad579868aa9) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-devtool-reference.xml70
1 files changed, 34 insertions, 36 deletions
diff --git a/documentation/ref-manual/ref-devtool-reference.xml b/documentation/ref-manual/ref-devtool-reference.xml
index b974d0f595..a7f5f8e25f 100644
--- a/documentation/ref-manual/ref-devtool-reference.xml
+++ b/documentation/ref-manual/ref-devtool-reference.xml
@@ -34,7 +34,7 @@
34 You can run <filename>devtool --help</filename> to see all 34 You can run <filename>devtool --help</filename> to see all
35 the commands: 35 the commands:
36 <literallayout class='monospaced'> 36 <literallayout class='monospaced'>
37 $ devtool --help 37 $ devtool -h
38 NOTE: Starting bitbake server... 38 NOTE: Starting bitbake server...
39 usage: devtool [--basepath BASEPATH] [--bbpath BBPATH] [-d] [-q] 39 usage: devtool [--basepath BASEPATH] [--bbpath BBPATH] [-d] [-q]
40 [--color COLOR] [-h] 40 [--color COLOR] [-h]
@@ -43,50 +43,48 @@
43 OpenEmbedded development tool 43 OpenEmbedded development tool
44 44
45 options: 45 options:
46 --basepath BASEPATH Base directory of SDK / build directory 46 --basepath BASEPATH Base directory of SDK / build directory
47 --bbpath BBPATH Explicitly specify the BBPATH, rather than getting it 47 --bbpath BBPATH Explicitly specify the BBPATH, rather than getting it
48 from the metadata 48 from the metadata
49 -d, --debug Enable debug output 49 -d, --debug Enable debug output
50 -q, --quiet Print only errors 50 -q, --quiet Print only errors
51 --color COLOR Colorize output (where COLOR is auto, always, never) 51 --color COLOR Colorize output (where COLOR is auto, always, never)
52 -h, --help show this help message and exit 52 -h, --help show this help message and exit
53 53
54 subcommands: 54 subcommands:
55 Beginning work on a recipe: 55 Beginning work on a recipe:
56 add Add a new recipe 56 add Add a new recipe
57 modify Modify the source for an existing recipe 57 modify Modify the source for an existing recipe
58 upgrade Upgrade an existing recipe 58 upgrade Upgrade an existing recipe
59 Getting information: 59 Getting information:
60 status Show workspace status 60 status Show workspace status
61 search Search available recipes 61 search Search available recipes
62 latest-version Report the latest version of an existing recipe 62 latest-version Report the latest version of an existing recipe
63 check-upgrade-status Report upgradability for multiple (or all) recipes
63 Working on a recipe in the workspace: 64 Working on a recipe in the workspace:
64 build Build a recipe 65 build Build a recipe
65 rename Rename a recipe file in the workspace 66 rename Rename a recipe file in the workspace
66 edit-recipe Edit a recipe file 67 edit-recipe Edit a recipe file
67 find-recipe Find a recipe file 68 find-recipe Find a recipe file
68 configure-help Get help on configure script options 69 configure-help Get help on configure script options
69 update-recipe Apply changes from external source tree to recipe 70 update-recipe Apply changes from external source tree to recipe
70 reset Remove a recipe from your workspace 71 reset Remove a recipe from your workspace
71 finish Finish working on a recipe in your workspace 72 finish Finish working on a recipe in your workspace
72 Testing changes on target: 73 Testing changes on target:
73 deploy-target Deploy recipe output files to live target machine 74 deploy-target Deploy recipe output files to live target machine
74 undeploy-target Undeploy recipe output files in live target machine 75 undeploy-target Undeploy recipe output files in live target machine
75 build-image Build image including workspace recipe packages 76 build-image Build image including workspace recipe packages
76 Advanced: 77 Advanced:
77 create-workspace Set up workspace in an alternative location 78 create-workspace Set up workspace in an alternative location
78 export Export workspace into a tar archive 79 export Export workspace into a tar archive
79 import Import exported tar archive into workspace 80 import Import exported tar archive into workspace
80 extract Extract the source for an existing recipe 81 extract Extract the source for an existing recipe
81 sync Synchronize the source tree for an existing recipe 82 sync Synchronize the source tree for an existing recipe
82 Use devtool &lt;subcommand&gt; --help to get help on a specific command 83 Use devtool &lt;subcommand&gt; --help to get help on a specific command
83 </literallayout> 84 </literallayout>
84 </para> 85 As directed in the general help output, you can get more syntax
85 86 on a specific command by providing the command name and using
86 <para> 87 "--help":
87 As directed in the general help output, you can get more
88 syntax on a specific command by providing the command
89 name and using <filename>--help</filename>:
90 <literallayout class='monospaced'> 88 <literallayout class='monospaced'>
91 $ devtool add --help 89 $ devtool add --help
92 NOTE: Starting bitbake server... 90 NOTE: Starting bitbake server...