summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/shell.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-11-27 13:37:04 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-11-27 13:37:52 +0100
commit43b09a9865760ec7ae7fcd0ef75842f3a201d5a7 (patch)
tree227f6f240b1fedf6b48a92714143143b87515969 /cpukit/libmisc/shell/shell.h
parentsmptests/smpmrsp01: Use busy waits (diff)
downloadrtems-43b09a9865760ec7ae7fcd0ef75842f3a201d5a7.tar.bz2
shell: Make mv, cp and rm usable for applications
close #2030
Diffstat (limited to '')
-rw-r--r--cpukit/libmisc/shell/shell.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpukit/libmisc/shell/shell.h b/cpukit/libmisc/shell/shell.h
index 657df777e5..ea8532d332 100644
--- a/cpukit/libmisc/shell/shell.h
+++ b/cpukit/libmisc/shell/shell.h
@@ -324,6 +324,13 @@ extern rtems_status_code rtems_shell_wait_for_input(
extern int rtems_shell_main_monitor(int argc, char **argv);
+/*
+ * Provide these commands for application use, as their implementation
+ * is tedious.
+ */
+int rtems_shell_main_mv(int argc, char *argv[]);
+int rtems_shell_main_cp(int argc, char *argv[]);
+int rtems_shell_main_rm(int argc, char *argv[]);
#ifdef __cplusplus
}