diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2014-07-04 19:15:27 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-10 17:38:34 +0100 |
commit | 1908751b3283d7e14d3a9f68b0926a384cafe9ca (patch) | |
tree | 4f8091935c316440114df234c802178a2a52aad2 | |
parent | 40769b7cc0cd94ce6f8ee93f01d64c76d9b8578e (diff) | |
download | poky-1908751b3283d7e14d3a9f68b0926a384cafe9ca.tar.gz |
wic: Add help text for 'wic list source-plugins'
Add both short and long text for the new 'wic list source-plugins'
command.
(From OE-Core rev: 4f20acc10b18c7353bd73f253943372dacd957ca)
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/lib/image/help.py | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/scripts/lib/image/help.py b/scripts/lib/image/help.py index cb3112cf08..6de7ab023e 100644 --- a/scripts/lib/image/help.py +++ b/scripts/lib/image/help.py | |||
@@ -199,6 +199,7 @@ wic_list_usage = """ | |||
199 | 199 | ||
200 | usage: wic list images | 200 | usage: wic list images |
201 | wic list <image> help | 201 | wic list <image> help |
202 | wic list source-plugins | ||
202 | wic list properties | 203 | wic list properties |
203 | wic list properties <wks file> | 204 | wic list properties <wks file> |
204 | wic list property <property> | 205 | wic list property <property> |
@@ -214,11 +215,14 @@ wic_list_usage = """ | |||
214 | The second form lists the detailed help information for a specific | 215 | The second form lists the detailed help information for a specific |
215 | 'canned' image. | 216 | 'canned' image. |
216 | 217 | ||
217 | The third form enumerates all the possible values that exist and can | 218 | The third form enumerates all the available --sources (source |
219 | plugins). | ||
220 | |||
221 | The fourth form enumerates all the possible values that exist and can | ||
218 | be specified in an OE kickstart (wks) file. | 222 | be specified in an OE kickstart (wks) file. |
219 | 223 | ||
220 | The fourth form enumerates all the possible options that exist for | 224 | The fifth form enumerates all the possible options that exist for the |
221 | the set of properties specified in a given OE kickstart (ks) file. | 225 | set of properties specified in a given OE kickstart (ks) file. |
222 | 226 | ||
223 | The final form enumerates all the possible values that exist and can | 227 | The final form enumerates all the possible values that exist and can |
224 | be specified for any given OE kickstart (wks) property. | 228 | be specified for any given OE kickstart (wks) property. |
@@ -234,6 +238,7 @@ NAME | |||
234 | SYNOPSIS | 238 | SYNOPSIS |
235 | wic list images | 239 | wic list images |
236 | wic list <image> help | 240 | wic list <image> help |
241 | wic list source-plugins | ||
237 | wic list properties | 242 | wic list properties |
238 | wic list properties <wks file> | 243 | wic list properties <wks file> |
239 | wic list property <property> | 244 | wic list property <property> |
@@ -255,6 +260,15 @@ DESCRIPTION | |||
255 | The second form lists the detailed help information for a specific | 260 | The second form lists the detailed help information for a specific |
256 | 'canned' image. | 261 | 'canned' image. |
257 | 262 | ||
263 | The third form enumerates all the available --sources (source | ||
264 | plugins). The contents of a given partition are driven by code | ||
265 | defined in 'source plugins'. Users specify a specific plugin via | ||
266 | the --source parameter of the partition .wks command. Normally | ||
267 | this is the 'rootfs' plugin but can be any of the more specialized | ||
268 | sources listed by the 'list source-plugins' command. Users can | ||
269 | also add their own source plugins - see 'wic help plugins' for | ||
270 | details. | ||
271 | |||
258 | The third form enumerates all the possible values that exist and | 272 | The third form enumerates all the possible values that exist and |
259 | can be specified in a OE kickstart (wks) file. The output of this | 273 | can be specified in a OE kickstart (wks) file. The output of this |
260 | can be used by the third form to print the description and | 274 | can be used by the third form to print the description and |