diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2014-07-10 20:50:31 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-16 10:20:48 +0100 |
commit | d8b65a55d204763d67cb8bff8fd449ea2323a856 (patch) | |
tree | e12e2813540d06509fa7008bcc3dce60af72f318 /scripts/wic | |
parent | 83e5c09d2fa9209e11b312126571a6653c330eea (diff) | |
download | poky-d8b65a55d204763d67cb8bff8fd449ea2323a856.tar.gz |
wic: Add wic overview to help system
Add a general overview of wic to the help system as 'wic overview',
along with some introductory examples.
(From OE-Core rev: fa108caaa53878152e4856d32ce1ab7fe3802287)
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>
Diffstat (limited to 'scripts/wic')
-rwxr-xr-x | scripts/wic | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/scripts/wic b/scripts/wic index ac3ed160d9..5453750703 100755 --- a/scripts/wic +++ b/scripts/wic | |||
@@ -240,15 +240,18 @@ wic_help_topic_usage = """ | |||
240 | """ | 240 | """ |
241 | 241 | ||
242 | subcommands = { | 242 | subcommands = { |
243 | "create": [wic_create_subcommand, | 243 | "create": [wic_create_subcommand, |
244 | wic_create_usage, | 244 | wic_create_usage, |
245 | wic_create_help], | 245 | wic_create_help], |
246 | "list": [wic_list_subcommand, | 246 | "list": [wic_list_subcommand, |
247 | wic_list_usage, | 247 | wic_list_usage, |
248 | wic_list_help], | 248 | wic_list_help], |
249 | "plugins": [wic_help_topic_subcommand, | 249 | "plugins": [wic_help_topic_subcommand, |
250 | wic_help_topic_usage, | 250 | wic_help_topic_usage, |
251 | wic_plugins_help], | 251 | wic_plugins_help], |
252 | "overview": [wic_help_topic_subcommand, | ||
253 | wic_help_topic_usage, | ||
254 | wic_overview_help], | ||
252 | } | 255 | } |
253 | 256 | ||
254 | 257 | ||