Import 2.1.128
[davej-history.git] / fs / Config.in
bloba60a04b193ceb4c70c10efeeefc1a1943592b6e4
2 # Filesystem configuration
4 mainmenu_option next_comment
5 comment 'Filesystems'
7 bool     'Quota support' CONFIG_QUOTA
9 tristate 'Minix fs support' CONFIG_MINIX_FS
10 tristate 'Second extended fs support' CONFIG_EXT2_FS
12 tristate 'ISO 9660 CDROM filesystem support' CONFIG_ISO9660_FS
13 if [ "$CONFIG_ISO9660_FS" != "n" ]; then
14   bool 'Microsoft Joliet CDROM extensions' CONFIG_JOLIET
17 # msdos filesystems
18 tristate 'DOS FAT fs support' CONFIG_FAT_FS
19 dep_tristate 'MSDOS fs support' CONFIG_MSDOS_FS $CONFIG_FAT_FS
20 dep_tristate 'UMSDOS: Unix-like filesystem on top of standard MSDOS filesystem' CONFIG_UMSDOS_FS $CONFIG_MSDOS_FS
21 dep_tristate 'VFAT (Windows-95) fs support' CONFIG_VFAT_FS $CONFIG_FAT_FS
23 bool '/proc filesystem support' CONFIG_PROC_FS
24 if [ "$CONFIG_INET" = "y" ]; then
25   tristate 'NFS filesystem support' CONFIG_NFS_FS
26   if [ "$CONFIG_NFS_FS" = "y" -a "$CONFIG_IP_PNP" = "y" ]; then
27     bool '   Root file system on NFS' CONFIG_ROOT_NFS
28   fi
29   tristate 'NFS server support' CONFIG_NFSD
30   if [ "$CONFIG_NFSD" != "n" ]; then
31     bool '   Emulate SUN NFS server' CONFIG_NFSD_SUN
32   fi
33   if [ "$CONFIG_NFS_FS" = "y" -o "$CONFIG_NFSD" = "y" ]; then
34     define_bool CONFIG_SUNRPC y
35     define_bool CONFIG_LOCKD y
36   else
37     if [ "$CONFIG_NFS_FS" = "m" -o "$CONFIG_NFSD" = "m" ]; then
38       define_bool CONFIG_SUNRPC m
39       define_bool CONFIG_LOCKD m
40     else
41       define_bool CONFIG_SUNRPC n
42       define_bool CONFIG_LOCKD n
43     fi
44   fi
45   tristate 'Coda filesystem support (advanced network fs)' CONFIG_CODA_FS
46   tristate 'SMB filesystem support (to mount WfW shares etc.)' CONFIG_SMB_FS
47   if [ "$CONFIG_SMB_FS" != "n" ]; then
48     bool 'SMB Win95 bug work-around' CONFIG_SMB_WIN95
49   fi
51 if [ "$CONFIG_IPX" != "n" ]; then
52   tristate 'NCP filesystem support (to mount NetWare volumes)' CONFIG_NCP_FS
53   if [ "$CONFIG_NCP_FS" != "n" ]; then
54     source fs/ncpfs/Config.in
55   fi
57 tristate 'OS/2 HPFS filesystem support (read only)' CONFIG_HPFS_FS
59 tristate 'NTFS filesystem support (read only)' CONFIG_NTFS_FS
60 if [ "$CONFIG_NTFS_FS" != "n" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
61   bool '   NTFS read-write support (experimental)' CONFIG_NTFS_RW
64 tristate 'System V and Coherent filesystem support' CONFIG_SYSV_FS
65 tristate 'Amiga FFS filesystem support' CONFIG_AFFS_FS
66 tristate 'Apple Macintosh filesystem support (experimental)' CONFIG_HFS_FS
67 tristate 'ROM filesystem support' CONFIG_ROMFS_FS
68 tristate 'Kernel automounter support' CONFIG_AUTOFS_FS
69 if [ "$CONFIG_AFFS_FS" != "n" ]; then
70   define_bool CONFIG_AMIGA_PARTITION y
72 tristate 'UFS filesystem support' CONFIG_UFS_FS
73 bool 'BSD disklabel (BSD partition tables) support' CONFIG_BSD_DISKLABEL
74 bool 'SMD disklabel (Sun partition tables) support' CONFIG_SMD_DISKLABEL
75 bool 'Solaris (x86) partition table support' CONFIG_SOLARIS_X86_PARTITION
76 if [ "$CONFIG_UNIX98_PTYS" = "y" ]; then
77   tristate '/dev/pts filesystem for Unix98 PTYs' CONFIG_DEVPTS_FS
79 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
80   tristate 'ADFS filesystem support (read only) (EXPERIMENTAL)' CONFIG_ADFS_FS
81   tristate 'QNX filesystem support (EXPERIMENTAL)' CONFIG_QNX4FS_FS
82   if [ "$CONFIG_QNX4FS_FS" != "n" ]; then
83     bool '   QNXFS read-write support (FOR TESTING ONLY)' CONFIG_QNX4FS_RW
84   fi    
86 bool 'Macintosh partition map support' CONFIG_MAC_PARTITION
87 endmenu