[rtems commit] config: Remove CONFIGURE_FILESYSTEM_DEVFS

Sebastian Huber sebh at rtems.org
Wed Apr 1 07:05:47 UTC 2020


Module:    rtems
Branch:    master
Commit:    7cec2590d2e872b306b7fdbed9b95616cb11ab36
Changeset: http://git.rtems.org/rtems/commit/?id=7cec2590d2e872b306b7fdbed9b95616cb11ab36

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Tue Mar 31 14:57:40 2020 +0200

config: Remove CONFIGURE_FILESYSTEM_DEVFS

This filesystem no longer exists.

Remove unused RTEMS_FILESYSTEM_TYPE_DEVFS.

Update #3894.

---

 cpukit/include/rtems/confdefs/libio.h | 9 ---------
 cpukit/include/rtems/libio.h          | 3 ---
 2 files changed, 12 deletions(-)

diff --git a/cpukit/include/rtems/confdefs/libio.h b/cpukit/include/rtems/confdefs/libio.h
index 603b288..9bac707 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 bbaae10..6e0bf8e 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,



More information about the vc mailing list