Import 2.4.0-test6pre6
[davej-history.git] / fs / Config.in
blob851c547265c5f5cdabc36368480910b850453d1d
2 # File system configuration
4 mainmenu_option next_comment
5 comment 'File systems'
7 bool 'Quota support' CONFIG_QUOTA
8 tristate 'Kernel automounter support' CONFIG_AUTOFS_FS
9 tristate 'Kernel automounter version 4 support (also supports v3)' CONFIG_AUTOFS4_FS
12 dep_tristate 'ADFS file system support' CONFIG_ADFS_FS $CONFIG_EXPERIMENTAL
13 dep_mbool '  ADFS write support (DANGEROUS)' CONFIG_ADFS_FS_RW $CONFIG_ADFS_FS $CONFIG_EXPERIMENTAL
15 dep_tristate 'Amiga FFS file system support (EXPERIMENTAL)' CONFIG_AFFS_FS $CONFIG_EXPERIMENTAL
17 dep_tristate 'Apple Macintosh file system support (EXPERIMENTAL)' CONFIG_HFS_FS $CONFIG_EXPERIMENTAL
19 dep_tristate 'BFS file system support (EXPERIMENTAL)' CONFIG_BFS_FS $CONFIG_EXPERIMENTAL
21 # msdos file systems
22 tristate 'DOS FAT fs support' CONFIG_FAT_FS
23 dep_tristate '  MSDOS fs support' CONFIG_MSDOS_FS $CONFIG_FAT_FS
24 dep_tristate '    UMSDOS: Unix-like file system on top of standard MSDOS fs' CONFIG_UMSDOS_FS $CONFIG_MSDOS_FS
25 dep_tristate '  VFAT (Windows-95) fs support' CONFIG_VFAT_FS $CONFIG_FAT_FS
26 dep_tristate 'EFS file system support (read only) (EXPERIMENTAL)' CONFIG_EFS_FS $CONFIG_EXPERIMENTAL
27 dep_tristate 'Journalling Flash File System (JFFS) support (EXPERIMENTAL)' CONFIG_JFFS_FS $CONFIG_EXPERIMENTAL $CONFIG_MTD
28 tristate 'Compressed ROM file system support' CONFIG_CRAMFS
29 tristate 'Simple RAM-based file system support' CONFIG_RAMFS
31 tristate 'ISO 9660 CDROM file system support' CONFIG_ISO9660_FS
32 dep_mbool '  Microsoft Joliet CDROM extensions' CONFIG_JOLIET $CONFIG_ISO9660_FS
34 tristate 'Minix fs support' CONFIG_MINIX_FS
36 tristate 'NTFS file system support (read only)' CONFIG_NTFS_FS
37 dep_mbool '  NTFS write support (DANGEROUS)' CONFIG_NTFS_RW $CONFIG_NTFS_FS $CONFIG_EXPERIMENTAL
39 tristate 'OS/2 HPFS file system support' CONFIG_HPFS_FS
41 bool '/proc file system support' CONFIG_PROC_FS
43 dep_bool '/dev file system support (EXPERIMENTAL)' CONFIG_DEVFS_FS $CONFIG_EXPERIMENTAL
44 dep_bool '  Automatically mount at boot' CONFIG_DEVFS_MOUNT $CONFIG_DEVFS_FS
45 dep_bool '  Debug devfs' CONFIG_DEVFS_DEBUG $CONFIG_DEVFS_FS
47 # It compiles as a module for testing only.  It should not be used
48 # as a module in general.  If we make this "tristate", a bunch of people
49 # who don't know what they are doing turn it on and complain when it
50 # breaks.
51 dep_bool '/dev/pts file system for Unix98 PTYs' CONFIG_DEVPTS_FS $CONFIG_UNIX98_PTYS
53 dep_tristate 'QNX4 file system support (read only) (EXPERIMENTAL)' CONFIG_QNX4FS_FS $CONFIG_EXPERIMENTAL
54 dep_mbool '  QNX4FS write support (DANGEROUS)' CONFIG_QNX4FS_RW $CONFIG_QNX4FS_FS $CONFIG_EXPERIMENTAL
56 tristate 'ROM file system support' CONFIG_ROMFS_FS
58 tristate 'Second extended fs support' CONFIG_EXT2_FS
60 tristate 'System V and Coherent file system support (read only)' CONFIG_SYSV_FS
61 dep_mbool '  SYSV file system write support (DANGEROUS)' CONFIG_SYSV_FS_WRITE $CONFIG_SYSV_FS $CONFIG_EXPERIMENTAL
63 tristate 'UDF file system support (read only)' CONFIG_UDF_FS
64 dep_mbool '  UDF write support (DANGEROUS)' CONFIG_UDF_RW $CONFIG_UDF_FS $CONFIG_EXPERIMENTAL
66 tristate 'UFS file system support (read only)' CONFIG_UFS_FS
67 dep_mbool '  UFS file system write support (DANGEROUS)' CONFIG_UFS_FS_WRITE $CONFIG_UFS_FS $CONFIG_EXPERIMENTAL
69 if [ "$CONFIG_NET" = "y" ]; then
71    mainmenu_option next_comment
72    comment 'Network File Systems'
74    dep_tristate 'Coda file system support (advanced network fs)' CONFIG_CODA_FS $CONFIG_INET
75    dep_tristate 'NFS file system support' CONFIG_NFS_FS $CONFIG_INET
76    dep_mbool '  Provide NFSv3 client support (EXPERIMENTAL)' CONFIG_NFS_V3 $CONFIG_NFS_FS
77    dep_bool '  Root file system on NFS' CONFIG_ROOT_NFS $CONFIG_NFS_FS $CONFIG_IP_PNP
79    dep_tristate 'NFS server support' CONFIG_NFSD $CONFIG_INET
80    dep_mbool '  Provide NFSv3 server support' CONFIG_NFSD_V3 $CONFIG_NFSD
82    if [ "$CONFIG_NFS_FS" = "y" -o "$CONFIG_NFSD" = "y" ]; then
83       define_tristate CONFIG_SUNRPC y
84       define_tristate CONFIG_LOCKD y
85    else
86       if [ "$CONFIG_NFS_FS" = "m" -o "$CONFIG_NFSD" = "m" ]; then
87          define_tristate CONFIG_SUNRPC m
88          define_tristate CONFIG_LOCKD m
89    else
90          define_tristate CONFIG_SUNRPC n
91          define_tristate CONFIG_LOCKD n
92       fi
93    fi
94    if [ "$CONFIG_NFSD_V3" = "y" -o "$CONFIG_NFS_V3" = "y" ]; then
95      define_bool CONFIG_LOCKD_V4 y
96    fi
98    dep_tristate 'SMB file system support (to mount Windows shares etc.)' CONFIG_SMB_FS $CONFIG_INET
100    if [ "$CONFIG_IPX" != "n" -o "$CONFIG_INET" != "n" ]; then
101       tristate 'NCP file system support (to mount NetWare volumes)' CONFIG_NCP_FS
102       source fs/ncpfs/Config.in
103    else
104       # for fs/nls/Config.in
105       define_bool CONFIG_NCPFS_NLS n
106    fi
107    endmenu
109 else
110    # for fs/nls/Config.in
111    define_bool CONFIG_NCPFS_NLS n
114 mainmenu_option next_comment
115 comment 'Partition Types'
116 source fs/partitions/Config.in
117 endmenu
118 source fs/nls/Config.in
119 endmenu