Kconfig 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. config NFS_FS
  2. tristate "NFS client support"
  3. depends on INET && FILE_LOCKING
  4. select LOCKD
  5. select SUNRPC
  6. select NFS_ACL_SUPPORT if NFS_V3_ACL
  7. help
  8. Choose Y here if you want to access files residing on other
  9. computers using Sun's Network File System protocol. To compile
  10. this file system support as a module, choose M here: the module
  11. will be called nfs.
  12. To mount file systems exported by NFS servers, you also need to
  13. install the user space mount.nfs command which can be found in
  14. the Linux nfs-utils package, available from http://linux-nfs.org/.
  15. Information about using the mount command is available in the
  16. mount(8) man page. More detail about the Linux NFS client
  17. implementation is available via the nfs(5) man page.
  18. Below you can choose which versions of the NFS protocol are
  19. available in the kernel to mount NFS servers. Support for NFS
  20. version 2 (RFC 1094) is always available when NFS_FS is selected.
  21. To configure a system which mounts its root file system via NFS
  22. at boot time, say Y here, select "Kernel level IP
  23. autoconfiguration" in the NETWORK menu, and select "Root file
  24. system on NFS" below. You cannot compile this file system as a
  25. module in this case.
  26. If unsure, say N.
  27. config NFS_V3
  28. bool "NFS client support for NFS version 3"
  29. depends on NFS_FS
  30. help
  31. This option enables support for version 3 of the NFS protocol
  32. (RFC 1813) in the kernel's NFS client.
  33. If unsure, say Y.
  34. config NFS_V3_ACL
  35. bool "NFS client support for the NFSv3 ACL protocol extension"
  36. depends on NFS_V3
  37. help
  38. Some NFS servers support an auxiliary NFSv3 ACL protocol that
  39. Sun added to Solaris but never became an official part of the
  40. NFS version 3 protocol. This protocol extension allows
  41. applications on NFS clients to manipulate POSIX Access Control
  42. Lists on files residing on NFS servers. NFS servers enforce
  43. ACLs on local files whether this protocol is available or not.
  44. Choose Y here if your NFS server supports the Solaris NFSv3 ACL
  45. protocol extension and you want your NFS client to allow
  46. applications to access and modify ACLs on files on the server.
  47. Most NFS servers don't support the Solaris NFSv3 ACL protocol
  48. extension. You can choose N here or specify the "noacl" mount
  49. option to prevent your NFS client from trying to use the NFSv3
  50. ACL protocol.
  51. If unsure, say N.
  52. config NFS_V4
  53. bool "NFS client support for NFS version 4"
  54. depends on NFS_FS
  55. select SUNRPC_GSS
  56. help
  57. This option enables support for version 4 of the NFS protocol
  58. (RFC 3530) in the kernel's NFS client.
  59. To mount NFS servers using NFSv4, you also need to install user
  60. space programs which can be found in the Linux nfs-utils package,
  61. available from http://linux-nfs.org/.
  62. If unsure, say Y.
  63. config NFS_V4_1
  64. bool "NFS client support for NFSv4.1 (EXPERIMENTAL)"
  65. depends on NFS_FS && NFS_V4 && EXPERIMENTAL
  66. select SUNRPC_BACKCHANNEL
  67. select PNFS_FILE_LAYOUT
  68. select PNFS_BLOCK
  69. select MD
  70. select BLK_DEV_DM
  71. help
  72. This option enables support for minor version 1 of the NFSv4 protocol
  73. (RFC 5661 and RFC 5663) in the kernel's NFS client.
  74. If unsure, say N.
  75. config PNFS_FILE_LAYOUT
  76. tristate
  77. config PNFS_BLOCK
  78. tristate
  79. config PNFS_OBJLAYOUT
  80. tristate "Provide support for the pNFS Objects Layout Driver for NFSv4.1 pNFS (EXPERIMENTAL)"
  81. depends on NFS_FS && NFS_V4_1 && SCSI_OSD_ULD
  82. help
  83. Say M here if you want your pNFS client to support the Objects Layout Driver.
  84. Requires the SCSI osd initiator library (SCSI_OSD_INITIATOR) and
  85. upper level driver (SCSI_OSD_ULD).
  86. If unsure, say N.
  87. config ROOT_NFS
  88. bool "Root file system on NFS"
  89. depends on NFS_FS=y && IP_PNP
  90. help
  91. If you want your system to mount its root file system via NFS,
  92. choose Y here. This is common practice for managing systems
  93. without local permanent storage. For details, read
  94. <file:Documentation/filesystems/nfs/nfsroot.txt>.
  95. Most people say N here.
  96. config NFS_FSCACHE
  97. bool "Provide NFS client caching support"
  98. depends on NFS_FS=m && FSCACHE || NFS_FS=y && FSCACHE=y
  99. help
  100. Say Y here if you want NFS data to be cached locally on disc through
  101. the general filesystem cache manager
  102. config NFS_USE_LEGACY_DNS
  103. bool "Use the legacy NFS DNS resolver"
  104. depends on NFS_V4
  105. help
  106. The kernel now provides a method for translating a host name into an
  107. IP address. Select Y here if you would rather use your own DNS
  108. resolver script.
  109. If unsure, say N
  110. config NFS_USE_KERNEL_DNS
  111. bool
  112. depends on NFS_V4 && !NFS_USE_LEGACY_DNS
  113. select DNS_RESOLVER
  114. select KEYS
  115. default y
  116. config NFS_USE_NEW_IDMAPPER
  117. bool "Use the new idmapper upcall routine"
  118. depends on NFS_V4 && KEYS
  119. help
  120. Say Y here if you want NFS to use the new idmapper upcall functions.
  121. You will need /sbin/request-key (usually provided by the keyutils
  122. package). For details, read
  123. <file:Documentation/filesystems/nfs/idmapper.txt>.
  124. If you are unsure, say N.