Config.in 1007 B

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