mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-11 06:54:21 +00:00
Make nfs and xfs load again.
SVN-Revision: 15781
This commit is contained in:
parent
050d860d65
commit
0ce9ef9060
@ -221,6 +221,12 @@ define KernelPackage/fs-nfs-common
|
|||||||
AUTOLOAD:=$(call AutoLoad,30,sunrpc lockd)
|
AUTOLOAD:=$(call AutoLoad,30,sunrpc lockd)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/fs-nfs-common/2.6
|
||||||
|
KCONFIG+=CONFIG_SUNRPC_GSS
|
||||||
|
FILES+=$(LINUX_DIR)/net/sunrpc/auth_gss/auth_rpcgss.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD=$(call AutoLoad,30,sunrpc lockd auth_rpcgss)
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,fs-nfs-common))
|
$(eval $(call KernelPackage,fs-nfs-common))
|
||||||
|
|
||||||
|
|
||||||
@ -242,23 +248,30 @@ endef
|
|||||||
$(eval $(call KernelPackage,fs-nfs))
|
$(eval $(call KernelPackage,fs-nfs))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/fs-exportfs
|
||||||
|
SUBMENU:=$(FS_MENU)
|
||||||
|
TITLE:=exportfs kernel server support
|
||||||
|
KCONFIG:=CONFIG_EXPORTFS
|
||||||
|
FILES=$(LINUX_DIR)/fs/exportfs/exportfs.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,20,exportfs)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/fs-exportfs/description
|
||||||
|
Kernel module for exportfs. Needed for some other modules.
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,fs-exportfs))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/fs-nfsd
|
define KernelPackage/fs-nfsd
|
||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
TITLE:=NFS kernel server support
|
TITLE:=NFS kernel server support
|
||||||
DEPENDS:=kmod-fs-nfs-common
|
DEPENDS:=kmod-fs-nfs-common +kmod-fs-exportfs
|
||||||
KCONFIG:=CONFIG_NFSD
|
KCONFIG:=CONFIG_NFSD
|
||||||
FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.$(LINUX_KMOD_SUFFIX)
|
||||||
AUTOLOAD:=$(call AutoLoad,40,nfsd)
|
AUTOLOAD:=$(call AutoLoad,40,nfsd)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/fs-nfsd/2.6
|
|
||||||
KCONFIG+=CONFIG_EXPORTFS \
|
|
||||||
CONFIG_SUNRPC_GSS
|
|
||||||
FILES+=$(LINUX_DIR)/fs/exportfs/exportfs.$(LINUX_KMOD_SUFFIX) \
|
|
||||||
$(LINUX_DIR)/net/sunrpc/auth_gss/auth_rpcgss.$(LINUX_KMOD_SUFFIX)
|
|
||||||
AUTOLOAD+=$(call AutoLoad,40,auth_rpcgss exportfs nfsd)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/fs-nfsd/description
|
define KernelPackage/fs-nfsd/description
|
||||||
Kernel module for NFS kernel server support
|
Kernel module for NFS kernel server support
|
||||||
endef
|
endef
|
||||||
@ -328,6 +341,7 @@ define KernelPackage/fs-xfs
|
|||||||
SUBMENU:=$(FS_MENU)
|
SUBMENU:=$(FS_MENU)
|
||||||
TITLE:=XFS filesystem support
|
TITLE:=XFS filesystem support
|
||||||
KCONFIG:=CONFIG_XFS_FS
|
KCONFIG:=CONFIG_XFS_FS
|
||||||
|
DEPENDS:= +kmod-fs-exportfs
|
||||||
FILES:=$(LINUX_DIR)/fs/xfs/xfs.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(LINUX_DIR)/fs/xfs/xfs.$(LINUX_KMOD_SUFFIX)
|
||||||
AUTOLOAD:=$(call AutoLoad,30,xfs)
|
AUTOLOAD:=$(call AutoLoad,30,xfs)
|
||||||
endef
|
endef
|
||||||
|
Loading…
x
Reference in New Issue
Block a user