Config.in.fsnet 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. config ADK_KERNEL_FS_POSIX_ACL
  2. boolean
  3. default y
  4. config ADK_KERNEL_CIFS
  5. prompt "CIFS support"
  6. tristate
  7. select ADK_KERNEL_NETWORK_FILESYSTEMS
  8. select ADK_KERNEL_CRYPTO_MD4
  9. select ADK_KERNEL_CRYPTO_MD5
  10. select ADK_KERNEL_CRYPTO_HMAC
  11. select ADK_KERNEL_CRYPTO_ARC4
  12. select ADK_KERNEL_CRYPTO_ECB
  13. select ADK_KERNEL_CRYPTO_DES
  14. select ADK_KERNEL_CRYPTO_SHA256
  15. default m if ADK_PACKAGE_CIFS_UTILS
  16. default n
  17. help
  18. This is the client VFS module for the Common Internet File System
  19. (CIFS) protocol which is the successor to the Server Message Block
  20. (SMB) protocol, the native file sharing mechanism for most early
  21. PC operating systems. The CIFS protocol is fully supported by
  22. file servers such as Windows 2000 (including Windows 2003, NT 4
  23. and Windows XP) as well by Samba (which provides excellent CIFS
  24. server support for Linux and many other operating systems). Limited
  25. support for Windows ME and similar servers is provided as well.
  26. You must use the smbfs client filesystem to access older SMB servers
  27. such as OS/2 and DOS.
  28. The intent of the cifs module is to provide an advanced
  29. network file system client for mounting to CIFS compliant servers,
  30. including support for dfs (hierarchical name space), secure per-user
  31. session establishment, safe distributed caching (oplock), optional
  32. packet signing, Unicode and other internationalization improvements,
  33. and optional Winbind (nsswitch) integration. You do not need to enable
  34. cifs if running only a (Samba) server. It is possible to enable both
  35. smbfs and cifs (e.g. if you are using CIFS for accessing Windows 2003
  36. and Samba 3 servers, and smbfs for accessing old servers). If you need
  37. to mount to Samba or Windows from this machine, say Y.
  38. config ADK_KERNEL_CODA_FS
  39. prompt "Support for CODA filesystem"
  40. tristate
  41. select ADK_KERNEL_NETWORK_FILESYSTEMS
  42. default n
  43. help
  44. This is the kernel part of the client for the CODA filesystem.
  45. config ADK_KERNEL_NFS_V4
  46. boolean
  47. select ADK_KERNEL_NETWORK_FILESYSTEMS
  48. default y if ADK_PACKAGE_NFS_UTILS_V4
  49. default n
  50. config ADK_KERNEL_NFS_FS
  51. prompt "NFS client support"
  52. tristate
  53. select ADK_KERNEL_NFS_V3
  54. select ADK_KERNEL_FILE_LOCKING
  55. select ADK_KERNEL_DNOTIFY
  56. select ADK_KERNEL_SUNRPC
  57. select ADK_KERNEL_LOCKD
  58. select ADK_KERNEL_NETWORK_FILESYSTEMS
  59. default m if ADK_PACKAGE_NFS_UTILS_CLIENT
  60. default n
  61. help
  62. If you are connected to some other (usually local) Unix computer
  63. (using SLIP, PLIP, PPP or Ethernet) and want to mount files residing
  64. on that computer (the NFS server) using the Network File Sharing
  65. protocol, say Y. "Mounting files" means that the client can access
  66. the files with usual UNIX commands as if they were sitting on the
  67. client's hard disk. For this to work, the server must run the
  68. programs nfsd and mountd (but does not need to have NFS file system
  69. support enabled in its kernel). NFS is explained in the Network
  70. Administrator's Guide, available from
  71. <http://www.tldp.org/docs.html#guide>, on its man page: "man
  72. nfs", and in the NFS-HOWTO.
  73. A superior but less widely used alternative to NFS is provided by
  74. the Coda file system; see "Coda file system support" below.
  75. If you say Y here, you should have said Y to TCP/IP networking also.
  76. This option would enlarge your kernel by about 27 KB.
  77. To compile this file system support as a module, choose M here: the
  78. module will be called nfs.
  79. If you are configuring a diskless machine which will mount its root
  80. file system over NFS at boot time, say Y here and to "Kernel
  81. level IP autoconfiguration" above and to "Root file system on NFS"
  82. below. You cannot compile this driver as a module in this case.
  83. There are two packages designed for booting diskless machines over
  84. the net: netboot, available from
  85. <http://ftp1.sourceforge.net/netboot/>, and Etherboot,
  86. available from <http://ftp1.sourceforge.net/etherboot/>.
  87. If you don't know what all this is about, say N.
  88. Kernel modules for NFS client support
  89. config ADK_KERNEL_NFSD_V3
  90. boolean
  91. default n
  92. config ADK_KERNEL_NFSD_V4
  93. boolean
  94. select ADK_KERNEL_SUNRPC_GSS
  95. default y if ADK_PACKAGE_NFS_UTILS_V4
  96. default n
  97. config ADK_KERNEL_NFSD
  98. prompt "NFS server support"
  99. tristate
  100. select ADK_KERNEL_EXPORTFS
  101. select ADK_KERNEL_NFSD_V3
  102. select ADK_KERNEL_DNOTIFY
  103. select ADK_KERNEL_FILE_LOCKING
  104. select ADK_KERNEL_SUNRPC
  105. select ADK_KERNEL_LOCKD
  106. select ADK_KERNEL_NETWORK_FILESYSTEMS
  107. default m if ADK_PACKAGE_NFS_UTILS_SERVER
  108. default n
  109. help
  110. If you want your Linux box to act as an NFS *server*, so that other
  111. computers on your local network which support NFS can access certain
  112. directories on your box transparently, you have two options: you can
  113. use the self-contained user space program nfsd, in which case you
  114. should say N here, or you can say Y and use the kernel based NFS
  115. server. The advantage of the kernel based solution is that it is
  116. faster.
  117. In either case, you will need support software; the respective
  118. locations are given in the file <file:Documentation/Changes> in the
  119. NFS section.
  120. If you say Y here, you will get support for version 2 of the NFS
  121. protocol (NFSv2). If you also want NFSv3, say Y to the next question
  122. as well.
  123. Please read the NFS-HOWTO, available from
  124. <http://www.tldp.org/docs.html#howto>.
  125. config ADK_KERNEL_LOCKD
  126. tristate
  127. default n
  128. config ADK_KERNEL_SUNRPC
  129. tristate
  130. default n
  131. config ADK_KERNEL_SUNRPC_GSS
  132. tristate
  133. select ADK_KERNEL_SUNRPC
  134. default n
  135. config ADK_KERNEL_RPCSEC_GSS_KRB5
  136. prompt "RPC security support"
  137. tristate
  138. select ADK_KERNEL_NETWORK_FILESYSTEMS
  139. select ADK_KERNEL_SUNRPC_GSS
  140. select ADK_KERNEL_SUNRPC
  141. select ADK_KERNEL_CRYPTO
  142. select ADK_KERNEL_CRYPTO_MD5
  143. select ADK_KERNEL_CRYPTO_DES
  144. select ADK_KERNEL_CRYPTO_CBC
  145. select ADK_KERNEL_CRYPTO_CTS
  146. select ADK_KERNEL_CRYPTO_ECB
  147. select ADK_KERNEL_CRYPTO_HMAC
  148. select ADK_KERNEL_CRYPTO_SHA1
  149. select ADK_KERNEL_CRYPTO_AES
  150. select ADK_KERNEL_CRYPTO_ARC4
  151. default m if ADK_PACKAGE_NFS_UTILS_V4
  152. default n
  153. help