1config 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 15 http://wiki.samba.org/index.php/LinuxCIFS_utils 16 17if BR2_PACKAGE_CIFS_UTILS 18 19config BR2_PACKAGE_CIFS_UTILS_SMBTOOLS 20 bool "smbtools" 21 depends on BR2_USE_WCHAR # python3 22 depends on BR2_TOOLCHAIN_HAS_THREADS # python3 23 depends on !BR2_STATIC_LIBS # python3 24 select BR2_PACKAGE_PYTHON3 if !BR2_PACKAGE_PYTHON # runtime 25 help 26 Install the smb tools smbinfo and smb2-quota (python 27 implementations). 28 29comment "smbtools needs a toolchain w/ wchar, threads, dynamic library" 30 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ 31 BR2_STATIC_LIBS 32 33endif 34