linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Namjae Jeon <namjae.jeon@samsung.com>
To: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org
Cc: gregkh@linuxfoundation.org, valdis.kletnieks@vt.edu, hch@lst.de,
	sj1557.seo@samsung.com, Namjae Jeon <namjae.jeon@samsung.com>
Subject: [PATCH v7 11/13] exfat: add Kconfig and Makefile
Date: Fri, 13 Dec 2019 00:50:26 -0500	[thread overview]
Message-ID: <20191213055028.5574-12-namjae.jeon@samsung.com> (raw)
In-Reply-To: <20191213055028.5574-1-namjae.jeon@samsung.com>

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>
---
 fs/exfat/Kconfig  | 21 +++++++++++++++++++++
 fs/exfat/Makefile |  8 ++++++++
 2 files changed, 29 insertions(+)
 create mode 100644 fs/exfat/Kconfig
 create mode 100644 fs/exfat/Makefile

diff --git a/fs/exfat/Kconfig b/fs/exfat/Kconfig
new file mode 100644
index 000000000000..11d841a5f7f0
--- /dev/null
+++ b/fs/exfat/Kconfig
@@ -0,0 +1,21 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+config EXFAT
+	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_FS_DEFAULT_IOCHARSET
+	string "Default iocharset for exFAT"
+	default "utf8"
+	depends on EXFAT
+	help
+	  Set this to the default input/output character set you'd
+	  like exFAT to use. It should probably match the character set
+	  that most of your exFAT filesystems use, and can be overridden
+	  with the "iocharset" mount option for exFAT filesystems.
diff --git a/fs/exfat/Makefile b/fs/exfat/Makefile
new file mode 100644
index 000000000000..e9193346c80c
--- /dev/null
+++ b/fs/exfat/Makefile
@@ -0,0 +1,8 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+#
+# Makefile for the linux exFAT filesystem support.
+#
+obj-$(CONFIG_EXFAT) += exfat.o
+
+exfat-y	:= inode.o namei.o dir.o super.o fatent.o cache.o nls.o misc.o \
+	   file.o balloc.o
-- 
2.17.1


  parent reply	other threads:[~2019-12-13  5:54 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20191213055336epcas1p267699d8a251e052da0ae8194cf5d1983@epcas1p2.samsung.com>
2019-12-13  5:50 ` [PATCH v7 00/13] add the latest exfat driver Namjae Jeon
     [not found]   ` <CGME20191213055337epcas1p24968ee98f2b2db80439c311a59b5d95b@epcas1p2.samsung.com>
2019-12-13  5:50     ` [PATCH v7 01/13] exfat: add in-memory and on-disk structures and headers Namjae Jeon
2019-12-16 13:50       ` Markus Elfring
2019-12-17  0:02         ` Namjae Jeon
2019-12-17  7:36           ` Markus Elfring
2019-12-17  7:56             ` Namjae Jeon
2019-12-17 13:10           ` Enrico Weigelt, metux IT consult
2019-12-18  0:09             ` 전남재/S/W Platform Lab(VD)/Staff Engineer/삼성전자
2019-12-18  9:33               ` Maurizio Lombardi
2019-12-19 11:20                 ` Namjae Jeon
2019-12-16 15:26       ` Markus Elfring
     [not found]   ` <CGME20191213055338epcas1p12ac00549b7d5c92c16a7ff9afd814f94@epcas1p1.samsung.com>
2019-12-13  5:50     ` [PATCH v7 02/13] exfat: add super block operations Namjae Jeon
     [not found]   ` <CGME20191213055339epcas1p2ff141746e3bc076293c7633252387feb@epcas1p2.samsung.com>
2019-12-13  5:50     ` [PATCH v7 03/13] exfat: add inode operations Namjae Jeon
     [not found]   ` <CGME20191213055339epcas1p4c1c4b1646e2ec24f6a48c2f3010208a0@epcas1p4.samsung.com>
2019-12-13  5:50     ` [PATCH v7 04/13] exfat: add directory operations Namjae Jeon
     [not found]   ` <CGME20191213055340epcas1p424dbbfbabc709d2087058573463367a3@epcas1p4.samsung.com>
2019-12-13  5:50     ` [PATCH v7 05/13] exfat: add file operations Namjae Jeon
     [not found]   ` <CGME20191213055341epcas1p4340dae4923a8e512326f7be75a4426e1@epcas1p4.samsung.com>
2019-12-13  5:50     ` [PATCH v7 06/13] exfat: add exfat entry operations Namjae Jeon
     [not found]   ` <CGME20191213055341epcas1p291e09a7a59f59bfd6802e18987bec9e4@epcas1p2.samsung.com>
2019-12-13  5:50     ` [PATCH v7 07/13] exfat: add bitmap operations Namjae Jeon
     [not found]   ` <CGME20191213055342epcas1p2e9f2971a4a7d392173e885b446b3e2c3@epcas1p2.samsung.com>
2019-12-13  5:50     ` [PATCH v7 08/13] exfat: add exfat cache Namjae Jeon
     [not found]   ` <CGME20191213055342epcas1p384b8e47ce6b3689540b55202919165dc@epcas1p3.samsung.com>
2019-12-13  5:50     ` [PATCH v7 09/13] exfat: add misc operations Namjae Jeon
     [not found]   ` <CGME20191213055343epcas1p4cedc37fb1bd39d8b7ce5937aebbc30aa@epcas1p4.samsung.com>
2019-12-13  5:50     ` [PATCH v7 10/13] exfat: add nls operations Namjae Jeon
     [not found]   ` <CGME20191213055344epcas1p4445bead283b45a45eab868907774d529@epcas1p4.samsung.com>
2019-12-13  5:50     ` Namjae Jeon [this message]
     [not found]   ` <CGME20191213055344epcas1p37b9d8fc36fce255eedc99a335feca564@epcas1p3.samsung.com>
2019-12-13  5:50     ` [PATCH v7 12/13] exfat: add exfat in fs/Kconfig and fs/Makefile Namjae Jeon
     [not found]   ` <CGME20191213055345epcas1p10a858f9ceb26f217e00183669947e500@epcas1p1.samsung.com>
2019-12-13  5:50     ` [PATCH v7 13/13] MAINTAINERS: add exfat filesystem Namjae Jeon
2019-12-18  7:30   ` [PATCH v7 00/13] add the latest exfat driver Markus Elfring

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191213055028.5574-12-namjae.jeon@samsung.com \
    --to=namjae.jeon@samsung.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hch@lst.de \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sj1557.seo@samsung.com \
    --cc=valdis.kletnieks@vt.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).