mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
* 'for-kernel-version-from-4.1.0' of https://github.com/namjaejeon/linux-exfat-oot: (57 commits) exfat: fix ctime is not updated exfat: fix setting uninitialized time to ctime/atime exfat: convert to new timestamp accessors exfat: convert to ctime accessor functions exfat: fs: pass the request_mask to generic_fillattr exfat: convert to simple_rename_timestamp exfat: ensure that ctime is updated whenever the mtime is exfat: fs: add CONFIG_BUFFER_HEAD exfat: use fat ioctls definitions from include/uapi/linux/msdos_fs.h exfat: github action: remove liunx-4.1 source to get more disk space exfat: support create zero-size directory exfat: support handle zero-size directory exfat: add ioctls for accessing attributes exfat: vfs: get rid of old '->iterate' directory operation exfat: add necessary header for vmalloc exfat: release s_lock before calling dir_emit() exfat: check if filename entries exceeds max filename length exfat: github action: make space for running xfstests exfat: use kvmalloc_array/kvfree instead of kmalloc_array/kfree exfat: splice: Use filemap_splice_read() instead of generic_file_splice_read() ... Change-Id: I74986001151e68824d9d7d56f779b20a4cf6294f
24 lines
753 B
Plaintext
24 lines
753 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
config EXFAT_FS
|
|
tristate "exFAT filesystem support"
|
|
select BUFFER_HEAD
|
|
select NLS
|
|
select LEGACY_DIRECT_IO
|
|
help
|
|
This allows you to mount devices formatted with the exFAT file system.
|
|
exFAT is typically used on SD-Cards or USB sticks.
|
|
|
|
To compile this as a module, choose M here: the module will be called
|
|
exfat.
|
|
|
|
config EXFAT_DEFAULT_IOCHARSET
|
|
string "Default iocharset for exFAT"
|
|
default "utf8"
|
|
depends on EXFAT_FS
|
|
help
|
|
Set this to the default input/output character set to use for
|
|
converting between the encoding is used for user visible filename and
|
|
UTF-16 character that exfat filesystem use, and can be overridden with
|
|
the "iocharset" mount option for exFAT filesystems.
|