summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems-rfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/rtems-rfs.h')
-rw-r--r--cpukit/include/rtems/rtems-rfs.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/cpukit/include/rtems/rtems-rfs.h b/cpukit/include/rtems/rtems-rfs.h
new file mode 100644
index 0000000000..958f9a636b
--- /dev/null
+++ b/cpukit/include/rtems/rtems-rfs.h
@@ -0,0 +1,38 @@
+/**
+ * @file
+ *
+ * @brief RFS File system Initialization
+ * @ingroup rtems_rfs
+ *
+ * RTEMS File System
+ *
+ */
+
+/*
+ * COPYRIGHT (c) 2010 Chris Johns <chrisj@rtems.org>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#if !defined(RTEMS_RFS_DEFINED)
+#define RTEMS_RFS_DEFINED
+
+#include <rtems.h>
+#include <rtems/fs.h>
+
+/**
+ * @defgroup rtems_rfs RTEMS File System Group Management
+ *
+ * @ingroup FileSystemTypesAndMount
+ */
+/**@{*/
+
+/**
+ * Initialise the RFS File system.
+ */
+int rtems_rfs_rtems_initialise (rtems_filesystem_mount_table_entry_t *mt_entry, const void *data);
+
+/**@}*/
+#endif