forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds the Kconfig and Makefile for exfat. Signed-off-by: Namjae Jeon <[email protected]> Signed-off-by: Sungjong Seo <[email protected]> Reviewed-by: Pali Rohár <[email protected]> Reviewed-by: Christoph Hellwig <[email protected]> Signed-off-by: Al Viro <[email protected]>
- Loading branch information
1 parent
370e812
commit b9d1e2e
Showing
4 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
config EXFAT_FS | ||
tristate "exFAT filesystem support" | ||
select NLS | ||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
# | ||
# Makefile for the linux exFAT filesystem support. | ||
# | ||
obj-$(CONFIG_EXFAT_FS) += exfat.o | ||
|
||
exfat-y := inode.o namei.o dir.o super.o fatent.o cache.o nls.o misc.o \ | ||
file.o balloc.o |