Import 2.3.26pre2
[davej-history.git] / fs / Config.in
blobb15be4a0d54be66c1eca05cc244dd1db65215150
2 # Filesystem configuration
4 mainmenu_option next_comment
5 comment 'Filesystems'
7 bool 'Quota support' CONFIG_QUOTA
8 tristate 'Kernel automounter support' CONFIG_AUTOFS_FS
11 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
12    tristate 'ADFS filesystem support (read only) (EXPERIMENTAL)' CONFIG_ADFS_FS
14 tristate 'Amiga FFS filesystem support' CONFIG_AFFS_FS
15 tristate 'Apple Macintosh filesystem support (EXPERIMENTAL)' CONFIG_HFS_FS
16 # msdos filesystems
17 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
18    tristate 'BFS filesystem (read only) support (EXPERIMENTAL)' CONFIG_BFS_FS
19    if [ "$CONFIG_BFS_FS" != "n" ]; then
20       bool '  BFS filesystem write support (DANGEROUS)' CONFIG_BFS_FS_WRITE
21    fi
23 tristate 'DOS FAT fs support' CONFIG_FAT_FS
24 dep_tristate '  MSDOS fs support' CONFIG_MSDOS_FS $CONFIG_FAT_FS
25 dep_tristate '  UMSDOS: Unix-like filesystem on top of standard MSDOS filesystem' CONFIG_UMSDOS_FS $CONFIG_MSDOS_FS
26 dep_tristate '  VFAT (Windows-95) fs support' CONFIG_VFAT_FS $CONFIG_FAT_FS
28 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
29    tristate 'EFS filesystem support (read only) (EXPERIMENTAL)' CONFIG_EFS_FS
32 tristate 'ISO 9660 CDROM filesystem support' CONFIG_ISO9660_FS
33 if [ "$CONFIG_ISO9660_FS" != "n" ]; then
34    bool '  Microsoft Joliet CDROM extensions' CONFIG_JOLIET
35 else
36    # needed by nls/Config.in
37    define_bool CONFIG_JOLIET n
40 tristate 'UDF filesystem support (read only)' CONFIG_UDF_FS
41 if [ "$CONFIG_UDF_FS" != "n" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
42    bool '  UDF write support (DANGEROUS)' CONFIG_UDF_RW
45 tristate 'Minix fs support' CONFIG_MINIX_FS
46 tristate 'NTFS filesystem support (read only)' CONFIG_NTFS_FS
47 if [ "$CONFIG_NTFS_FS" != "n" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
48    bool '  NTFS write support (DANGEROUS)' CONFIG_NTFS_RW
50 tristate 'OS/2 HPFS filesystem support' CONFIG_HPFS_FS
51 bool '/proc filesystem support' CONFIG_PROC_FS
52 if [ "$CONFIG_UNIX98_PTYS" = "y" ]; then
53    # It compiles as a module for testing only.  It should not be used
54    # as a module in general.  If we make this "tristate", a bunch of people
55    # who don't know what they are doing turn it on and complain when it
56    # breaks.
57    bool '/dev/pts filesystem for Unix98 PTYs' CONFIG_DEVPTS_FS
59 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
60    tristate 'QNX filesystem support (read only) (EXPERIMENTAL)' CONFIG_QNX4FS_FS
61    if [ "$CONFIG_QNX4FS_FS" != "n" ]; then
62       bool '  QNXFS write support (DANGEROUS)' CONFIG_QNX4FS_RW
63    fi    
65 tristate 'ROM filesystem support' CONFIG_ROMFS_FS
66 tristate 'Second extended fs support' CONFIG_EXT2_FS
67 tristate 'System V and Coherent filesystem support' CONFIG_SYSV_FS
68 if [ "$CONFIG_SYSV_FS" != "n" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
69    bool '  SYSV filesystem write support (DANGEROUS)' CONFIG_SYSV_FS_WRITE
71 tristate 'UFS filesystem support (read only)' CONFIG_UFS_FS
72 if [ "$CONFIG_UFS_FS" != "n" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
73    bool '  UFS filesystem write support (DANGEROUS)' CONFIG_UFS_FS_WRITE
77 if [ "$CONFIG_NET" = "y" ]; then
79 mainmenu_option next_comment
80 comment 'Network File Systems'
82 if [ "$CONFIG_INET" = "y" ]; then
83    tristate 'Coda filesystem support (advanced network fs)' CONFIG_CODA_FS
84    tristate 'NFS filesystem support' CONFIG_NFS_FS
85    if [ "$CONFIG_NFS_FS" = "y" -a "$CONFIG_IP_PNP" = "y" ]; then
86       bool '  Root file system on NFS' CONFIG_ROOT_NFS
87    fi
88    tristate 'NFS server support' CONFIG_NFSD
89    if [ "$CONFIG_NFSD" != "n" ]; then
90       bool '  Emulate SUN NFS server' CONFIG_NFSD_SUN
91    fi
92    if [ "$CONFIG_NFS_FS" = "y" -o "$CONFIG_NFSD" = "y" ]; then
93       define_tristate CONFIG_SUNRPC y
94       define_tristate CONFIG_LOCKD y
95    else
96       if [ "$CONFIG_NFS_FS" = "m" -o "$CONFIG_NFSD" = "m" ]; then
97          define_tristate CONFIG_SUNRPC m
98          define_tristate CONFIG_LOCKD m
99    else
100          define_tristate CONFIG_SUNRPC n
101          define_tristate CONFIG_LOCKD n
102       fi
103    fi
104    tristate 'SMB filesystem support (to mount WfW shares etc.)' CONFIG_SMB_FS
106 if [ "$CONFIG_IPX" != "n" -o "$CONFIG_INET" != "n" ]; then
107    tristate 'NCP filesystem support (to mount NetWare volumes)' CONFIG_NCP_FS
108    if [ "$CONFIG_NCP_FS" != "n" ]; then
109       source fs/ncpfs/Config.in
110    fi
113 endmenu
116 mainmenu_option next_comment
117 comment 'Partition Types'
118 source fs/partitions/Config.in
119 endmenu
120 source fs/nls/Config.in
121 endmenu