lkml.org 
[lkml]   [2020]   [Jan]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v11 11/14] exfat: add Kconfig and Makefile
    Date
    From: Namjae Jeon <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>
    Reviewed-by: Pali Rohár <pali.rohar@gmail.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..f2b0cf2c16b5
    --- /dev/null
    +++ b/fs/exfat/Kconfig
    @@ -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.
    diff --git a/fs/exfat/Makefile b/fs/exfat/Makefile
    new file mode 100644
    index 000000000000..ed51926a4971
    --- /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_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
    --
    2.17.1
    \
     
     \ /
      Last update: 2020-01-18 16:05    [W:6.530 / U:0.460 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site