Orangefs: kernel client part 7
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
This commit is contained in:
parent
74a552a133
commit
07f01962e3
|
@ -190,6 +190,7 @@ menuconfig MISC_FILESYSTEMS
|
|||
|
||||
if MISC_FILESYSTEMS
|
||||
|
||||
source "fs/orangefs/Kconfig"
|
||||
source "fs/adfs/Kconfig"
|
||||
source "fs/affs/Kconfig"
|
||||
source "fs/ecryptfs/Kconfig"
|
||||
|
|
|
@ -104,6 +104,7 @@ obj-$(CONFIG_AUTOFS4_FS) += autofs4/
|
|||
obj-$(CONFIG_ADFS_FS) += adfs/
|
||||
obj-$(CONFIG_FUSE_FS) += fuse/
|
||||
obj-$(CONFIG_OVERLAY_FS) += overlayfs/
|
||||
obj-$(CONFIG_ORANGEFS_FS) += orangefs/
|
||||
obj-$(CONFIG_UDF_FS) += udf/
|
||||
obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/
|
||||
obj-$(CONFIG_OMFS_FS) += omfs/
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
config ORANGEFS_FS
|
||||
tristate "ORANGEFS (Powered by PVFS) support"
|
||||
select FS_POSIX_ACL
|
||||
help
|
||||
Orange is a parallel file system designed for use on high end
|
||||
computing (HEC) systems.
|
|
@ -0,0 +1,10 @@
|
|||
#
|
||||
# Makefile for the ORANGEFS filesystem.
|
||||
#
|
||||
|
||||
obj-$(CONFIG_ORANGEFS_FS) += orangefs.o
|
||||
|
||||
orangefs-objs := acl.o file.o pvfs2-cache.o pvfs2-utils.o xattr.o dcache.o \
|
||||
inode.o pvfs2-sysfs.o pvfs2-mod.o super.o devpvfs2-req.o \
|
||||
namei.o symlink.o dir.o pvfs2-bufmap.o \
|
||||
pvfs2-debugfs.o waitqueue.o
|
Loading…
Reference in New Issue