Config.in.fsnet 5.2 KB

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