diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/9p/Makefile | 17 | ||||
-rw-r--r-- | fs/Kconfig | 11 | ||||
-rw-r--r-- | fs/Makefile | 1 |
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 @@ | |||
1 | obj-$(CONFIG_9P_FS) := 9p2000.o | ||
2 | |||
3 | 9p2000-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 | |||
1703 | config RXRPC | 1703 | config RXRPC |
1704 | tristate | 1704 | tristate |
1705 | 1705 | ||
1706 | config 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 | |||
1706 | endmenu | 1717 | endmenu |
1707 | 1718 | ||
1708 | menu "Partition Types" | 1719 | menu "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/ | |||
94 | obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/ | 94 | obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/ |
95 | obj-$(CONFIG_JFS_FS) += jfs/ | 95 | obj-$(CONFIG_JFS_FS) += jfs/ |
96 | obj-$(CONFIG_XFS_FS) += xfs/ | 96 | obj-$(CONFIG_XFS_FS) += xfs/ |
97 | obj-$(CONFIG_9P_FS) += 9p/ | ||
97 | obj-$(CONFIG_AFS_FS) += afs/ | 98 | obj-$(CONFIG_AFS_FS) += afs/ |
98 | obj-$(CONFIG_BEFS_FS) += befs/ | 99 | obj-$(CONFIG_BEFS_FS) += befs/ |
99 | obj-$(CONFIG_HOSTFS) += hostfs/ | 100 | obj-$(CONFIG_HOSTFS) += hostfs/ |