diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2014-07-07 16:05:44 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-10 17:38:34 +0100 |
commit | d8ef35557e2ff9ac80cbfa471c675405ead9c69c (patch) | |
tree | 7813c8fecd615449a8cefcaf5effe4de7ee0c98e /scripts/wic | |
parent | f2ab61968129c6c15b0a61968a7761ccce5a469a (diff) | |
download | poky-d8ef35557e2ff9ac80cbfa471c675405ead9c69c.tar.gz |
wic: Add general 'plugins' help topic
Add a category for help topics with an initial help topic discussing
source plugins.
(From OE-Core rev: a3dbe46dd28a6fd9e6c21f6bbb6a12578df9dff3)
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 | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/scripts/wic b/scripts/wic index 00eddfd7bc..ac3ed160d9 100755 --- a/scripts/wic +++ b/scripts/wic | |||
@@ -240,12 +240,15 @@ 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, | ||
250 | wic_help_topic_usage, | ||
251 | wic_plugins_help], | ||
249 | } | 252 | } |
250 | 253 | ||
251 | 254 | ||