mirror of https://github.com/hak5/openwrt.git
fs.mk: sort kernel modules
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>openwrt-18.06
parent
c2d3047f25
commit
de62386b2d
|
@ -7,25 +7,6 @@
|
||||||
|
|
||||||
FS_MENU:=Filesystems
|
FS_MENU:=Filesystems
|
||||||
|
|
||||||
define KernelPackage/fs-fscache
|
|
||||||
SUBMENU:=$(FS_MENU)
|
|
||||||
TITLE:=General filesystem local cache manager
|
|
||||||
DEPENDS:=
|
|
||||||
KCONFIG:=\
|
|
||||||
CONFIG_FSCACHE=m \
|
|
||||||
CONFIG_FSCACHE_STATS=y \
|
|
||||||
CONFIG_FSCACHE_HISTOGRAM=n \
|
|
||||||
CONFIG_FSCACHE_DEBUG=n \
|
|
||||||
CONFIG_FSCACHE_OBJECT_LIST=n \
|
|
||||||
CONFIG_CACHEFILES=y \
|
|
||||||
CONFIG_CACHEFILES_DEBUG=n \
|
|
||||||
CONFIG_CACHEFILES_HISTOGRAM=n
|
|
||||||
FILES:=$(LINUX_DIR)/fs/fscache/fscache.ko
|
|
||||||
AUTOLOAD:=$(call AutoLoad,29,fscache)
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fs-fscache))
|
|
||||||
|
|
||||||
define KernelPackage/fs-9p
|
define KernelPackage/fs-9p
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
TITLE:=Plan 9 Resource Sharing Support
|
TITLE:=Plan 9 Resource Sharing Support
|
||||||
|
@ -45,6 +26,7 @@ endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fs-9p))
|
$(eval $(call KernelPackage,fs-9p))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/fs-afs
|
define KernelPackage/fs-afs
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
TITLE:=Andrew FileSystem client
|
TITLE:=Andrew FileSystem client
|
||||||
|
@ -142,6 +124,7 @@ endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fs-configfs))
|
$(eval $(call KernelPackage,fs-configfs))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/fs-cramfs
|
define KernelPackage/fs-cramfs
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
TITLE:=Compressed RAM/ROM filesystem support
|
TITLE:=Compressed RAM/ROM filesystem support
|
||||||
|
@ -158,6 +141,7 @@ endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fs-cramfs))
|
$(eval $(call KernelPackage,fs-cramfs))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/fs-exportfs
|
define KernelPackage/fs-exportfs
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
TITLE:=exportfs kernel server support
|
TITLE:=exportfs kernel server support
|
||||||
|
@ -220,19 +204,24 @@ endef
|
||||||
$(eval $(call KernelPackage,fs-f2fs))
|
$(eval $(call KernelPackage,fs-f2fs))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/fuse
|
define KernelPackage/fs-fscache
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
TITLE:=FUSE (Filesystem in Userspace) support
|
TITLE:=General filesystem local cache manager
|
||||||
KCONFIG:= CONFIG_FUSE_FS
|
DEPENDS:=
|
||||||
FILES:=$(LINUX_DIR)/fs/fuse/fuse.ko
|
KCONFIG:=\
|
||||||
AUTOLOAD:=$(call AutoLoad,80,fuse)
|
CONFIG_FSCACHE=m \
|
||||||
|
CONFIG_FSCACHE_STATS=y \
|
||||||
|
CONFIG_FSCACHE_HISTOGRAM=n \
|
||||||
|
CONFIG_FSCACHE_DEBUG=n \
|
||||||
|
CONFIG_FSCACHE_OBJECT_LIST=n \
|
||||||
|
CONFIG_CACHEFILES=y \
|
||||||
|
CONFIG_CACHEFILES_DEBUG=n \
|
||||||
|
CONFIG_CACHEFILES_HISTOGRAM=n
|
||||||
|
FILES:=$(LINUX_DIR)/fs/fscache/fscache.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,29,fscache)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/fuse/description
|
$(eval $(call KernelPackage,fs-fscache))
|
||||||
Kernel module for userspace filesystem support
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fuse))
|
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/fs-hfs
|
define KernelPackage/fs-hfs
|
||||||
|
@ -284,6 +273,21 @@ endef
|
||||||
$(eval $(call KernelPackage,fs-isofs))
|
$(eval $(call KernelPackage,fs-isofs))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/fs-jfs
|
||||||
|
SUBMENU:=$(FS_MENU)
|
||||||
|
TITLE:=JFS filesystem support
|
||||||
|
KCONFIG:=CONFIG_JFS_FS
|
||||||
|
FILES:=$(LINUX_DIR)/fs/jfs/jfs.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,30,jfs,1)
|
||||||
|
$(call AddDepends/nls)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/fs-jfs/description
|
||||||
|
Kernel module for JFS support
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,fs-jfs))
|
||||||
|
|
||||||
define KernelPackage/fs-minix
|
define KernelPackage/fs-minix
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
TITLE:=Minix filesystem support
|
TITLE:=Minix filesystem support
|
||||||
|
@ -335,37 +339,6 @@ endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fs-nfs))
|
$(eval $(call KernelPackage,fs-nfs))
|
||||||
|
|
||||||
define KernelPackage/fs-nfs-v3
|
|
||||||
SUBMENU:=$(FS_MENU)
|
|
||||||
TITLE:=NFS3 filesystem client support
|
|
||||||
DEPENDS:=+kmod-fs-nfs
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/fs/nfs/nfsv3.ko
|
|
||||||
AUTOLOAD:=$(call AutoLoad,41,nfsv3)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/fs-nfs-v3/description
|
|
||||||
Kernel module for NFS v3 client support
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fs-nfs-v3))
|
|
||||||
|
|
||||||
define KernelPackage/fs-nfs-v4
|
|
||||||
SUBMENU:=$(FS_MENU)
|
|
||||||
TITLE:=NFS4 filesystem client support
|
|
||||||
DEPENDS:=+kmod-fs-nfs
|
|
||||||
KCONFIG:= \
|
|
||||||
CONFIG_NFS_V4=y
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/fs/nfs/nfsv4.ko
|
|
||||||
AUTOLOAD:=$(call AutoLoad,41,nfsv4)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/fs-nfs-v4/description
|
|
||||||
Kernel module for NFS v4 support
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fs-nfs-v4))
|
|
||||||
|
|
||||||
define KernelPackage/fs-nfs-common
|
define KernelPackage/fs-nfs-common
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
|
@ -413,6 +386,40 @@ endef
|
||||||
$(eval $(call KernelPackage,fs-nfs-common-rpcsec))
|
$(eval $(call KernelPackage,fs-nfs-common-rpcsec))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/fs-nfs-v3
|
||||||
|
SUBMENU:=$(FS_MENU)
|
||||||
|
TITLE:=NFS3 filesystem client support
|
||||||
|
DEPENDS:=+kmod-fs-nfs
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/fs/nfs/nfsv3.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,41,nfsv3)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/fs-nfs-v3/description
|
||||||
|
Kernel module for NFS v3 client support
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,fs-nfs-v3))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/fs-nfs-v4
|
||||||
|
SUBMENU:=$(FS_MENU)
|
||||||
|
TITLE:=NFS4 filesystem client support
|
||||||
|
DEPENDS:=+kmod-fs-nfs
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_NFS_V4=y
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/fs/nfs/nfsv4.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,41,nfsv4)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/fs-nfs-v4/description
|
||||||
|
Kernel module for NFS v4 support
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,fs-nfs-v4))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/fs-nfsd
|
define KernelPackage/fs-nfsd
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
TITLE:=NFS kernel server support
|
TITLE:=NFS kernel server support
|
||||||
|
@ -532,17 +539,18 @@ endef
|
||||||
$(eval $(call KernelPackage,fs-xfs))
|
$(eval $(call KernelPackage,fs-xfs))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/fs-jfs
|
define KernelPackage/fuse
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
TITLE:=JFS filesystem support
|
TITLE:=FUSE (Filesystem in Userspace) support
|
||||||
KCONFIG:=CONFIG_JFS_FS
|
KCONFIG:= CONFIG_FUSE_FS
|
||||||
FILES:=$(LINUX_DIR)/fs/jfs/jfs.ko
|
FILES:=$(LINUX_DIR)/fs/fuse/fuse.ko
|
||||||
AUTOLOAD:=$(call AutoLoad,30,jfs,1)
|
AUTOLOAD:=$(call AutoLoad,80,fuse)
|
||||||
$(call AddDepends/nls)
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/fs-jfs/description
|
define KernelPackage/fuse/description
|
||||||
Kernel module for JFS support
|
Kernel module for userspace filesystem support
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fs-jfs))
|
$(eval $(call KernelPackage,fuse))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue