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:20:48 +0100 |
commit | d08c2ce0d67179cd3e37a23650c839c479d43750 (patch) | |
tree | 0ab42304493e2b63a807656157ace281a972d381 /scripts/wic | |
parent | d8b65a55d204763d67cb8bff8fd449ea2323a856 (diff) | |
download | poky-d08c2ce0d67179cd3e37a23650c839c479d43750.tar.gz |
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.
(From OE-Core rev: 136137ec1c124aee89d2120abded60a5cf0562b0)
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 = """ | |||
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, | 252 | "overview": [wic_help_topic_subcommand, |
253 | wic_help_topic_usage, | 253 | wic_help_topic_usage, |
254 | wic_overview_help], | 254 | wic_overview_help], |
255 | "kickstart": [wic_help_topic_subcommand, | ||
256 | wic_help_topic_usage, | ||
257 | wic_kickstart_help], | ||
255 | } | 258 | } |
256 | 259 | ||
257 | 260 | ||