Config.in 956 B

12345678910111213141516171819202122232425262728293031323334353637
  1. config BR2_PACKAGE_NFS_UTILS
  2. bool "nfs-utils"
  3. depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC
  4. depends on BR2_LARGEFILE
  5. select BR2_PACKAGE_PORTMAP
  6. help
  7. The NFS Linux kernel server.
  8. Warning: We do not force largefile support on here on purpose.
  9. Enable it yourself if you want to access big exports!
  10. http://sourceforge.net/projects/nfs
  11. comment "nfs-utils requires a toolchain with RPC and LARGEFILE support"
  12. depends on !BR2_TOOLCHAIN_HAS_NATIVE_RPC || !BR2_LARGEFILE
  13. menu "NFS utilities selection"
  14. depends on BR2_PACKAGE_NFS_UTILS
  15. config BR2_PACKAGE_NFS_UTILS_RPCDEBUG
  16. bool "rpcdebug"
  17. depends on BR2_PACKAGE_NFS_UTILS
  18. help
  19. The RPC debugging utility
  20. config BR2_PACKAGE_NFS_UTILS_RPC_LOCKD
  21. bool "rpc.lockd"
  22. depends on BR2_PACKAGE_NFS_UTILS
  23. help
  24. NFS lock manager for Linux kernels older than 2.4
  25. config BR2_PACKAGE_NFS_UTILS_RPC_RQUOTAD
  26. bool "rpc.rquotad"
  27. depends on BR2_PACKAGE_NFS_UTILS
  28. help
  29. NFS remote quota server
  30. endmenu