The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/fs/Config.in

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: 55ce4af55de92708d594aa4c97a3c2dd


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.