Kconfig 741 B

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