Config.in.fsnet 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. menu "Network filesystems"
  4. config ADK_WALDUX_KERNEL_FS_POSIX_ACL
  5. bool
  6. config ADK_WALDUX_KERNEL_CIFS
  7. tristate "CIFS support"
  8. select ADK_WALDUX_KERNEL_NETWORK_FILESYSTEMS
  9. select ADK_WALDUX_KERNEL_CRYPTO_MD4
  10. select ADK_WALDUX_KERNEL_CRYPTO_MD5
  11. select ADK_WALDUX_KERNEL_CRYPTO_HMAC
  12. select ADK_WALDUX_KERNEL_CRYPTO_ARC4
  13. select ADK_WALDUX_KERNEL_CRYPTO_ECB
  14. select ADK_WALDUX_KERNEL_CRYPTO_DES
  15. select ADK_WALDUX_KERNEL_CRYPTO_SHA256
  16. select ADK_WALDUX_KERNEL_NLS_UTF8
  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_WALDUX_KERNEL_CODA_FS
  39. tristate "Support for CODA filesystem"
  40. select ADK_WALDUX_KERNEL_NETWORK_FILESYSTEMS
  41. help
  42. This is the kernel part of the client for the CODA filesystem.
  43. config ADK_WALDUX_KERNEL_NFS_V3
  44. bool
  45. select ADK_WALDUX_KERNEL_NETWORK_FILESYSTEMS
  46. config ADK_WALDUX_KERNEL_NFS_V4
  47. bool
  48. select ADK_WALDUX_KERNEL_NETWORK_FILESYSTEMS
  49. config ADK_WALDUX_KERNEL_NFS_FS
  50. tristate "NFS client support"
  51. select ADK_WALDUX_KERNEL_NFS_V3
  52. select ADK_WALDUX_KERNEL_FILE_LOCKING
  53. select ADK_WALDUX_KERNEL_DNOTIFY
  54. select ADK_WALDUX_KERNEL_SUNRPC
  55. select ADK_WALDUX_KERNEL_LOCKD
  56. select ADK_WALDUX_KERNEL_NETWORK_FILESYSTEMS
  57. help
  58. If you are connected to some other (usually local) Unix computer
  59. (using SLIP, PLIP, PPP or Ethernet) and want to mount files residing
  60. on that computer (the NFS server) using the Network File Sharing
  61. protocol, say Y. "Mounting files" means that the client can access
  62. the files with usual UNIX commands as if they were sitting on the
  63. client's hard disk. For this to work, the server must run the
  64. programs nfsd and mountd (but does not need to have NFS file system
  65. support enabled in its kernel). NFS is explained in the Network
  66. Administrator's Guide, available from
  67. <http://www.tldp.org/docs.html#guide>, on its man page: "man
  68. nfs", and in the NFS-HOWTO.
  69. A superior but less widely used alternative to NFS is provided by
  70. the Coda file system; see "Coda file system support" below.
  71. If you say Y here, you should have said Y to TCP/IP networking also.
  72. This option would enlarge your kernel by about 27 KB.
  73. To compile this file system support as a module, choose M here: the
  74. module will be called nfs.
  75. If you are configuring a diskless machine which will mount its root
  76. file system over NFS at boot time, say Y here and to "Kernel
  77. level IP autoconfiguration" above and to "Root file system on NFS"
  78. below. You cannot compile this driver as a module in this case.
  79. There are two packages designed for booting diskless machines over
  80. the net: netboot, available from
  81. <http://ftp1.sourceforge.net/netboot/>, and Etherboot,
  82. available from <http://ftp1.sourceforge.net/etherboot/>.
  83. If you don't know what all this is about, say N.
  84. Kernel modules for NFS client support
  85. config ADK_WALDUX_KERNEL_NFSD_V3
  86. bool
  87. config ADK_WALDUX_KERNEL_NFSD_V4
  88. bool
  89. select ADK_WALDUX_KERNEL_SUNRPC_GSS
  90. default y if ADK_PACKAGE_NFS_UTILS_V4
  91. default n
  92. config ADK_WALDUX_KERNEL_NFSD
  93. tristate "NFS server support"
  94. select ADK_WALDUX_KERNEL_EXPORTFS
  95. select ADK_WALDUX_KERNEL_NFSD_V3
  96. select ADK_WALDUX_KERNEL_DNOTIFY
  97. select ADK_WALDUX_KERNEL_FILE_LOCKING
  98. select ADK_WALDUX_KERNEL_SUNRPC
  99. select ADK_WALDUX_KERNEL_LOCKD
  100. select ADK_WALDUX_KERNEL_NETWORK_FILESYSTEMS
  101. help
  102. If you want your Linux box to act as an NFS *server*, so that other
  103. computers on your local network which support NFS can access certain
  104. directories on your box transparently, you have two options: you can
  105. use the self-contained user space program nfsd, in which case you
  106. should say N here, or you can say Y and use the kernel based NFS
  107. server. The advantage of the kernel based solution is that it is
  108. faster.
  109. In either case, you will need support software; the respective
  110. locations are given in the file <file:Documentation/Changes> in the
  111. NFS section.
  112. If you say Y here, you will get support for version 2 of the NFS
  113. protocol (NFSv2). If you also want NFSv3, say Y to the next question
  114. as well.
  115. Please read the NFS-HOWTO, available from
  116. <http://www.tldp.org/docs.html#howto>.
  117. config ADK_WALDUX_KERNEL_LOCKD
  118. tristate
  119. config ADK_WALDUX_KERNEL_SUNRPC
  120. tristate
  121. config ADK_WALDUX_KERNEL_SUNRPC_GSS
  122. tristate
  123. select ADK_WALDUX_KERNEL_SUNRPC
  124. config ADK_WALDUX_KERNEL_RPCSEC_GSS_KRB5
  125. tristate "RPC security support"
  126. select ADK_WALDUX_KERNEL_NETWORK_FILESYSTEMS
  127. select ADK_WALDUX_KERNEL_SUNRPC_GSS
  128. select ADK_WALDUX_KERNEL_SUNRPC
  129. select ADK_WALDUX_KERNEL_CRYPTO
  130. select ADK_WALDUX_KERNEL_CRYPTO_MD5
  131. select ADK_WALDUX_KERNEL_CRYPTO_DES
  132. select ADK_WALDUX_KERNEL_CRYPTO_CBC
  133. select ADK_WALDUX_KERNEL_CRYPTO_CTS
  134. select ADK_WALDUX_KERNEL_CRYPTO_ECB
  135. select ADK_WALDUX_KERNEL_CRYPTO_HMAC
  136. select ADK_WALDUX_KERNEL_CRYPTO_SHA1
  137. select ADK_WALDUX_KERNEL_CRYPTO_AES
  138. select ADK_WALDUX_KERNEL_CRYPTO_ARC4
  139. endmenu