mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
Introduce Kconfig and Makefile for remade ntfs. And this patch make ntfs and ntfs3 mutually exclusive so only one can be built-in(y), while both can still be built as modules(m). Reviewed-by: Amir Goldstein <amir73il@gmail.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Acked-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
11 lines
368 B
Makefile
11 lines
368 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_NTFS_FS) += ntfs.o
|
|
|
|
ntfs-y := aops.o attrib.o collate.o dir.o file.o index.o inode.o \
|
|
mft.o mst.o namei.o runlist.o super.o unistr.o attrlist.o ea.o \
|
|
upcase.o bitmap.o lcnalloc.o logfile.o reparse.o compress.o \
|
|
iomap.o debug.o sysctl.o quota.o object_id.o bdev-io.o
|
|
|
|
ccflags-$(CONFIG_NTFS_DEBUG) += -DDEBUG
|