summaryrefslogtreecommitdiffstats
path: root/fs/Config.in
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1999-02-15 02:15:32 +0000
committerRalf Baechle <ralf@linux-mips.org>1999-02-15 02:15:32 +0000
commit86464aed71025541805e7b1515541aee89879e33 (patch)
treee01a457a4912a8553bc65524aa3125d51f29f810 /fs/Config.in
parent88f99939ecc6a95a79614574cb7d95ffccfc3466 (diff)
Merge with Linux 2.2.1.
Diffstat (limited to 'fs/Config.in')
-rw-r--r--fs/Config.in95
1 files changed, 63 insertions, 32 deletions
diff --git a/fs/Config.in b/fs/Config.in
index 6db2cf755..9d6d45ab7 100644
--- a/fs/Config.in
+++ b/fs/Config.in
@@ -5,28 +5,73 @@ mainmenu_option next_comment
comment 'Filesystems'
bool 'Quota support' CONFIG_QUOTA
+tristate 'Kernel automounter support' CONFIG_AUTOFS_FS
-tristate 'Minix fs support' CONFIG_MINIX_FS
-tristate 'Second extended fs support' CONFIG_EXT2_FS
+
+if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ tristate 'ADFS filesystem support (read only) (EXPERIMENTAL)' CONFIG_ADFS_FS
+fi
+tristate 'Amiga FFS filesystem support' CONFIG_AFFS_FS
+tristate 'Apple Macintosh filesystem support (experimental)' CONFIG_HFS_FS
+# 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 filesystem on top of standard MSDOS filesystem' CONFIG_UMSDOS_FS $CONFIG_MSDOS_FS
+dep_tristate ' VFAT (Windows-95) fs support' CONFIG_VFAT_FS $CONFIG_FAT_FS
tristate 'ISO 9660 CDROM filesystem support' CONFIG_ISO9660_FS
if [ "$CONFIG_ISO9660_FS" != "n" ]; then
bool 'Microsoft Joliet CDROM extensions' CONFIG_JOLIET
+else
+ # needed by nls/Config.in
+ define_bool CONFIG_JOLIET n
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 filesystem on top of standard MSDOS filesystem' CONFIG_UMSDOS_FS $CONFIG_MSDOS_FS
-dep_tristate 'VFAT (Windows-95) fs support' CONFIG_VFAT_FS $CONFIG_FAT_FS
-
+tristate 'Minix fs support' CONFIG_MINIX_FS
+tristate 'NTFS filesystem support (read only)' CONFIG_NTFS_FS
+if [ "$CONFIG_NTFS_FS" != "n" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ bool ' NTFS read-write support (DANGEROUS)' CONFIG_NTFS_RW
+fi
+tristate 'OS/2 HPFS filesystem support (read only)' CONFIG_HPFS_FS
bool '/proc filesystem support' CONFIG_PROC_FS
+if [ "$CONFIG_UNIX98_PTYS" = "y" ]; then
+ # It compiles as a module for testing only. It should not be used
+ # as a module in general. If we make this "tristate", a bunch of people
+ # who don't know what they are doing turn it on and complain when it
+ # breaks.
+ bool '/dev/pts filesystem for Unix98 PTYs' CONFIG_DEVPTS_FS
+fi
+if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ tristate 'QNX filesystem support (EXPERIMENTAL)' CONFIG_QNX4FS_FS
+ if [ "$CONFIG_QNX4FS_FS" != "n" ]; then
+ bool ' QNXFS read-write support (FOR TESTING ONLY)' CONFIG_QNX4FS_RW
+ fi
+fi
+tristate 'ROM filesystem support' CONFIG_ROMFS_FS
+tristate 'Second extended fs support' CONFIG_EXT2_FS
+tristate 'System V and Coherent filesystem support' CONFIG_SYSV_FS
+tristate 'UFS filesystem support' CONFIG_UFS_FS
+if [ "$CONFIG_UFS_FS" != "n" ]; then
+ bool ' UFS filesystem write support (experimental)' CONFIG_UFS_FS_WRITE
+fi
+if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ tristate 'SGI EFS filesystem support' CONFIG_EFS_FS
+fi
+
+if [ "$CONFIG_NET" = "y" ]; then
+
+mainmenu_option next_comment
+comment 'Network File Systems'
+
if [ "$CONFIG_INET" = "y" ]; then
+ tristate 'Coda filesystem support (advanced network fs)' CONFIG_CODA_FS
tristate 'NFS filesystem support' CONFIG_NFS_FS
if [ "$CONFIG_NFS_FS" = "y" -a "$CONFIG_IP_PNP" = "y" ]; then
bool ' Root file system on NFS' CONFIG_ROOT_NFS
fi
- tristate 'NFS server support' CONFIG_NFSD
+ if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ tristate 'NFS server support' CONFIG_NFSD
+ fi
if [ "$CONFIG_NFSD" != "n" ]; then
bool ' Emulate SUN NFS server' CONFIG_NFSD_SUN
fi
@@ -42,7 +87,6 @@ if [ "$CONFIG_INET" = "y" ]; then
define_bool CONFIG_LOCKD n
fi
fi
- tristate 'Coda filesystem support (advanced network fs)' CONFIG_CODA_FS
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
@@ -54,37 +98,24 @@ if [ "$CONFIG_IPX" != "n" -o "$CONFIG_INET" != "n" ]; then
source fs/ncpfs/Config.in
fi
fi
-tristate 'OS/2 HPFS filesystem support (read only)' CONFIG_HPFS_FS
-tristate 'NTFS filesystem support (read only)' CONFIG_NTFS_FS
-if [ "$CONFIG_NTFS_FS" != "n" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
- bool ' NTFS read-write support (experimental)' CONFIG_NTFS_RW
+endmenu
fi
-tristate 'System V and Coherent filesystem support' CONFIG_SYSV_FS
-tristate 'Amiga FFS filesystem support' CONFIG_AFFS_FS
-tristate 'Apple Macintosh filesystem support (experimental)' CONFIG_HFS_FS
-tristate 'ROM filesystem support' CONFIG_ROMFS_FS
-tristate 'Kernel automounter support' CONFIG_AUTOFS_FS
if [ "$CONFIG_AFFS_FS" != "n" ]; then
define_bool CONFIG_AMIGA_PARTITION y
fi
-tristate 'UFS filesystem support' CONFIG_UFS_FS
+
+mainmenu_option next_comment
+comment 'Partition Types'
+
bool 'BSD disklabel (BSD partition tables) support' CONFIG_BSD_DISKLABEL
+bool 'Macintosh partition map support' CONFIG_MAC_PARTITION
bool 'SMD disklabel (Sun partition tables) support' CONFIG_SMD_DISKLABEL
bool 'Solaris (x86) partition table support' CONFIG_SOLARIS_X86_PARTITION
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
- tristate 'SGI EFS filesystem support' CONFIG_EFS_FS
-fi
-if [ "$CONFIG_UNIX98_PTYS" = "y" ]; then
- tristate '/dev/pts filesystem for Unix98 PTYs' CONFIG_DEVPTS_FS
+ bool 'Unixware slices support (EXPERIMENTAL)' CONFIG_UNIXWARE_DISKLABEL
fi
-if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
- tristate 'ADFS filesystem support (read only) (EXPERIMENTAL)' CONFIG_ADFS_FS
- tristate 'QNX filesystem support (EXPERIMENTAL)' CONFIG_QNX4FS_FS
- if [ "$CONFIG_QNX4FS_FS" != "n" ]; then
- bool ' QNXFS read-write support (FOR TESTING ONLY)' CONFIG_QNX4FS_RW
- fi
-fi
-bool 'Macintosh partition map support' CONFIG_MAC_PARTITION
+source fs/nls/Config.in
+
endmenu