~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
Linux/fs/Config.in

Version: ~ [ 2.4.0 ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #
  2 # File system configuration
  3 #
  4 mainmenu_option next_comment
  5 comment 'File systems'
  6 
  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
 10 
 11 
 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
 14 
 15 dep_tristate 'Amiga FFS file system support (EXPERIMENTAL)' CONFIG_AFFS_FS $CONFIG_EXPERIMENTAL
 16 
 17 dep_tristate 'Apple Macintosh file system support (EXPERIMENTAL)' CONFIG_HFS_FS $CONFIG_EXPERIMENTAL
 18 
 19 dep_tristate 'BFS file system support (EXPERIMENTAL)' CONFIG_BFS_FS $CONFIG_EXPERIMENTAL
 20 
 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 if [ "$CONFIG_JFFS_FS" != "n" ] ; then
 29         int 'JFFS debugging verbosity (0 = quiet, 3 = noisy)' CONFIG_JFFS_FS_VERBOSE 0
 30 fi
 31 tristate 'Compressed ROM file system support' CONFIG_CRAMFS
 32 tristate 'Simple RAM-based file system support' CONFIG_RAMFS
 33 
 34 tristate 'ISO 9660 CDROM file system support' CONFIG_ISO9660_FS
 35 dep_mbool '  Microsoft Joliet CDROM extensions' CONFIG_JOLIET $CONFIG_ISO9660_FS
 36 
 37 tristate 'Minix fs support' CONFIG_MINIX_FS
 38 
 39 tristate 'NTFS file system support (read only)' CONFIG_NTFS_FS
 40 dep_mbool '  NTFS write support (DANGEROUS)' CONFIG_NTFS_RW $CONFIG_NTFS_FS $CONFIG_EXPERIMENTAL
 41 
 42 tristate 'OS/2 HPFS file system support' CONFIG_HPFS_FS
 43 
 44 bool '/proc file system support' CONFIG_PROC_FS
 45 
 46 dep_bool '/dev file system support (EXPERIMENTAL)' CONFIG_DEVFS_FS $CONFIG_EXPERIMENTAL
 47 dep_bool '  Automatically mount at boot' CONFIG_DEVFS_MOUNT $CONFIG_DEVFS_FS
 48 dep_bool '  Debug devfs' CONFIG_DEVFS_DEBUG $CONFIG_DEVFS_FS
 49 
 50 # It compiles as a module for testing only.  It should not be used
 51 # as a module in general.  If we make this "tristate", a bunch of people
 52 # who don't know what they are doing turn it on and complain when it
 53 # breaks.
 54 dep_bool '/dev/pts file system for Unix98 PTYs' CONFIG_DEVPTS_FS $CONFIG_UNIX98_PTYS
 55 
 56 dep_tristate 'QNX4 file system support (read only) (EXPERIMENTAL)' CONFIG_QNX4FS_FS $CONFIG_EXPERIMENTAL
 57 dep_mbool '  QNX4FS write support (DANGEROUS)' CONFIG_QNX4FS_RW $CONFIG_QNX4FS_FS $CONFIG_EXPERIMENTAL
 58 
 59 tristate 'ROM file system support' CONFIG_ROMFS_FS
 60 
 61 tristate 'Second extended fs support' CONFIG_EXT2_FS
 62 
 63 tristate 'System V and Coherent file system support (read only)' CONFIG_SYSV_FS
 64 dep_mbool '  SYSV file system write support (DANGEROUS)' CONFIG_SYSV_FS_WRITE $CONFIG_SYSV_FS $CONFIG_EXPERIMENTAL
 65 
 66 tristate 'UDF file system support (read only)' CONFIG_UDF_FS
 67 dep_mbool '  UDF write support (DANGEROUS)' CONFIG_UDF_RW $CONFIG_UDF_FS $CONFIG_EXPERIMENTAL
 68 
 69 tristate 'UFS file system support (read only)' CONFIG_UFS_FS
 70 dep_mbool '  UFS file system write support (DANGEROUS)' CONFIG_UFS_FS_WRITE $CONFIG_UFS_FS $CONFIG_EXPERIMENTAL
 71 
 72 if [ "$CONFIG_NET" = "y" ]; then
 73 
 74    mainmenu_option next_comment
 75    comment 'Network File Systems'
 76 
 77    dep_tristate 'Coda file system support (advanced network fs)' CONFIG_CODA_FS $CONFIG_INET
 78    dep_tristate 'NFS file system support' CONFIG_NFS_FS $CONFIG_INET
 79    dep_mbool '  Provide NFSv3 client support' CONFIG_NFS_V3 $CONFIG_NFS_FS
 80    dep_bool '  Root file system on NFS' CONFIG_ROOT_NFS $CONFIG_NFS_FS $CONFIG_IP_PNP
 81 
 82    dep_tristate 'NFS server support' CONFIG_NFSD $CONFIG_INET
 83    dep_mbool '  Provide NFSv3 server support' CONFIG_NFSD_V3 $CONFIG_NFSD
 84 
 85    if [ "$CONFIG_NFS_FS" = "y" -o "$CONFIG_NFSD" = "y" ]; then
 86       define_tristate CONFIG_SUNRPC y
 87       define_tristate CONFIG_LOCKD y
 88    else
 89       if [ "$CONFIG_NFS_FS" = "m" -o "$CONFIG_NFSD" = "m" ]; then
 90          define_tristate CONFIG_SUNRPC m
 91          define_tristate CONFIG_LOCKD m
 92    else
 93          define_tristate CONFIG_SUNRPC n
 94          define_tristate CONFIG_LOCKD n
 95       fi
 96    fi
 97    if [ "$CONFIG_NFSD_V3" = "y" -o "$CONFIG_NFS_V3" = "y" ]; then
 98      define_bool CONFIG_LOCKD_V4 y
 99    fi
100 
101    dep_tristate 'SMB file system support (to mount Windows shares etc.)' CONFIG_SMB_FS $CONFIG_INET
102    if [ "$CONFIG_SMB_FS" != "n" ]; then
103       bool '   Use a default NLS' CONFIG_SMB_NLS_DEFAULT
104       if [ "$CONFIG_SMB_NLS_DEFAULT" = "y" ]; then
105          string '  Default Remote NLS Option' CONFIG_SMB_NLS_REMOTE "cp437"
106       fi
107    fi
108    if [ "$CONFIG_IPX" != "n" -o "$CONFIG_INET" != "n" ]; then
109       tristate 'NCP file system support (to mount NetWare volumes)' CONFIG_NCP_FS
110       source fs/ncpfs/Config.in
111    else
112       # for fs/nls/Config.in
113       define_bool CONFIG_NCPFS_NLS n
114    fi
115    endmenu
116 
117 else
118    # for fs/nls/Config.in
119    define_bool CONFIG_NCPFS_NLS n
120    define_bool CONFIG_SMB_FS n
121 fi
122 
123 mainmenu_option next_comment
124 comment 'Partition Types'
125 source fs/partitions/Config.in
126 endmenu
127 source fs/nls/Config.in
128 endmenu

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.