Kconfig 786 B

123456789101112131415161718192021222324
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. config EXFAT_FS
  3. tristate "exFAT filesystem support"
  4. select BUFFER_HEAD
  5. select NLS
  6. select LEGACY_DIRECT_IO
  7. help
  8. This allows you to mount devices formatted with the exFAT file system.
  9. exFAT is typically used on SD-Cards or USB sticks.
  10. To compile this as a module, choose M here: the module will be called
  11. exfat.
  12. config EXFAT_DEFAULT_IOCHARSET
  13. string "Default iocharset for exFAT"
  14. default "utf8"
  15. depends on EXFAT_FS
  16. help
  17. Set this to the default input/output character set to use for
  18. converting between the encoding that is used for user visible
  19. filenames and the UTF-16 character encoding that the exFAT
  20. filesystem uses. This can be overridden with the "iocharset" mount
  21. option for the exFAT filesystems.