diff options
author | Michael Brown <mcb30@ipxe.org> | 2011-03-04 12:14:51 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2011-03-04 12:18:51 +0000 |
commit | 7d5dcc92994dae75831453b8d7fff411f23d9126 (patch) | |
tree | 2f12b637301709393c2c0d24aca6e6a1222ce272 /src/hci/commands/digest_cmd.c | |
parent | 464cd1b3ce7e3214a3bbe5eb6f3889fa28fbb4b2 (diff) | |
download | ipxe-7d5dcc92994dae75831453b8d7fff411f23d9126.tar.gz |
[parseopt] Refer to online documentation for command help
The online documentation (e.g. http://ipxe.org/cmd/ifopen), though not
yet complete, is far more comprehensive than could be provided within
the iPXE binary. Save around 200 bytes (compressed) by removing the
command descriptions from the interactive help, and instead referring
users directly to the web page describing the relevant command.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/hci/commands/digest_cmd.c')
-rw-r--r-- | src/hci/commands/digest_cmd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/hci/commands/digest_cmd.c b/src/hci/commands/digest_cmd.c index d40e8e7d9..6ca12eff1 100644 --- a/src/hci/commands/digest_cmd.c +++ b/src/hci/commands/digest_cmd.c @@ -44,8 +44,7 @@ static struct option_descriptor digest_opts[] = {}; /** "digest" command descriptor */ static struct command_descriptor digest_cmd = COMMAND_DESC ( struct digest_options, digest_opts, 1, MAX_ARGUMENTS, - "<image> [<image>...]", - "Calculate the digest of an image" ); + "<image> [<image>...]" ); /** * The "digest" command |