[openwrt/openwrt] kernel: move F2FS_FS_XATTR and F2FS_STAT_FS symbols to generic

LEDE Commits lede-commits at lists.infradead.org
Fri Oct 9 18:20:40 EDT 2020


dangole pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/5423d9d27e9e4eb829e9aabd4f2a334b5547d705

commit 5423d9d27e9e4eb829e9aabd4f2a334b5547d705
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Fri Oct 9 23:16:53 2020 +0100

    kernel: move F2FS_FS_XATTR and F2FS_STAT_FS symbols to generic
    
    Similar to how it was already done for other filesystems' *_FS_XATTR
    kernel config symbols, also move CONFIG_F2FS_FS_XATTR=y and
    CONFIG_F2FS_STAT_FS=y to target/linux/generic.
    
    Signed-off-by: Daniel Golle <daniel at makrotopia.org>
---
 target/linux/armvirt/config-4.19     | 2 --
 target/linux/armvirt/config-5.4      | 1 -
 target/linux/generic/config-4.19     | 2 ++
 target/linux/generic/config-5.4      | 2 ++
 target/linux/imx6/config-4.19        | 2 --
 target/linux/imx6/config-5.4         | 1 -
 target/linux/malta/config-4.19       | 2 --
 target/linux/malta/config-5.4        | 1 -
 target/linux/mvebu/config-4.19       | 2 --
 target/linux/mvebu/config-5.4        | 1 -
 target/linux/octeon/config-4.19      | 2 --
 target/linux/octeon/config-5.4       | 1 -
 target/linux/octeontx/config-5.4     | 1 -
 target/linux/omap/config-4.19        | 2 --
 target/linux/omap/config-5.4         | 1 -
 target/linux/rockchip/config-default | 1 -
 target/linux/sunxi/config-4.19       | 2 --
 target/linux/sunxi/config-5.4        | 1 -
 target/linux/tegra/config-4.19       | 2 --
 target/linux/tegra/config-5.4        | 1 -
 target/linux/x86/config-4.19         | 2 --
 target/linux/x86/config-5.4          | 1 -
 target/linux/zynq/config-4.19        | 2 --
 target/linux/zynq/config-5.4         | 1 -
 24 files changed, 4 insertions(+), 32 deletions(-)

diff --git a/target/linux/armvirt/config-4.19 b/target/linux/armvirt/config-4.19
index 2ef1786af5..a9a17ecae3 100644
--- a/target/linux/armvirt/config-4.19
+++ b/target/linux/armvirt/config-4.19
@@ -58,8 +58,6 @@ CONFIG_EXT4_FS=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_FS_XATTR=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FAILOVER=y
 CONFIG_FIX_EARLYCON_MEM=y
 CONFIG_FRAME_POINTER=y
diff --git a/target/linux/armvirt/config-5.4 b/target/linux/armvirt/config-5.4
index ec2c232cc2..30ad3d26ea 100644
--- a/target/linux/armvirt/config-5.4
+++ b/target/linux/armvirt/config-5.4
@@ -71,7 +71,6 @@ CONFIG_EXT4_FS=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FAILOVER=y
 CONFIG_FIX_EARLYCON_MEM=y
 CONFIG_FRAME_POINTER=y
diff --git a/target/linux/generic/config-4.19 b/target/linux/generic/config-4.19
index d4a942f9aa..6c88e41593 100644
--- a/target/linux/generic/config-4.19
+++ b/target/linux/generic/config-4.19
@@ -1407,7 +1407,9 @@ CONFIG_EXTRA_TARGETS=""
 # CONFIG_F2FS_FS is not set
 # CONFIG_F2FS_FS_ENCRYPTION is not set
 # CONFIG_F2FS_FS_POSIX_ACL is not set
+CONFIG_F2FS_FS_XATTR=y
 # CONFIG_F2FS_IO_TRACE is not set
