Config.in 893 B

12345678910111213141516171819202122232425262728293031
  1. config BR2_PACKAGE_NTFS_3G
  2. bool "ntfs-3g"
  3. depends on BR2_LARGEFILE
  4. depends on BR2_USE_WCHAR
  5. help
  6. The NTFS-3G driver is an open source, freely available
  7. read/write NTFS driver for Linux, FreeBSD, Mac OS X, NetBSD,
  8. and Haiku. It provides safe and fast handling of the Windows
  9. XP, Windows Server 2003, Windows 2000 and Windows Vista file
  10. systems. Most POSIX file system operations are supported, with
  11. the exception of full file ownership and access right support.
  12. http://www.ntfs-3g.org/
  13. if BR2_PACKAGE_NTFS_3G
  14. config BR2_PACKAGE_NTFS_3G_ENCRYPTED
  15. bool "encrypted volumes"
  16. select BR2_PACKAGE_GNUTLS
  17. help
  18. Enable support for NTFS encrypted volumes.
  19. config BR2_PACKAGE_NTFS_3G_NTFSPROGS
  20. bool "ntfsprogs"
  21. help
  22. Install NTFS utilities.
  23. endif
  24. comment "ntfs-3g requires a toolchain with LARGEFILE and WCHAR support"
  25. depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)