1
2
3
4
5
6
7
8
9 #include <linux/config.h>
10 #include <linux/fs.h>
11 #ifdef CONFIG_MINIX_FS
12 #include <linux/minix_fs.h>
13 #endif
14 #ifdef CONFIG_XIA_FS
15 #include <linux/xia_fs.h>
16 #endif
17 #ifdef CONFIG_PROC_FS
18 #include <linux/proc_fs.h>
19 #endif
20 #ifdef CONFIG_EXT2_FS
21 #include <linux/ext2_fs.h>
22 #endif
23 #ifdef CONFIG_EXT_FS
24 #include <linux/ext_fs.h>
25 #endif
26 #ifdef CONFIG_MSDOS_FS
27 #include <linux/msdos_fs.h>
28 #endif
29 #ifdef CONFIG_NFS_FS
30 #include <linux/nfs_fs.h>
31 #endif
32 #ifdef CONFIG_ISO9660_FS
33 #include <linux/iso_fs.h>
34 #endif
35
36 struct file_system_type file_systems[] = {
37 #ifdef CONFIG_MINIX_FS
38 {minix_read_super, "minix", 1},
39 #endif
40 #ifdef CONFIG_EXT_FS
41 {ext_read_super, "ext", 1},
42 #endif
43 #ifdef CONFIG_EXT2_FS
44 {ext2_read_super, "ext2", 1},
45 #endif
46 #ifdef CONFIG_XIA_FS
47 {xiafs_read_super, "xiafs", 1},
48 #endif
49 #ifdef CONFIG_MSDOS_FS
50 {msdos_read_super, "msdos", 1},
51 #endif
52 #ifdef CONFIG_PROC_FS
53 {proc_read_super, "proc", 0},
54 #endif
55 #ifdef CONFIG_NFS_FS
56 {nfs_read_super, "nfs", 0},
57 #endif
58 #ifdef CONFIG_ISO9660_FS
59 {isofs_read_super, "iso9660", 1},
60 #endif
61 {NULL, NULL, 0}
62 };