+CONFIG_F2FS_STAT_FS=y
 # CONFIG_FAILOVER is not set
 # CONFIG_FAIR_GROUP_SCHED is not set
 # CONFIG_FANOTIFY is not set
diff --git a/target/linux/generic/config-5.4 b/target/linux/generic/config-5.4
index 7bfc4e56f5..aa3fbded3b 100644
--- a/target/linux/generic/config-5.4
+++ b/target/linux/generic/config-5.4
@@ -1524,7 +1524,9 @@ CONFIG_EXTRA_TARGETS=""
 # CONFIG_F2FS_FS_ENCRYPTION is not set
 # CONFIG_F2FS_FS_POSIX_ACL is not set
 # CONFIG_F2FS_FS_SECURITY is not set
+CONFIG_F2FS_FS_XATTR=y
 # CONFIG_F2FS_IO_TRACE is not set
+CONFIG_F2FS_STAT_FS=y
 # CONFIG_FAILOVER is not set
 # CONFIG_FAIR_GROUP_SCHED is not set
 # CONFIG_FANOTIFY is not set
diff --git a/target/linux/imx6/config-4.19 b/target/linux/imx6/config-4.19
index 3b9b20ace1..5a3d029680 100644
--- a/target/linux/imx6/config-4.19
+++ b/target/linux/imx6/config-4.19
@@ -191,8 +191,6 @@ CONFIG_EXTRA_FIRMWARE_DIR="firmware"
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_FS_XATTR=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FEC=y
 CONFIG_FIXED_PHY=y
 CONFIG_FIX_EARLYCON_MEM=y
diff --git a/target/linux/imx6/config-5.4 b/target/linux/imx6/config-5.4
index 248dd1a1ef..26b718e28d 100644
--- a/target/linux/imx6/config-5.4
+++ b/target/linux/imx6/config-5.4
@@ -195,7 +195,6 @@ CONFIG_EXTCON=y
 CONFIG_EXTRA_FIRMWARE="imx/sdma/sdma-imx6q.bin"
 CONFIG_EXTRA_FIRMWARE_DIR="firmware"
 CONFIG_F2FS_FS=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FEC=y
 CONFIG_FIXED_PHY=y
 CONFIG_FIX_EARLYCON_MEM=y
diff --git a/target/linux/malta/config-4.19 b/target/linux/malta/config-4.19
index fdf5f0ee89..1f1b6fb549 100644
--- a/target/linux/malta/config-4.19
+++ b/target/linux/malta/config-4.19
@@ -96,8 +96,6 @@ CONFIG_EXT4_FS=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_FS_XATTR=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FS_IOMAP=y
 CONFIG_FS_MBCACHE=y
 CONFIG_FS_POSIX_ACL=y
diff --git a/target/linux/malta/config-5.4 b/target/linux/malta/config-5.4
index c440a366a6..d480e1de42 100644
--- a/target/linux/malta/config-5.4
+++ b/target/linux/malta/config-5.4
@@ -97,7 +97,6 @@ CONFIG_EFI_EARLYCON=y
 CONFIG_ENABLE_MUST_CHECK=y
 CONFIG_EXT4_FS=y
 CONFIG_F2FS_FS=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FONT_8x16=y
 CONFIG_FONT_AUTOSELECT=y
 CONFIG_FONT_SUPPORT=y
diff --git a/target/linux/mvebu/config-4.19 b/target/linux/mvebu/config-4.19
index f2083f4f16..1eae0a55db 100644
--- a/target/linux/mvebu/config-4.19
+++ b/target/linux/mvebu/config-4.19
@@ -179,8 +179,6 @@ CONFIG_EXTCON=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_FS_XATTR=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FIXED_PHY=y
 CONFIG_FIX_EARLYCON_MEM=y
 CONFIG_FS_IOMAP=y
