Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58680258 authored by Namjae Jeon's avatar Namjae Jeon Committed by lixiang
Browse files

exfat: add Kconfig and Makefile



This adds the Kconfig and Makefile for exfat.

Signed-off-by: default avatarNamjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: default avatarSungjong Seo <sj1557.seo@samsung.com>
Reviewed-by: default avatarPali Rohár <pali.rohar@gmail.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Git-commit: b9d1e2e6265f5dc25e9f5dbfbde3e53d8a4958ac
Git-repo: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/


Change-Id: I8730b0a0eb0d7d55f58cdf79094962540cc8d874
Signed-off-by: default avatarlixiang <lixiang@codeaurora.org>
parent 8c86f959
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -140,9 +140,10 @@ endmenu
endif # BLOCK

if BLOCK
menu "DOS/FAT/NT Filesystems"
menu "DOS/FAT/EXFAT/NT Filesystems"

source "fs/fat/Kconfig"
source "fs/exfat/Kconfig"
source "fs/ntfs/Kconfig"

endmenu
+1 −0
Original line number Diff line number Diff line
@@ -84,6 +84,7 @@ obj-$(CONFIG_HUGETLBFS) += hugetlbfs/
obj-$(CONFIG_CODA_FS)		+= coda/
obj-$(CONFIG_MINIX_FS)		+= minix/
obj-$(CONFIG_FAT_FS)		+= fat/
obj-$(CONFIG_EXFAT_FS)		+= exfat/
obj-$(CONFIG_BFS_FS)		+= bfs/
obj-$(CONFIG_ISO9660_FS)	+= isofs/
obj-$(CONFIG_HFSPLUS_FS)	+= hfsplus/ # Before hfs to find wrapped HFS+

fs/exfat/Kconfig

0 → 100644
+22 −0
Original line number Diff line number Diff line
# 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 that is used for user visible
	  filenames and the UTF-16 character encoding that the exFAT
	  filesystem uses.  This can be overridden with the "iocharset" mount
	  option for the exFAT filesystems.

fs/exfat/Makefile

0 → 100644
+8 −0
Original line number Diff line number Diff line
# 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