Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

exfat: add Kconfig and Makefile

This adds the Kconfig and Makefile for exfat.

Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Sungjong Seo <sj1557.seo@samsung.com>
Reviewed-by: Pali Rohár <pali.rohar@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

authored by

Namjae Jeon and committed by
Al Viro
b9d1e2e6 370e812b

+32 -1
+2 -1
fs/Kconfig
··· 140 140 endif # BLOCK 141 141 142 142 if BLOCK 143 - menu "DOS/FAT/NT Filesystems" 143 + menu "DOS/FAT/EXFAT/NT Filesystems" 144 144 145 145 source "fs/fat/Kconfig" 146 + source "fs/exfat/Kconfig" 146 147 source "fs/ntfs/Kconfig" 147 148 148 149 endmenu
+1
fs/Makefile
··· 83 83 obj-$(CONFIG_CODA_FS) += coda/ 84 84 obj-$(CONFIG_MINIX_FS) += minix/ 85 85 obj-$(CONFIG_FAT_FS) += fat/ 86 + obj-$(CONFIG_EXFAT_FS) += exfat/ 86 87 obj-$(CONFIG_BFS_FS) += bfs/ 87 88 obj-$(CONFIG_ISO9660_FS) += isofs/ 88 89 obj-$(CONFIG_HFSPLUS_FS) += hfsplus/ # Before hfs to find wrapped HFS+
+21
fs/exfat/Kconfig
··· 1 + # SPDX-License-Identifier: GPL-2.0-or-later 2 + 3 + config EXFAT_FS 4 + tristate "exFAT filesystem support" 5 + select NLS 6 + help 7 + This allows you to mount devices formatted with the exFAT file system. 8 + exFAT is typically used on SD-Cards or USB sticks. 9 + 10 + To compile this as a module, choose M here: the module will be called 11 + exfat. 12 + 13 + config EXFAT_DEFAULT_IOCHARSET 14 + string "Default iocharset for exFAT" 15 + default "utf8" 16 + depends on EXFAT_FS 17 + help 18 + Set this to the default input/output character set to use for 19 + converting between the encoding is used for user visible filename and 20 + UTF-16 character that exfat filesystem use, and can be overridden with 21 + the "iocharset" mount option for exFAT filesystems.
+8
fs/exfat/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0-or-later 2 + # 3 + # Makefile for the linux exFAT filesystem support. 4 + # 5 + obj-$(CONFIG_EXFAT_FS) += exfat.o 6 + 7 + exfat-y := inode.o namei.o dir.o super.o fatent.o cache.o nls.o misc.o \ 8 + file.o balloc.o