mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

Manually rebased: generic/hack-5.4/953-net-patch-linux-kernel-to-support-shortcut-fe.patch ipq806x/patches-5.4/0063-2-tsens-support-configurable-interrupts.patch layerscape/patches-5.4/301-arch-0008-arm-add-new-non-shareable-ioremap.patch layerscape/patches-5.4/820-usb-0009-usb-dwc3-Add-workaround-for-host-mode-VBUS-glitch-wh.patch layerscape/patches-5.4/801-audio-0008-Revert-ASoC-Remove-dev_err-usage-after-platform_get_.patch octeon/patches-5.4/700-allocate_interface_by_label.patch All other patches automatically rebased. Signed-off-by: Liu Linhui <liulinhui36@gmail.com> Signed-off-by: Liu Linhui <liulinhui36@gmail.com>
34 lines
956 B
Diff
34 lines
956 B
Diff
From e64a5b846cd19f86eae8d8f2708f2e483dc37feb Mon Sep 17 00:00:00 2021
|
|
From: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Date: Thu, 28 Jan 2021 12:04:54 +0300
|
|
Subject: [PATCH 09/11] fs/ntfs3: Add NTFS3 in fs/Kconfig and fs/Makefile
|
|
|
|
This adds NTFS3 in fs/Kconfig and fs/Makefile
|
|
|
|
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
---
|
|
fs/Kconfig | 1 +
|
|
fs/Makefile | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
--- a/fs/Kconfig
|
|
+++ b/fs/Kconfig
|
|
@@ -143,6 +143,7 @@ menu "DOS/FAT/NT Filesystems"
|
|
|
|
source "fs/fat/Kconfig"
|
|
source "fs/ntfs/Kconfig"
|
|
+source "fs/ntfs3/Kconfig"
|
|
|
|
endmenu
|
|
endif # BLOCK
|
|
--- a/fs/Makefile
|
|
+++ b/fs/Makefile
|
|
@@ -98,6 +98,7 @@ obj-$(CONFIG_SYSV_FS) += sysv/
|
|
obj-$(CONFIG_CIFS) += cifs/
|
|
obj-$(CONFIG_HPFS_FS) += hpfs/
|
|
obj-$(CONFIG_NTFS_FS) += ntfs/
|
|
+obj-$(CONFIG_NTFS3_FS) += ntfs3/
|
|
obj-$(CONFIG_UFS_FS) += ufs/
|
|
obj-$(CONFIG_EFS_FS) += efs/
|
|
obj-$(CONFIG_JFFS2_FS) += jffs2/
|