Commit 852dbfdd56f68eb67d138b306a64e4de58dabb91

Authored by Mike Frysinger
Committed by Wolfgang Denk
1 parent b93b24bf76

more command usage cleanup

Fix up a few dangling commands like in "Command usage cleanup" commit.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

Showing 2 changed files with 4 additions and 4 deletions Side-by-side Diff

... ... @@ -166,7 +166,7 @@
166 166  
167 167 U_BOOT_CMD(
168 168 mmc, 6, 1, do_mmcops,
169   - "mmc - MMC sub system\n",
  169 + "MMC sub system",
170 170 "mmc read <device num> addr blk# cnt\n"
171 171 "mmc write <device num> addr blk# cnt\n"
172 172 "mmc rescan <device num>\n"
... ... @@ -118,16 +118,16 @@
118 118  
119 119 U_BOOT_CMD(
120 120 ubifsmount, 2, 0, do_ubifs_mount,
121   - "ubifsmount- mount UBIFS volume\n",
  121 + "mount UBIFS volume",
122 122 "\n");
123 123  
124 124 U_BOOT_CMD(ubifsls, 2, 0, do_ubifs_ls,
125   - "ubifsls - list files in a directory\n",
  125 + "list files in a directory",
126 126 "[directory]\n"
127 127 " - list files in a 'directory' (default '/')\n");
128 128  
129 129 U_BOOT_CMD(ubifsload, 4, 0, do_ubifs_load,
130   - "ubifsload- load file from an UBIFS filesystem\n",
  130 + "load file from an UBIFS filesystem",
131 131 "<addr> <filename> [bytes]\n"
132 132 " - load file 'filename' to address 'addr'\n");