diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1997-04-29 21:13:14 +0000 |
---|---|---|
committer | <ralf@linux-mips.org> | 1997-04-29 21:13:14 +0000 |
commit | 19c9bba94152148523ba0f7ef7cffe3d45656b11 (patch) | |
tree | 40b1cb534496a7f1ca0f5c314a523c69f1fee464 /fs/Config.in | |
parent | 7206675c40394c78a90e74812bbdbf8cf3cca1be (diff) |
Import of Linux/MIPS 2.1.36
Diffstat (limited to 'fs/Config.in')
-rw-r--r-- | fs/Config.in | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/fs/Config.in b/fs/Config.in index 39161ad95..fe279dc94 100644 --- a/fs/Config.in +++ b/fs/Config.in @@ -6,9 +6,7 @@ comment 'Filesystems' bool 'Quota support' CONFIG_QUOTA tristate 'Minix fs support' CONFIG_MINIX_FS -tristate 'Extended fs support' CONFIG_EXT_FS tristate 'Second extended fs support' CONFIG_EXT2_FS -tristate 'xiafs filesystem support' CONFIG_XIA_FS # msdos filesystems tristate 'DOS FAT fs support' CONFIG_FAT_FS @@ -26,6 +24,19 @@ if [ "$CONFIG_INET" = "y" ]; then 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 @@ -38,6 +49,8 @@ tristate 'ISO9660 cdrom filesystem support' CONFIG_ISO9660_FS 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 @@ -47,3 +60,4 @@ if [ "$CONFIG_UFS_FS" != "n" ]; then bool 'SMD disklabel (Sun partition tables) support' CONFIG_SMD_DISKLABEL fi endmenu + |