summaryrefslogtreecommitdiff
path: root/apps/nshlib/nsh.h
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-02-19 13:14:39 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-02-19 13:14:39 -0600
commitd4352a177b3e64a6ff2b26e189211d2fd0b7b731 (patch)
tree1555f4aafbe4aece6cdf536798cb5080ac2e3df9 /apps/nshlib/nsh.h
parent6b4b9ae6991355102b30f67a12af19a926105e74 (diff)
downloadpx4-nuttx-d4352a177b3e64a6ff2b26e189211d2fd0b7b731.tar.gz
px4-nuttx-d4352a177b3e64a6ff2b26e189211d2fd0b7b731.tar.bz2
px4-nuttx-d4352a177b3e64a6ff2b26e189211d2fd0b7b731.zip
Nodes in the pseudo-filesystem can now be renamed or moved within the pseduo-filesystem
Diffstat (limited to 'apps/nshlib/nsh.h')
-rw-r--r--apps/nshlib/nsh.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/nshlib/nsh.h b/apps/nshlib/nsh.h
index 97afc430f..223799b41 100644
--- a/apps/nshlib/nsh.h
+++ b/apps/nshlib/nsh.h
@@ -720,6 +720,9 @@ void nsh_usbtrace(void);
# ifndef CONFIG_NSH_DISABLE_MKDIR
int cmd_mkdir(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv);
# endif
+# ifndef CONFIG_NSH_DISABLE_MV
+ int cmd_mv(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv);
+# endif
# ifndef CONFIG_NSH_DISABLE_RMDIR
int cmd_rmdir(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv);
# endif
@@ -752,9 +755,6 @@ void nsh_usbtrace(void);
# ifndef CONFIG_NSH_DISABLE_MKRD
int cmd_mkrd(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv);
# endif
-# ifndef CONFIG_NSH_DISABLE_MV
- int cmd_mv(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv);
-# endif
# ifndef CONFIG_NSH_DISABLE_RM
int cmd_rm(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv);
# endif