xref: /OK3568_Linux_fs/buildroot/package/ntfs-3g/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_NTFS_3G
2	bool "ntfs-3g"
3	depends on BR2_USE_WCHAR
4	depends on BR2_TOOLCHAIN_HAS_THREADS
5	depends on BR2_USE_MMU
6	depends on !BR2_STATIC_LIBS
7	help
8	  The NTFS-3G driver is an open source, freely available
9	  read/write NTFS driver for Linux, FreeBSD, Mac OS X, NetBSD,
10	  and Haiku. It provides safe and fast handling of the Windows
11	  XP, Windows Server 2003, Windows 2000 and Windows Vista file
12	  systems. Most POSIX file system operations are supported, with
13	  the exception of full file ownership and access right support.
14
15	  http://www.ntfs-3g.org/
16
17if BR2_PACKAGE_NTFS_3G
18
19config BR2_PACKAGE_NTFS_3G_ENCRYPTED
20	bool "encrypted volumes"
21	depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt
22	select BR2_PACKAGE_GNUTLS
23	select BR2_PACKAGE_LIBGCRYPT
24	help
25	  Enable support for NTFS encrypted volumes.
26
27config BR2_PACKAGE_NTFS_3G_NTFSPROGS
28	bool "ntfsprogs"
29	help
30	  Install NTFS utilities.
31
32endif
33
34comment "ntfs-3g needs a toolchain w/ wchar, threads, dynamic library"
35	depends on BR2_USE_MMU
36	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
37