diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-05 17:04:01 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-05 17:04:01 -0300 |
commit | 57f0f512b273f60d52568b8c6b77e17f5636edc0 (patch) | |
tree | 5e910f0e82173f4ef4f51111366a3f1299037a7b /fs/9p/Makefile |
Initial import
Diffstat (limited to 'fs/9p/Makefile')
-rw-r--r-- | fs/9p/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/fs/9p/Makefile b/fs/9p/Makefile new file mode 100644 index 000000000..ff7be98f8 --- /dev/null +++ b/fs/9p/Makefile @@ -0,0 +1,19 @@ +obj-$(CONFIG_9P_FS) := 9p.o + +9p-objs := \ + vfs_super.o \ + vfs_inode.o \ + vfs_inode_dotl.o \ + vfs_addr.o \ + vfs_file.o \ + vfs_dir.o \ + vfs_dentry.o \ + v9fs.o \ + fid.o \ + xattr.o \ + xattr_user.o \ + xattr_trusted.o + +9p-$(CONFIG_9P_FSCACHE) += cache.o +9p-$(CONFIG_9P_FS_POSIX_ACL) += acl.o +9p-$(CONFIG_9P_FS_SECURITY) += xattr_security.o |