aboutsummaryrefslogtreecommitdiff
path: root/fsdev/Makefile.objs
diff options
context:
space:
mode:
authorWei Liu <wei.liu2@citrix.com>2015-11-25 14:38:17 +0000
committerAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>2016-01-08 12:57:25 +0530
commit829dd2861a0f925526c5598d65a1bc05de9186c2 (patch)
treedb2d3d51e1f98245da49fdd09540403c35de9c00 /fsdev/Makefile.objs
parent71042cffc093a80734608649a6a47b30142c3e6a (diff)
fsdev: break out 9p-marshal.{c,h} from virtio-9p-marshal.{c,h}
Break out some generic functions for marshaling 9p state. Pure code motion plus minor fixes for build system. Signed-off-by: Wei Liu <wei.liu2@citrix.com> Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'fsdev/Makefile.objs')
-rw-r--r--fsdev/Makefile.objs2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsdev/Makefile.objs b/fsdev/Makefile.objs
index c27dad3f6d..8357851fe7 100644
--- a/fsdev/Makefile.objs
+++ b/fsdev/Makefile.objs
@@ -1,7 +1,7 @@
ifeq ($(CONFIG_VIRTIO)$(CONFIG_VIRTFS)$(CONFIG_PCI),yyy)
# Lots of the fsdev/9pcode is pulled in by vl.c via qemu_fsdev_add.
# only pull in the actual virtio-9p device if we also enabled virtio.
-common-obj-y = qemu-fsdev.o virtio-9p-marshal.o
+common-obj-y = qemu-fsdev.o 9p-marshal.o virtio-9p-marshal.o
else
common-obj-y = qemu-fsdev-dummy.o
endif