summaryrefslogtreecommitdiff
path: root/apps/nshlib/nsh_parse.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-12-05 18:12:11 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-12-05 18:12:11 -0600
commit64cabb7d0372c79075b1a50783dfb9968a2f107c (patch)
treef60638ed24b56e211864221364699399be61a70f /apps/nshlib/nsh_parse.c
parent96483c3637253cf00027a6312ba422a411f913bf (diff)
downloadnuttx-64cabb7d0372c79075b1a50783dfb9968a2f107c.tar.gz
nuttx-64cabb7d0372c79075b1a50783dfb9968a2f107c.tar.bz2
nuttx-64cabb7d0372c79075b1a50783dfb9968a2f107c.zip
NSH: Add an option to the mkfatfs command to specify FAT12, FAT16, or FAT32
Diffstat (limited to 'apps/nshlib/nsh_parse.c')
-rw-r--r--apps/nshlib/nsh_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/nshlib/nsh_parse.c b/apps/nshlib/nsh_parse.c
index a58d0b03a..0b977b836 100644
--- a/apps/nshlib/nsh_parse.c
+++ b/apps/nshlib/nsh_parse.c
@@ -299,7 +299,7 @@ static const struct cmdmap_s g_cmdmap[] =
#if !defined(CONFIG_DISABLE_MOUNTPOINT) && CONFIG_NFILE_DESCRIPTORS > 0 && defined(CONFIG_FS_FAT)
# ifndef CONFIG_NSH_DISABLE_MKFATFS
- { "mkfatfs", cmd_mkfatfs, 2, 2, "<path>" },
+ { "mkfatfs", cmd_mkfatfs, 2, 4, "[-F <fatsize>] <block-driver>" },
# endif
#endif