summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cpukit/include/rtems/confdefs/libio.h9
-rw-r--r--cpukit/include/rtems/libio.h3
2 files changed, 0 insertions, 12 deletions
diff --git a/cpukit/include/rtems/confdefs/libio.h b/cpukit/include/rtems/confdefs/libio.h
index 603b2882c1..9bac7078c5 100644
--- a/cpukit/include/rtems/confdefs/libio.h
+++ b/cpukit/include/rtems/confdefs/libio.h
@@ -273,12 +273,6 @@ static const IMFS_mount_data IMFS_root_mount_data = {
&IMFS_root_mknod_controls
};
-#if defined(CONFIGURE_FILESYSTEM_DEVFS) \
- && !defined(CONFIGURE_FILESYSTEM_ENTRY_DEVFS)
- #define CONFIGURE_FILESYSTEM_ENTRY_DEVFS \
- { RTEMS_FILESYSTEM_TYPE_DEVFS, devFS_initialize }
-#endif
-
#if defined(CONFIGURE_FILESYSTEM_DOSFS) \
&& !defined(CONFIGURE_FILESYSTEM_ENTRY_DOSFS)
#define CONFIGURE_FILESYSTEM_ENTRY_DOSFS \
@@ -323,9 +317,6 @@ static const IMFS_mount_data IMFS_root_mount_data = {
const rtems_filesystem_table_t rtems_filesystem_table[] = {
{ "/", IMFS_initialize_support },
- #ifdef CONFIGURE_FILESYSTEM_ENTRY_DEVFS
- CONFIGURE_FILESYSTEM_ENTRY_DEVFS,
- #endif
#ifdef CONFIGURE_FILESYSTEM_ENTRY_DOSFS
CONFIGURE_FILESYSTEM_ENTRY_DOSFS,
#endif
diff --git a/cpukit/include/rtems/libio.h b/cpukit/include/rtems/libio.h
index bbaae10efd..6e0bf8ede5 100644
--- a/cpukit/include/rtems/libio.h
+++ b/cpukit/include/rtems/libio.h
@@ -1590,7 +1590,6 @@ extern int rtems_mkdir(const char *path, mode_t mode);
#define RTEMS_FILESYSTEM_TYPE_IMFS "imfs"
#define RTEMS_FILESYSTEM_TYPE_MINIIMFS "mimfs"
-#define RTEMS_FILESYSTEM_TYPE_DEVFS "devfs"
#define RTEMS_FILESYSTEM_TYPE_FTPFS "ftpfs"
#define RTEMS_FILESYSTEM_TYPE_TFTPFS "tftpfs"
#define RTEMS_FILESYSTEM_TYPE_NFS "nfs"
@@ -1723,7 +1722,6 @@ int unmount(
*
* To mount a standard file system instance one of the following defines should
* be used to select the file system type
- * - RTEMS_FILESYSTEM_TYPE_DEVFS,
* - RTEMS_FILESYSTEM_TYPE_DOSFS,
* - RTEMS_FILESYSTEM_TYPE_FTPFS,
* - RTEMS_FILESYSTEM_TYPE_IMFS,
@@ -1736,7 +1734,6 @@ int unmount(
* Only configured or registered file system types are available. You can add
* file system types to your application configuration with the following
* configuration options
- * - CONFIGURE_FILESYSTEM_DEVFS,
* - CONFIGURE_FILESYSTEM_DOSFS,
* - CONFIGURE_FILESYSTEM_FTPFS,
* - CONFIGURE_FILESYSTEM_IMFS,