diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2014-07-11 15:51:27 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-16 10:06:44 +0100 |
commit | 136137ec1c124aee89d2120abded60a5cf0562b0 (patch) | |
tree | db4b1b209ed9bc29345477fb2e66cf0dda234cc1 /scripts/wic | |
parent | fa108caaa53878152e4856d32ce1ab7fe3802287 (diff) | |
download | openembedded-core-136137ec1c124aee89d2120abded60a5cf0562b0.tar.gz openembedded-core-136137ec1c124aee89d2120abded60a5cf0562b0.tar.bz2 openembedded-core-136137ec1c124aee89d2120abded60a5cf0562b0.zip |
wic: Add kickstart reference to help system
Add a 'wic kickstart' help section to make it easy for users to access
the kickstart reference without having to go to an external website.
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 | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/scripts/wic b/scripts/wic index 5453750703..15cc9b31ef 100755 --- a/scripts/wic +++ b/scripts/wic @@ -240,18 +240,21 @@ wic_help_topic_usage = """ """ subcommands = { - "create": [wic_create_subcommand, - wic_create_usage, - wic_create_help], - "list": [wic_list_subcommand, - wic_list_usage, - wic_list_help], - "plugins": [wic_help_topic_subcommand, - wic_help_topic_usage, - wic_plugins_help], - "overview": [wic_help_topic_subcommand, - wic_help_topic_usage, - wic_overview_help], + "create": [wic_create_subcommand, + wic_create_usage, + wic_create_help], + "list": [wic_list_subcommand, + wic_list_usage, + wic_list_help], + "plugins": [wic_help_topic_subcommand, + wic_help_topic_usage, + wic_plugins_help], + "overview": [wic_help_topic_subcommand, + wic_help_topic_usage, + wic_overview_help], + "kickstart": [wic_help_topic_subcommand, + wic_help_topic_usage, + wic_kickstart_help], } |