diff --git a/target/linux/mvebu/config-5.4 b/target/linux/mvebu/config-5.4
index 60907b6b49..4f38954b37 100644
--- a/target/linux/mvebu/config-5.4
+++ b/target/linux/mvebu/config-5.4
@@ -180,7 +180,6 @@ CONFIG_EDAC_SUPPORT=y
 CONFIG_EXT4_FS=y
 CONFIG_EXTCON=y
 CONFIG_F2FS_FS=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FIXED_PHY=y
 CONFIG_FIX_EARLYCON_MEM=y
 CONFIG_FS_IOMAP=y
diff --git a/target/linux/octeon/config-4.19 b/target/linux/octeon/config-4.19
index 1eb148e757..d9a624d3b8 100644
--- a/target/linux/octeon/config-4.19
+++ b/target/linux/octeon/config-4.19
@@ -76,8 +76,6 @@ CONFIG_EXT4_FS=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_FS_XATTR=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FAT_FS=y
 CONFIG_FIXED_PHY=y
 CONFIG_FRAME_WARN=2048
diff --git a/target/linux/octeon/config-5.4 b/target/linux/octeon/config-5.4
index efc872aee5..1b0f9f216e 100644
--- a/target/linux/octeon/config-5.4
+++ b/target/linux/octeon/config-5.4
@@ -74,7 +74,6 @@ CONFIG_EFI_EARLYCON=y
 CONFIG_ENABLE_MUST_CHECK=y
 CONFIG_EXT4_FS=y
 CONFIG_F2FS_FS=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FAT_FS=y
 CONFIG_FIXED_PHY=y
 CONFIG_FONT_8x16=y
diff --git a/target/linux/octeontx/config-5.4 b/target/linux/octeontx/config-5.4
index e732e76167..7c001b808a 100644
--- a/target/linux/octeontx/config-5.4
+++ b/target/linux/octeontx/config-5.4
@@ -234,7 +234,6 @@ CONFIG_EFI_EARLYCON=y
 CONFIG_EXT4_FS=y
 CONFIG_EXT4_FS_POSIX_ACL=y
 CONFIG_F2FS_FS=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FANOTIFY=y
 CONFIG_FAT_FS=y
 CONFIG_FIXED_PHY=y
diff --git a/target/linux/omap/config-4.19 b/target/linux/omap/config-4.19
index 9004dd0ba6..ead207fc2d 100644
--- a/target/linux/omap/config-4.19
+++ b/target/linux/omap/config-4.19
@@ -241,8 +241,6 @@ CONFIG_EXTCON_USB_GPIO=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_FS_XATTR=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FANOTIFY=y
 CONFIG_FAT_FS=y
 CONFIG_FB_CMDLINE=y
diff --git a/target/linux/omap/config-5.4 b/target/linux/omap/config-5.4
index 973cc2cec0..a797abaae6 100644
--- a/target/linux/omap/config-5.4
+++ b/target/linux/omap/config-5.4
@@ -243,7 +243,6 @@ CONFIG_EXTCON=y
 CONFIG_EXTCON_PALMAS=y
 CONFIG_EXTCON_USB_GPIO=y
 CONFIG_F2FS_FS=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FANOTIFY=y
 CONFIG_FAT_FS=y
 CONFIG_FB_CMDLINE=y
diff --git a/target/linux/rockchip/config-default b/target/linux/rockchip/config-default
index 04b3a1326c..966ecc085c 100644
--- a/target/linux/rockchip/config-default
+++ b/target/linux/rockchip/config-default
@@ -122,7 +122,6 @@ CONFIG_DTC=y
 CONFIG_EDAC_SUPPORT=y
 CONFIG_EFI_EARLYCON=y
 CONFIG_F2FS_FS=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FIX_EARLYCON_MEM=y
 CONFIG_FONT_8x16=y
 CONFIG_FONT_AUTOSELECT=y
diff --git a/target/linux/sunxi/config-4.19 b/target/linux/sunxi/config-4.19
index 57063d3e0b..37b45c666d 100644
--- a/target/linux/sunxi/config-4.19
+++ b/target/linux/sunxi/config-4.19
@@ -173,8 +173,6 @@ CONFIG_EXTCON=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_FS_XATTR=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FAT_FS=y
 CONFIG_FB=y
 CONFIG_FB_CFB_COPYAREA=y
