d561bf243b
* 'for-kernel-version-from-4.1.0' of https://github.com/namjaejeon/linux-exfat-oot: exfat: github action: run buiuld and tests on for-kernel-version-from-4.1.0 branch exfat: fix ALIGN_DOWN undefined error exfat: using ffs instead of internal logic exfat: using hweight instead of internal logic 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 Change-Id: I7e8add708697faf95952cacdb24bf5f504190fe4
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.
|