Blame SOURCES/0008-fs-ntfs3-Add-Kconfig-Makefile-and-doc.patch
|
Kmods SIG |
8b815c |
From 12dad495eaab95e0bb784c43869073617c513ea4 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
8b815c |
From: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
Date: Fri, 13 Aug 2021 17:21:30 +0300
|
|
Kmods SIG |
8b815c |
Subject: [Backport 12dad495eaab] src: Add Kconfig, Makefile and doc
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
This adds Kconfig, Makefile and doc
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
---
|
|
Kmods SIG |
8b815c |
src/Makefile | 36 ++++++++++++++++++++++++++++++++++++
|
|
Kmods SIG |
8b815c |
1 file changed, 36 insertions(+)
|
|
Kmods SIG |
8b815c |
create mode 100644 src/Makefile
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
diff --git a/src/Makefile b/src/Makefile
|
|
Kmods SIG |
8b815c |
new file mode 100644
|
|
Kmods SIG |
8b815c |
index 0000000000000000000000000000000000000000..279701b62bbeaed684abc1e2a4d448f71c403e95
|
|
Kmods SIG |
8b815c |
--- /dev/null
|
|
Kmods SIG |
8b815c |
+++ b/src/Makefile
|
|
Kmods SIG |
8b815c |
@@ -0,0 +1,36 @@
|
|
Kmods SIG |
8b815c |
+# SPDX-License-Identifier: GPL-2.0
|
|
Kmods SIG |
8b815c |
+#
|
|
Kmods SIG |
8b815c |
+# Makefile for the ntfs3 filesystem support.
|
|
Kmods SIG |
8b815c |
+#
|
|
Kmods SIG |
8b815c |
+
|
|
Kmods SIG |
8b815c |
+# to check robot warnings
|
|
Kmods SIG |
8b815c |
+ccflags-y += -Wint-to-pointer-cast \
|
|
Kmods SIG |
8b815c |
+ $(call cc-option,-Wunused-but-set-variable,-Wunused-const-variable) \
|
|
Kmods SIG |
8b815c |
+ $(call cc-option,-Wold-style-declaration,-Wout-of-line-declaration)
|
|
Kmods SIG |
8b815c |
+
|
|
Kmods SIG |
8b815c |
+obj-$(CONFIG_NTFS3_FS) += ntfs3.o
|
|
Kmods SIG |
8b815c |
+
|
|
Kmods SIG |
8b815c |
+ntfs3-y := attrib.o \
|
|
Kmods SIG |
8b815c |
+ attrlist.o \
|
|
Kmods SIG |
8b815c |
+ bitfunc.o \
|
|
Kmods SIG |
8b815c |
+ bitmap.o \
|
|
Kmods SIG |
8b815c |
+ dir.o \
|
|
Kmods SIG |
8b815c |
+ fsntfs.o \
|
|
Kmods SIG |
8b815c |
+ frecord.o \
|
|
Kmods SIG |
8b815c |
+ file.o \
|
|
Kmods SIG |
8b815c |
+ fslog.o \
|
|
Kmods SIG |
8b815c |
+ inode.o \
|
|
Kmods SIG |
8b815c |
+ index.o \
|
|
Kmods SIG |
8b815c |
+ lznt.o \
|
|
Kmods SIG |
8b815c |
+ namei.o \
|
|
Kmods SIG |
8b815c |
+ record.o \
|
|
Kmods SIG |
8b815c |
+ run.o \
|
|
Kmods SIG |
8b815c |
+ super.o \
|
|
Kmods SIG |
8b815c |
+ upcase.o \
|
|
Kmods SIG |
8b815c |
+ xattr.o
|
|
Kmods SIG |
8b815c |
+
|
|
Kmods SIG |
8b815c |
+ntfs3-$(CONFIG_NTFS3_LZX_XPRESS) += $(addprefix lib/,\
|
|
Kmods SIG |
8b815c |
+ decompress_common.o \
|
|
Kmods SIG |
8b815c |
+ lzx_decompress.o \
|
|
Kmods SIG |
8b815c |
+ xpress_decompress.o \
|
|
Kmods SIG |
8b815c |
+ )
|
|
Kmods SIG |
8b815c |
\ No newline at end of file
|
|
Kmods SIG |
8b815c |
--
|
|
Kmods SIG |
8b815c |
2.31.1
|
|
Kmods SIG |
8b815c |
|