aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/9p/Makefile17
-rw-r--r--fs/Kconfig11
-rw-r--r--fs/Makefile1
3 files changed, 29 insertions, 0 deletions
diff --git a/fs/9p/Makefile b/fs/9p/Makefile
new file mode 100644
index 000000000000..e4e4ffe5a7dc
--- /dev/null
+++ b/fs/9p/Makefile
@@ -0,0 +1,17 @@
1obj-$(CONFIG_9P_FS) := 9p2000.o
2
39p2000-objs := \
4 vfs_super.o \
5 vfs_inode.o \
6 vfs_file.o \
7 vfs_dir.o \
8 vfs_dentry.o \
9 error.o \
10 mux.o \
11 trans_fd.o \
12 trans_sock.o \
13 9p.o \
14 conv.o \
15 v9fs.o \
16 fid.o
17
diff --git a/fs/Kconfig b/fs/Kconfig
index 5e817902cb3b..443aed4e2067 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -1703,6 +1703,17 @@ config AFS_FS
1703config RXRPC 1703config RXRPC
1704 tristate 1704 tristate
1705 1705
1706config 9P_FS
1707 tristate "Plan 9 Resource Sharing Support (9P2000) (Experimental)"
1708 depends on INET && EXPERIMENTAL
1709 help
1710 If you say Y here, you will get experimental support for
1711 Plan 9 resource sharing via the 9P2000 protocol.
1712
1713 See <http://v9fs.sf.net> for more information.
1714
1715 If unsure, say N.
1716
1706endmenu 1717endmenu
1707 1718
1708menu "Partition Types" 1719menu "Partition Types"
diff --git a/fs/Makefile b/fs/Makefile
index 15158309dee4..d646502c1efb 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -94,6 +94,7 @@ obj-$(CONFIG_RELAYFS_FS) += relayfs/
94obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/ 94obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/
95obj-$(CONFIG_JFS_FS) += jfs/ 95obj-$(CONFIG_JFS_FS) += jfs/
96obj-$(CONFIG_XFS_FS) += xfs/ 96obj-$(CONFIG_XFS_FS) += xfs/
97obj-$(CONFIG_9P_FS) += 9p/
97obj-$(CONFIG_AFS_FS) += afs/ 98obj-$(CONFIG_AFS_FS) += afs/
98obj-$(CONFIG_BEFS_FS) += befs/ 99obj-$(CONFIG_BEFS_FS) += befs/
99obj-$(CONFIG_HOSTFS) += hostfs/ 100obj-$(CONFIG_HOSTFS) += hostfs/