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