diff options
author | Eric Van Hensbergen <ericvh@gmail.com> | 2007-10-23 14:47:31 -0400 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2007-10-23 14:47:31 -0400 |
commit | b530cc794024be227876a089e66fb17b7b512763 (patch) | |
tree | 70b2c555ea9cfe0337a7e25b8cf57c0236efe242 /net/9p/Makefile | |
parent | 0b776eb5426752d4e53354ac89e3710d857e09a7 (diff) |
9p: add virtio transport
This adds a transport to 9p for communicating between guests and a host
using a virtio based transport.
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'net/9p/Makefile')
-rw-r--r-- | net/9p/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/9p/Makefile b/net/9p/Makefile index 5059bc06f8f3..d3abb246ccab 100644 --- a/net/9p/Makefile +++ b/net/9p/Makefile | |||
@@ -1,5 +1,6 @@ | |||
1 | obj-$(CONFIG_NET_9P) := 9pnet.o | 1 | obj-$(CONFIG_NET_9P) := 9pnet.o |
2 | obj-$(CONFIG_NET_9P_FD) += 9pnet_fd.o | 2 | obj-$(CONFIG_NET_9P_FD) += 9pnet_fd.o |
3 | obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o | ||
3 | 4 | ||
4 | 9pnet-objs := \ | 5 | 9pnet-objs := \ |
5 | mod.o \ | 6 | mod.o \ |
@@ -12,3 +13,6 @@ obj-$(CONFIG_NET_9P_FD) += 9pnet_fd.o | |||
12 | 13 | ||
13 | 9pnet_fd-objs := \ | 14 | 9pnet_fd-objs := \ |
14 | trans_fd.o \ | 15 | trans_fd.o \ |
16 | |||
17 | 9pnet_virtio-objs := \ | ||
18 | trans_virtio.o \ | ||