1# 2# Filesystem configuration 3# 4mainmenu_option next_comment 5comment 'Filesystems' 6 7bool 'Quota support' CONFIG_QUOTA 8tristate 'Kernel automounter support' CONFIG_AUTOFS_FS 9 10 11if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 12 tristate 'ADFS filesystem support (read only) (EXPERIMENTAL)' CONFIG_ADFS_FS 13fi 14tristate 'Amiga FFS filesystem support' CONFIG_AFFS_FS 15tristate 'Apple Macintosh filesystem support (experimental)' CONFIG_HFS_FS 16# msdos filesystems 17tristate 'DOS FAT fs support' CONFIG_FAT_FS 18dep_tristate ' MSDOS fs support' CONFIG_MSDOS_FS $CONFIG_FAT_FS 19dep_tristate ' UMSDOS: Unix-like filesystem on top of standard MSDOS filesystem' CONFIG_UMSDOS_FS $CONFIG_MSDOS_FS 20dep_tristate ' VFAT (Windows-95) fs support' CONFIG_VFAT_FS $CONFIG_FAT_FS 21 22tristate 'ISO 9660 CDROM filesystem support' CONFIG_ISO9660_FS 23if [ "$CONFIG_ISO9660_FS" != "n" ]; then 24 bool 'Microsoft Joliet CDROM extensions' CONFIG_JOLIET 25else 26 # needed by nls/Config.in 27 define_bool CONFIG_JOLIET n 28fi 29 30tristate 'Minix fs support' CONFIG_MINIX_FS 31tristate 'NTFS filesystem support (read only)' CONFIG_NTFS_FS 32if [ "$CONFIG_NTFS_FS" != "n" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then 33 bool ' NTFS read-write support (DANGEROUS)' CONFIG_NTFS_RW 34fi 35tristate 'OS/2 HPFS filesystem support (read only)' CONFIG_HPFS_FS 36bool '/proc filesystem support' CONFIG_PROC_FS 37if [ "$CONFIG_UNIX98_PTYS" = "y" ]; then 38 # It compiles as a module for testing only. It should not be used 39 # as a module in general. If we make this "tristate", a bunch of people 40 # who don't know what they are doing turn it on and complain when it 41 # breaks. 42 bool '/dev/pts filesystem for Unix98 PTYs' CONFIG_DEVPTS_FS 43fi 44if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 45 tristate 'QNX4 filesystem support (read only) (EXPERIMENTAL)' CONFIG_QNX4FS_FS 46 if [ "$CONFIG_QNX4FS_FS" != "n" ]; then 47 bool ' QNX4FS write support (DANGEROUS)' CONFIG_QNX4FS_RW 48 fi 49fi 50tristate 'ROM filesystem support' CONFIG_ROMFS_FS 51tristate 'Second extended fs support' CONFIG_EXT2_FS 52tristate 'System V and Coherent filesystem support' CONFIG_SYSV_FS 53tristate 'UFS filesystem support' CONFIG_UFS_FS 54if [ "$CONFIG_UFS_FS" != "n" ]; then 55 bool ' UFS filesystem write support (experimental)' CONFIG_UFS_FS_WRITE 56fi 57if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 58 tristate 'SGI EFS filesystem support (read only) (experimental)' CONFIG_EFS_FS 59 if [ "$CONFIG_EFS_FS" != "n" ]; then 60 define_bool CONFIG_SGI_PARTITION y 61 fi 62fi 63 64if [ "$CONFIG_NET" = "y" ]; then 65 66mainmenu_option next_comment 67comment 'Network File Systems' 68 69if [ "$CONFIG_INET" = "y" ]; then 70 tristate 'Coda filesystem support (advanced network fs)' CONFIG_CODA_FS 71 tristate 'NFS filesystem support' CONFIG_NFS_FS 72 if [ "$CONFIG_NFS_FS" != "n" ]; then 73 bool ' NFS Version 3 filesystem support' CONFIG_NFS_V3 74 fi 75 if [ "$CONFIG_NFS_FS" = "y" -a "$CONFIG_IP_PNP" = "y" ]; then 76 bool ' Root file system on NFS' CONFIG_ROOT_NFS 77 fi 78 tristate 'NFS server support' CONFIG_NFSD 79 if [ "$CONFIG_NFSD" != "n" ]; then 80 bool ' NFS Version 3 server support' CONFIG_NFSD_V3 81 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 82 bool ' NFS server TCP support (VERY EXPERIMENTAL)' CONFIG_NFSD_TCP 83 fi 84 fi 85 if [ "$CONFIG_NFS_FS" = "y" -o "$CONFIG_NFSD" = "y" ]; then 86 define_bool CONFIG_SUNRPC y 87 define_bool CONFIG_LOCKD y 88 else 89 if [ "$CONFIG_NFS_FS" = "m" -o "$CONFIG_NFSD" = "m" ]; then 90 define_bool CONFIG_SUNRPC m 91 define_bool CONFIG_LOCKD m 92 else 93 define_bool CONFIG_SUNRPC n 94 define_bool CONFIG_LOCKD n 95 fi 96 fi 97 tristate 'SMB filesystem support (to mount WfW shares etc.)' CONFIG_SMB_FS 98 if [ "$CONFIG_SMB_FS" != "n" ]; then 99 bool ' Use a default NLS' CONFIG_SMB_NLS_DEFAULT 100 if [ "$CONFIG_SMB_NLS_DEFAULT" = "y" ]; then 101 string ' Default Remote NLS Option' CONFIG_SMB_NLS_REMOTE "cp437" 102 fi 103 fi 104fi 105if [ "$CONFIG_IPX" != "n" -o "$CONFIG_INET" != "n" ]; then 106 tristate 'NCP filesystem support (to mount NetWare volumes)' CONFIG_NCP_FS 107 if [ "$CONFIG_NCP_FS" != "n" ]; then 108 source fs/ncpfs/Config.in 109 fi 110fi 111 112endmenu 113fi 114 115mainmenu_option next_comment 116comment 'Partition Types' 117 118bool 'BSD disklabel (BSD partition tables) support' CONFIG_BSD_DISKLABEL 119bool 'Macintosh partition map support' CONFIG_MAC_PARTITION 120bool 'Minix subpartition support' CONFIG_MINIX_SUBPARTITION 121bool 'SMD disklabel (Sun partition tables) support' CONFIG_SMD_DISKLABEL 122bool 'Solaris (x86) partition table support' CONFIG_SOLARIS_X86_PARTITION 123if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 124 bool 'Unixware slices support (EXPERIMENTAL)' CONFIG_UNIXWARE_DISKLABEL 125fi 126endmenu 127 128if [ "$CONFIG_AFFS_FS" != "n" ]; then 129 define_bool CONFIG_AMIGA_PARTITION y 130fi 131 132source fs/nls/Config.in 133 134endmenu 135

