Config.in 830 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. comment "nfs-utils needs a toolchain w/ threads"
  2. depends on BR2_USE_MMU
  3. depends on !BR2_TOOLCHAIN_HAS_THREADS
  4. config BR2_PACKAGE_NFS_UTILS
  5. bool "nfs-utils"
  6. depends on BR2_TOOLCHAIN_HAS_THREADS # libtirpc, rpcbind
  7. depends on BR2_USE_MMU # fork()
  8. select BR2_PACKAGE_LIBTIRPC # IPv6 requires libtirpc
  9. select BR2_PACKAGE_RPCBIND # runtime
  10. help
  11. The NFS Linux kernel server.
  12. http://linux-nfs.org/
  13. if BR2_PACKAGE_NFS_UTILS
  14. config BR2_PACKAGE_NFS_UTILS_RPCDEBUG
  15. bool "rpcdebug"
  16. help
  17. The RPC debugging utility
  18. config BR2_PACKAGE_NFS_UTILS_RPC_LOCKD
  19. bool "rpc.lockd"
  20. help
  21. NFS lock manager for Linux kernels older than 2.4
  22. config BR2_PACKAGE_NFS_UTILS_RPC_NFSD
  23. bool "rpc.nfsd"
  24. default y
  25. help
  26. NFS server
  27. config BR2_PACKAGE_NFS_UTILS_RPC_RQUOTAD
  28. bool "rpc.rquotad"
  29. help
  30. NFS remote quota server
  31. endif