diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2022-11-02 20:09:04 +0100 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2022-11-02 20:10:42 +0100 |
commit | c3322cf04a1b9ee826dcc56944750b6bbcb716ef (patch) | |
tree | 258ac331158ba0e677f44b1d2b33b5685948d3ad | |
parent | 1673b7dca3843698fe47f1df0ee61b88d9431ade (diff) | |
download | upstream-c3322cf04a1b9ee826dcc56944750b6bbcb716ef.tar.gz upstream-c3322cf04a1b9ee826dcc56944750b6bbcb716ef.tar.bz2 upstream-c3322cf04a1b9ee826dcc56944750b6bbcb716ef.zip |
kernel: sort filesystems symbols alphabetically
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
-rw-r--r-- | package/kernel/linux/modules/fs.mk | 71 |
1 files changed, 36 insertions, 35 deletions
diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk index c4b6861192..d7f36ba4e0 100644 --- a/package/kernel/linux/modules/fs.mk +++ b/package/kernel/linux/modules/fs.mk @@ -244,17 +244,6 @@ endef $(eval $(call KernelPackage,fs-f2fs)) -define KernelPackage/fs-netfs - SUBMENU:=$(FS_MENU) - TITLE:=Network Filesystems support - DEPENDS:=@LINUX_5_15 - KCONFIG:= CONFIG_NETFS_SUPPORT - FILES:=$(LINUX_DIR)/fs/netfs/netfs.ko - AUTOLOAD:=$(call AutoLoad,28,netfs) -endef - -$(eval $(call KernelPackage,fs-netfs)) - define KernelPackage/fs-fscache SUBMENU:=$(FS_MENU) TITLE:=General filesystem local cache manager @@ -375,6 +364,18 @@ endef $(eval $(call KernelPackage,fs-msdos)) +define KernelPackage/fs-netfs + SUBMENU:=$(FS_MENU) + TITLE:=Network Filesystems support + DEPENDS:=@LINUX_5_15 + KCONFIG:= CONFIG_NETFS_SUPPORT + FILES:=$(LINUX_DIR)/fs/netfs/netfs.ko + AUTOLOAD:=$(call AutoLoad,28,netfs) +endef + +$(eval $(call KernelPackage,fs-netfs)) + + define KernelPackage/fs-nfs SUBMENU:=$(FS_MENU) TITLE:=NFS filesystem client support @@ -523,25 +524,21 @@ endef $(eval $(call KernelPackage,fs-ntfs)) -define KernelPackage/pstore +define KernelPackage/fs-ntfs3 SUBMENU:=$(FS_MENU) - TITLE:=Pstore file system - DEFAULT:=m if ALL_KMODS - KCONFIG:= \ - CONFIG_PSTORE \ - CONFIG_PSTORE_COMPRESS=y \ - CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" \ - CONFIG_PSTORE_DEFLATE_COMPRESS=y \ - CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y - FILES:= $(LINUX_DIR)/fs/pstore/pstore.ko - AUTOLOAD:=$(call AutoLoad,30,pstore,1) + TITLE:=Ntfs3 support + KCONFIG:= CONFIG_NTFS3_FS CONFIG_NTFS3_FS_POSIX_ACL=y + FILES:=$(LINUX_DIR)/fs/ntfs3/ntfs3.ko + $(call AddDepends/nls) + DEPENDS+=@!LINUX_5_10 + AUTOLOAD:=$(call AutoLoad,80,ntfs3) endef -define KernelPackage/pstore/description - Kernel module for pstore filesystem support +define KernelPackage/fuse/description + Kernel module for new NTFS3 filesystem support endef -$(eval $(call KernelPackage,pstore)) +$(eval $(call KernelPackage,fs-ntfs3)) define KernelPackage/fs-reiserfs @@ -643,18 +640,22 @@ endef $(eval $(call KernelPackage,fuse)) -define KernelPackage/fs-ntfs3 +define KernelPackage/pstore SUBMENU:=$(FS_MENU) - TITLE:=Ntfs3 support - KCONFIG:= CONFIG_NTFS3_FS CONFIG_NTFS3_FS_POSIX_ACL=y - FILES:=$(LINUX_DIR)/fs/ntfs3/ntfs3.ko - $(call AddDepends/nls) - DEPENDS+=@!LINUX_5_10 - AUTOLOAD:=$(call AutoLoad,80,ntfs3) + TITLE:=Pstore file system + DEFAULT:=m if ALL_KMODS + KCONFIG:= \ + CONFIG_PSTORE \ + CONFIG_PSTORE_COMPRESS=y \ + CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" \ + CONFIG_PSTORE_DEFLATE_COMPRESS=y \ + CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y + FILES:= $(LINUX_DIR)/fs/pstore/pstore.ko + AUTOLOAD:=$(call AutoLoad,30,pstore,1) endef -define KernelPackage/fuse/description - Kernel module for new NTFS3 filesystem support +define KernelPackage/pstore/description + Kernel module for pstore filesystem support endef -$(eval $(call KernelPackage,fs-ntfs3)) +$(eval $(call KernelPackage,pstore)) |