diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-07-31 15:01:52 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-08-09 01:06:34 +0200 |
commit | cc9f607beb49d4d3556c326efb83a0a51784e484 (patch) | |
tree | d6cf025dc0c2ffa5c9a3276d6348dfa2c59c9a71 /common/cmd_cramfs.c | |
parent | 0aef7bc71971266aa60ee17aa75add432dd4ca48 (diff) | |
download | u-boot-imx-cc9f607beb49d4d3556c326efb83a0a51784e484.zip u-boot-imx-cc9f607beb49d4d3556c326efb83a0a51784e484.tar.gz u-boot-imx-cc9f607beb49d4d3556c326efb83a0a51784e484.tar.bz2 |
various cmd_* files: remove the command name from the help message
removed the command name from the help message as it is already printed.
for cmd_mmc also rewrote the message a little bit
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'common/cmd_cramfs.c')
-rw-r--r-- | common/cmd_cramfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_cramfs.c b/common/cmd_cramfs.c index ab10450..8c86dc5 100644 --- a/common/cmd_cramfs.c +++ b/common/cmd_cramfs.c @@ -199,14 +199,14 @@ int do_cramfs_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) /***************************************************/ U_BOOT_CMD( cramfsload, 3, 0, do_cramfs_load, - "cramfsload\t- load binary file from a filesystem image", + "load binary file from a filesystem image", "[ off ] [ filename ]\n" " - load binary file from address 'cramfsaddr'\n" " with offset 'off'\n" ); U_BOOT_CMD( cramfsls, 2, 1, do_cramfs_ls, - "cramfsls\t- list files in a directory (default /)", + "list files in a directory (default /)", "[ directory ]\n" " - list files in a directory.\n" ); |