diff --git a/target/linux/sunxi/config-5.4 b/target/linux/sunxi/config-5.4
index 4634b647ef..fa765b31f8 100644
--- a/target/linux/sunxi/config-5.4
+++ b/target/linux/sunxi/config-5.4
@@ -172,7 +172,6 @@ CONFIG_ENABLE_MUST_CHECK=y
 CONFIG_EXT4_FS=y
 CONFIG_EXTCON=y
 CONFIG_F2FS_FS=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FAT_FS=y
 CONFIG_FB=y
 CONFIG_FB_CFB_COPYAREA=y
diff --git a/target/linux/tegra/config-4.19 b/target/linux/tegra/config-4.19
index 84e3ada8ba..0650783f8b 100644
--- a/target/linux/tegra/config-4.19
+++ b/target/linux/tegra/config-4.19
@@ -198,8 +198,6 @@ CONFIG_EXTCON=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_FS_XATTR=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FB=y
 CONFIG_FB_CFB_COPYAREA=y
 CONFIG_FB_CFB_FILLRECT=y
diff --git a/target/linux/tegra/config-5.4 b/target/linux/tegra/config-5.4
index 8733c50991..968bcb4620 100644
--- a/target/linux/tegra/config-5.4
+++ b/target/linux/tegra/config-5.4
@@ -213,7 +213,6 @@ CONFIG_EXTCON=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FB=y
 CONFIG_FB_CFB_COPYAREA=y
 CONFIG_FB_CFB_FILLRECT=y
diff --git a/target/linux/x86/config-4.19 b/target/linux/x86/config-4.19
index afc8d6af57..34c10ae409 100644
--- a/target/linux/x86/config-4.19
+++ b/target/linux/x86/config-4.19
@@ -131,8 +131,6 @@ CONFIG_EXT4_FS=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_FS_XATTR=y
-CONFIG_F2FS_STAT_FS=y
 # CONFIG_F71808E_WDT is not set
 CONFIG_FIRMWARE_MEMMAP=y
 CONFIG_FIX_EARLYCON_MEM=y
diff --git a/target/linux/x86/config-5.4 b/target/linux/x86/config-5.4
index 3dedc4087e..a2b18f33f0 100644
--- a/target/linux/x86/config-5.4
+++ b/target/linux/x86/config-5.4
@@ -148,7 +148,6 @@ CONFIG_EXT4_FS=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_STAT_FS=y
 # CONFIG_F71808E_WDT is not set
 CONFIG_FIRMWARE_MEMMAP=y
 CONFIG_FIX_EARLYCON_MEM=y
diff --git a/target/linux/zynq/config-4.19 b/target/linux/zynq/config-4.19
index 6122dcfd52..c12bd5f8c1 100644
--- a/target/linux/zynq/config-4.19
+++ b/target/linux/zynq/config-4.19
@@ -195,8 +195,6 @@ CONFIG_EXTCON=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_FS_XATTR=y
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FB=y
 CONFIG_FB_CFB_COPYAREA=y
 CONFIG_FB_CFB_FILLRECT=y
diff --git a/target/linux/zynq/config-5.4 b/target/linux/zynq/config-5.4
index e027db2273..d389a27a03 100644
--- a/target/linux/zynq/config-5.4
+++ b/target/linux/zynq/config-5.4
@@ -206,7 +206,6 @@ CONFIG_EXTCON=y
 # CONFIG_F2FS_CHECK_FS is not set
 CONFIG_F2FS_FS=y
 # CONFIG_F2FS_FS_SECURITY is not set
-CONFIG_F2FS_STAT_FS=y
 CONFIG_FB=y
 CONFIG_FB_CFB_COPYAREA=y
 CONFIG_FB_CFB_FILLRECT=y



More information about the lede-commits mailing list