home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / fs / filesystems.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  1.6 KB  |  79 lines

  1. /*
  2.  *  linux/fs/filesystems.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  *
  6.  * This file is subject to the terms and conditions of the GNU General Public
  7.  * License.  See the file README.legal in the main directory of this archive
  8.  * for more details.
  9.  *
  10.  *  table of configured filesystems
  11.  */
  12.  
  13. #include <linux/config.h>
  14. #include <linux/fs.h>
  15. #ifdef CONFIG_MINIX_FS
  16. #include <linux/minix_fs.h>
  17. #endif
  18. #ifdef CONFIG_XIA_FS
  19. #include <linux/xia_fs.h>
  20. #endif
  21. #ifdef CONFIG_PROC_FS
  22. #include <linux/proc_fs.h>
  23. #endif
  24. #ifdef CONFIG_EXT2_FS
  25. #include <linux/ext2_fs.h>
  26. #endif
  27. #ifdef CONFIG_EXT_FS
  28. #include <linux/ext_fs.h>
  29. #endif
  30. #ifdef CONFIG_MSDOS_FS
  31. #include <linux/msdos_fs.h>
  32. #endif
  33. #ifdef CONFIG_NFS_FS
  34. #include <linux/nfs_fs.h>
  35. #endif
  36. #ifdef CONFIG_ISO9660_FS
  37. #include <linux/iso_fs.h>
  38. #endif
  39. #ifdef CONFIG_AFFS_FS
  40. #include <linux/affs_fs.h>
  41. #endif
  42. #ifdef CONFIG_HPFS_FS
  43. #include <linux/hpfs_fs.h>
  44. #endif
  45.  
  46. struct file_system_type file_systems[] = {
  47. #ifdef CONFIG_MINIX_FS
  48.     {minix_read_super,    "minix",    1},
  49. #endif
  50. #ifdef CONFIG_EXT_FS
  51.     {ext_read_super,    "ext",        1},
  52. #endif
  53. #ifdef CONFIG_EXT2_FS
  54.     {ext2_read_super,    "ext2",        1},
  55. #endif
  56. #ifdef CONFIG_XIA_FS
  57.     {xiafs_read_super,    "xiafs",    1},
  58. #endif
  59. #ifdef CONFIG_MSDOS_FS
  60.     {msdos_read_super,    "msdos",    1},
  61. #endif
  62. #ifdef CONFIG_PROC_FS
  63.     {proc_read_super,    "proc",        0},
  64. #endif
  65. #ifdef CONFIG_NFS_FS
  66.     {nfs_read_super,    "nfs",        0},
  67. #endif
  68. #ifdef CONFIG_ISO9660_FS
  69.     {isofs_read_super,    "iso9660",    1},
  70. #endif
  71. #ifdef CONFIG_HPFS_FS
  72.     {hpfs_read_super,    "hpfs",        1},
  73. #endif
  74. #ifdef CONFIG_AFFS_FS
  75.     {affs_read_super,    "affs",        1},
  76. #endif
  77.     {NULL,            NULL,        0}
  78. };
  79.