summaryrefslogtreecommitdiffstats
path: root/fs/Config.in
blob: d7826af1934afc8fe6b82f272d3e5b3eb9be381d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# Filesystem configuration
#
mainmenu_option next_comment
comment 'Filesystems'

bool	 'Quota support' CONFIG_QUOTA

tristate 'Minix fs support' CONFIG_MINIX_FS
tristate 'Second extended fs support' CONFIG_EXT2_FS

tristate 'ISO9660 cdrom filesystem support' CONFIG_ISO9660_FS
if [ "$CONFIG_ISO9660_FS" != "n" ]; then
  bool 'Microsoft Joliet cdrom extensions' CONFIG_JOLIET
fi

# msdos filesystems
tristate 'DOS FAT fs support' CONFIG_FAT_FS
dep_tristate 'MSDOS fs support' CONFIG_MSDOS_FS $CONFIG_FAT_FS
dep_tristate 'umsdos: Unix like fs on top of std MSDOS FAT fs' CONFIG_UMSDOS_FS $CONFIG_MSDOS_FS
dep_tristate 'VFAT (Windows-95) fs support' CONFIG_VFAT_FS $CONFIG_FAT_FS

bool '/proc filesystem support' CONFIG_PROC_FS
if [ "$CONFIG_INET" = "y" ]; then
  tristate 'NFS filesystem support' CONFIG_NFS_FS
  if [ "$CONFIG_NFS_FS" = "y" ]; then
    bool '   Root file system on NFS' CONFIG_ROOT_NFS
    if [ "$CONFIG_ROOT_NFS" = "y" ]; then
      bool '      BOOTP support' CONFIG_RNFS_BOOTP
      bool '      RARP support' CONFIG_RNFS_RARP
    fi
  fi
  tristate 'NFS server support' CONFIG_NFSD
  if [ "$CONFIG_NFS_FS" = "y" -o "$CONFIG_NFSD" = "y" ]; then
    define_bool CONFIG_SUNRPC y
    define_bool CONFIG_LOCKD y
  else
    if [ "$CONFIG_NFS_FS" = "m" -o "$CONFIG_NFSD" = "m" ]; then
      define_bool CONFIG_SUNRPC m
      define_bool CONFIG_LOCKD m
    else
      define_bool CONFIG_SUNRPC n
      define_bool CONFIG_LOCKD n
    fi
  fi
  tristate 'SMB filesystem support (to mount WfW shares etc..)' CONFIG_SMB_FS
  if [ "$CONFIG_SMB_FS" != "n" ]; then
    bool 'SMB Win95 bug work-around' CONFIG_SMB_WIN95
  fi
fi
if [ "$CONFIG_IPX" != "n" ]; then
  tristate 'NCP filesystem support (to mount NetWare volumes)' CONFIG_NCP_FS
fi
tristate 'OS/2 HPFS filesystem support (read only)' CONFIG_HPFS_FS
tristate 'System V and Coherent filesystem support' CONFIG_SYSV_FS
tristate 'Amiga FFS filesystem support' CONFIG_AFFS_FS
tristate 'ROM filesystem support' CONFIG_ROMFS_FS
tristate 'Kernel automounter support (experimental)' CONFIG_AUTOFS_FS
if [ "$CONFIG_AFFS_FS" != "n" ]; then
  define_bool CONFIG_AMIGA_PARTITION y
fi
tristate 'UFS filesystem support (read only)' CONFIG_UFS_FS
if [ "$CONFIG_UFS_FS" != "n" ]; then
  bool 'BSD disklabel (FreeBSD partition tables) support' CONFIG_BSD_DISKLABEL
  bool 'SMD disklabel (Sun partition tables) support' CONFIG_SMD_DISKLABEL
fi
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
  tristate 'SGI EFS filesystem support' CONFIG_EFS_FS
fi
bool 'Macintosh partition map support' CONFIG_MAC_PARTITION
endmenu