Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. config BR2_PACKAGE_CIFS_UTILS
  2. bool "cifs-utils"
  3. # uses fork()
  4. depends on BR2_USE_MMU
  5. help
  6. The in-kernel CIFS filesystem is generally the preferred
  7. method for mounting SMB/CIFS shares on Linux. The in-kernel
  8. CIFS filesystem relies on a set of user-space tools. That
  9. package of tools is called cifs-utils. Although not really
  10. part of Samba proper, these tools were originally part of
  11. the Samba package. For several reasons, shipping these tools
  12. as part of Samba was problematic and it was deemed better to
  13. split them off into their own package.
  14. http://wiki.samba.org/index.php/LinuxCIFS_utils
  15. if BR2_PACKAGE_CIFS_UTILS
  16. config BR2_PACKAGE_CIFS_UTILS_SMBTOOLS
  17. bool "smbtools"
  18. depends on BR2_USE_WCHAR # python3
  19. depends on BR2_TOOLCHAIN_HAS_THREADS # python3
  20. depends on !BR2_STATIC_LIBS # python3
  21. select BR2_PACKAGE_PYTHON3 # runtime
  22. help
  23. Install the smb tools smbinfo and smb2-quota (python
  24. implementations).
  25. comment "smbtools needs a toolchain w/ wchar, threads, dynamic library"
  26. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
  27. BR2_STATIC_LIBS
  28. endif