linux-bk/fs/Config.in
<<
>>
Prefs
   1#
   2# File system configuration
   3#
   4mainmenu_option next_comment
   5comment 'File systems'
   6
   7bool 'Quota support' CONFIG_QUOTA
   8dep_tristate '  Old quota format support' CONFIG_QFMT_V1 $CONFIG_QUOTA
   9dep_tristate '  Quota format v2 support' CONFIG_QFMT_V2 $CONFIG_QUOTA
  10if [ "$CONFIG_QUOTA" = "y" ]; then
  11   define_bool CONFIG_QUOTACTL y
  12fi
  13tristate 'Kernel automounter support' CONFIG_AUTOFS_FS
  14tristate 'Kernel automounter version 4 support (also supports v3)' CONFIG_AUTOFS4_FS
  15
  16tristate 'Reiserfs support' CONFIG_REISERFS_FS
  17dep_mbool '  Enable reiserfs debug mode' CONFIG_REISERFS_CHECK $CONFIG_REISERFS_FS
  18dep_mbool '  Stats in /proc/fs/reiserfs' CONFIG_REISERFS_PROC_INFO $CONFIG_REISERFS_FS
  19
  20dep_tristate 'ADFS file system support (EXPERIMENTAL)' CONFIG_ADFS_FS $CONFIG_EXPERIMENTAL
  21dep_mbool '  ADFS write support (DANGEROUS)' CONFIG_ADFS_FS_RW $CONFIG_ADFS_FS $CONFIG_EXPERIMENTAL
  22
  23dep_tristate 'Amiga FFS file system support (EXPERIMENTAL)' CONFIG_AFFS_FS $CONFIG_EXPERIMENTAL
  24
  25dep_tristate 'Apple Macintosh file system support (EXPERIMENTAL)' CONFIG_HFS_FS $CONFIG_EXPERIMENTAL
  26
  27dep_tristate 'BFS file system support (EXPERIMENTAL)' CONFIG_BFS_FS $CONFIG_EXPERIMENTAL
  28
  29tristate 'Ext3 journalling file system support' CONFIG_EXT3_FS
  30# CONFIG_JBD could be its own option (even modular), but until there are
  31# other users than ext3, we will simply make it be the same as CONFIG_EXT3_FS
  32# dep_tristate '  Journal Block Device support (JBD for ext3)' CONFIG_JBD $CONFIG_EXT3_FS
  33define_bool CONFIG_JBD $CONFIG_EXT3_FS
  34dep_mbool '  JBD (ext3) debugging support' CONFIG_JBD_DEBUG $CONFIG_JBD
  35
  36# msdos file systems
  37tristate 'DOS FAT fs support' CONFIG_FAT_FS
  38dep_tristate '  MSDOS fs support' CONFIG_MSDOS_FS $CONFIG_FAT_FS
  39#dep_tristate '    UMSDOS: Unix-like file system on top of standard MSDOS fs' CONFIG_UMSDOS_FS $CONFIG_MSDOS_FS
  40# UMSDOS is temprory broken
  41define_bool CONFIG_UMSDOS_FS n
  42
  43dep_tristate '  VFAT (Windows-95) fs support' CONFIG_VFAT_FS $CONFIG_FAT_FS
  44dep_tristate 'EFS file system support (read only) (EXPERIMENTAL)' CONFIG_EFS_FS $CONFIG_EXPERIMENTAL
  45dep_tristate 'Journalling Flash File System (JFFS) support' CONFIG_JFFS_FS $CONFIG_MTD
  46if [ "$CONFIG_JFFS_FS" = "y" -o "$CONFIG_JFFS_FS" = "m" ] ; then
  47   int 'JFFS debugging verbosity (0 = quiet, 3 = noisy)' CONFIG_JFFS_FS_VERBOSE 0
  48   bool 'JFFS stats available in /proc filesystem' CONFIG_JFFS_PROC_FS
  49fi
  50dep_tristate 'Journalling Flash File System v2 (JFFS2) support' CONFIG_JFFS2_FS $CONFIG_MTD
  51if [ "$CONFIG_JFFS2_FS" = "y" -o "$CONFIG_JFFS2_FS" = "m" ] ; then
  52   int '  JFFS2 debugging verbosity (0 = quiet, 2 = noisy)' CONFIG_JFFS2_FS_DEBUG 0
  53   dep_bool '  JFFS2 support for NAND flash (EXPERIMENTAL)' CONFIG_JFFS2_FS_NAND $CONFIG_EXPERIMENTAL
  54fi
  55tristate 'Compressed ROM file system support' CONFIG_CRAMFS
  56bool 'Virtual memory file system support (former shm fs)' CONFIG_TMPFS
  57define_bool CONFIG_RAMFS y
  58
  59tristate 'ISO 9660 CDROM file system support' CONFIG_ISO9660_FS
  60dep_mbool '  Microsoft Joliet CDROM extensions' CONFIG_JOLIET $CONFIG_ISO9660_FS
  61dep_mbool '  Transparent decompression extension' CONFIG_ZISOFS $CONFIG_ISO9660_FS
  62
  63tristate 'JFS filesystem support' CONFIG_JFS_FS
  64dep_mbool '  JFS debugging' CONFIG_JFS_DEBUG $CONFIG_JFS_FS
  65dep_mbool '  JFS statistics' CONFIG_JFS_STATISTICS $CONFIG_JFS_FS
  66
  67tristate 'Minix fs support' CONFIG_MINIX_FS
  68
  69tristate 'FreeVxFS file system support (VERITAS VxFS(TM) compatible)' CONFIG_VXFS_FS
  70
  71tristate 'NTFS file system support (read only)' CONFIG_NTFS_FS
  72dep_mbool '  NTFS debugging support' CONFIG_NTFS_DEBUG $CONFIG_NTFS_FS
  73dep_mbool '  NTFS write support (DANGEROUS)' CONFIG_NTFS_RW $CONFIG_NTFS_FS $CONFIG_EXPERIMENTAL
  74
  75tristate 'OS/2 HPFS file system support' CONFIG_HPFS_FS
  76
  77bool '/proc file system support' CONFIG_PROC_FS
  78
  79dep_bool '/dev file system support (EXPERIMENTAL)' CONFIG_DEVFS_FS $CONFIG_EXPERIMENTAL
  80dep_bool '  Automatically mount at boot' CONFIG_DEVFS_MOUNT $CONFIG_DEVFS_FS
  81dep_bool '  Debug devfs' CONFIG_DEVFS_DEBUG $CONFIG_DEVFS_FS
  82
  83# It compiles as a module for testing only.  It should not be used
  84# as a module in general.  If we make this "tristate", a bunch of people
  85# who don't know what they are doing turn it on and complain when it
  86# breaks.
  87dep_bool '/dev/pts file system for Unix98 PTYs' CONFIG_DEVPTS_FS $CONFIG_UNIX98_PTYS
  88
  89tristate 'QNX4 file system support (read only)' CONFIG_QNX4FS_FS
  90dep_mbool '  QNX4FS write support (DANGEROUS)' CONFIG_QNX4FS_RW $CONFIG_QNX4FS_FS $CONFIG_EXPERIMENTAL
  91
  92tristate 'ROM file system support' CONFIG_ROMFS_FS
  93
  94tristate 'Second extended fs support' CONFIG_EXT2_FS
  95
  96tristate 'System V/Xenix/V7/Coherent file system support' CONFIG_SYSV_FS
  97
  98tristate 'UDF file system support (read only)' CONFIG_UDF_FS
  99dep_mbool '  UDF write support (DANGEROUS)' CONFIG_UDF_RW $CONFIG_UDF_FS $CONFIG_EXPERIMENTAL
 100
 101tristate 'UFS file system support (read only)' CONFIG_UFS_FS
 102dep_mbool '  UFS file system write support (DANGEROUS)' CONFIG_UFS_FS_WRITE $CONFIG_UFS_FS $CONFIG_EXPERIMENTAL
 103
 104tristate 'XFS filesystem support' CONFIG_XFS_FS
 105dep_mbool    '  Realtime support (EXPERIMENTAL)' CONFIG_XFS_RT $CONFIG_XFS_FS $CONFIG_EXPERIMENTAL
 106dep_mbool    '  Quota support' CONFIG_XFS_QUOTA $CONFIG_XFS_FS
 107if [ "$CONFIG_XFS_QUOTA" = "y" ]; then
 108   define_bool CONFIG_QUOTACTL y
 109fi
 110
 111if [ "$CONFIG_NET" = "y" ]; then
 112
 113   mainmenu_option next_comment
 114   comment 'Network File Systems'
 115
 116   dep_tristate 'Coda file system support (advanced network fs)' CONFIG_CODA_FS $CONFIG_INET
 117   dep_tristate 'InterMezzo file system support (replicating fs) (EXPERIMENTAL)' CONFIG_INTERMEZZO_FS $CONFIG_INET $CONFIG_EXPERIMENTAL
 118   dep_tristate 'NFS file system support' CONFIG_NFS_FS $CONFIG_INET
 119   dep_mbool '  Provide NFSv3 client support' CONFIG_NFS_V3 $CONFIG_NFS_FS
 120   dep_bool '  Root file system on NFS' CONFIG_ROOT_NFS $CONFIG_NFS_FS $CONFIG_IP_PNP
 121
 122   dep_tristate 'NFS server support' CONFIG_NFSD $CONFIG_INET
 123   dep_mbool '  Provide NFSv3 server support' CONFIG_NFSD_V3 $CONFIG_NFSD
 124   dep_mbool '  Provide NFS server over TCP support (EXPERIMENTAL)' CONFIG_NFSD_TCP $CONFIG_NFSD $CONFIG_EXPERIMENTAL
 125
 126   if [ "$CONFIG_NFS_FS" = "y" -o "$CONFIG_NFSD" = "y" ]; then
 127      define_tristate CONFIG_SUNRPC y
 128      define_tristate CONFIG_LOCKD y
 129   else
 130      if [ "$CONFIG_NFS_FS" = "m" -o "$CONFIG_NFSD" = "m" ]; then
 131         define_tristate CONFIG_SUNRPC m
 132         define_tristate CONFIG_LOCKD m
 133   else
 134         define_tristate CONFIG_SUNRPC n
 135         define_tristate CONFIG_LOCKD n
 136      fi
 137   fi
 138   if [ "$CONFIG_NFSD_V3" = "y" -o "$CONFIG_NFS_V3" = "y" ]; then
 139     define_bool CONFIG_LOCKD_V4 y
 140   fi
 141   define_tristate CONFIG_EXPORTFS $CONFIG_NFSD
 142
 143   dep_tristate 'SMB file system support (to mount Windows shares etc.)' CONFIG_SMB_FS $CONFIG_INET
 144   if [ "$CONFIG_SMB_FS" != "n" ]; then
 145      bool '  Use a default NLS' CONFIG_SMB_NLS_DEFAULT
 146      if [ "$CONFIG_SMB_NLS_DEFAULT" = "y" ]; then
 147         string '    Default Remote NLS Option' CONFIG_SMB_NLS_REMOTE "cp437"
 148      fi
 149   fi
 150   if [ "$CONFIG_IPX" != "n" -o "$CONFIG_INET" != "n" ]; then
 151      tristate 'NCP file system support (to mount NetWare volumes)' CONFIG_NCP_FS
 152      source fs/ncpfs/Config.in
 153   else
 154      # for fs/nls/Config.in
 155      define_bool CONFIG_NCPFS_NLS n
 156   fi
 157   endmenu
 158
 159else
 160   # for fs/nls/Config.in
 161   define_bool CONFIG_NCPFS_NLS n
 162   define_bool CONFIG_SMB_FS n
 163fi
 164
 165if [ "$CONFIG_ZISOFS" = "y" ]; then
 166   define_tristate CONFIG_ZISOFS_FS $CONFIG_ISO9660_FS
 167else
 168   define_tristate CONFIG_ZISOFS_FS n
 169fi
 170
 171mainmenu_option next_comment
 172comment 'Partition Types'
 173source fs/partitions/Config.in
 174endmenu
 175source fs/nls/Config.in
 176endmenu
 177
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.