From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:34083) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QUE4d-00086D-0E for qemu-devel@nongnu.org; Wed, 08 Jun 2011 04:25:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QUE4a-0007i5-IO for qemu-devel@nongnu.org; Wed, 08 Jun 2011 04:25:10 -0400 Received: from mtagate4.uk.ibm.com ([194.196.100.164]:53548) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QUE4Z-0007hQ-UH for qemu-devel@nongnu.org; Wed, 08 Jun 2011 04:25:08 -0400 Received: from d06nrmr1806.portsmouth.uk.ibm.com (d06nrmr1806.portsmouth.uk.ibm.com [9.149.39.193]) by mtagate4.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p588P51K025297 for ; Wed, 8 Jun 2011 08:25:05 GMT Received: from d06av07.portsmouth.uk.ibm.com (d06av07.portsmouth.uk.ibm.com [9.149.37.248]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p588P4dN1929284 for ; Wed, 8 Jun 2011 09:25:05 +0100 Received: from d06av07.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p588P3v5014203 for ; Wed, 8 Jun 2011 02:25:03 -0600 From: Stefan Hajnoczi Date: Wed, 8 Jun 2011 09:24:48 +0100 Message-Id: <1307521488-6066-7-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1307521488-6066-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1307521488-6066-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 6/6] virtio: Move virtio-pci to hw library List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Jan Kiszka , Stefan Hajnoczi From: Jan Kiszka This module has no target dependencies (except for target_phys_addr_t size) and can thus be built as part of libhw. Signed-off-by: Jan Kiszka Reviewed-by: Aurelien Jarno Signed-off-by: Stefan Hajnoczi --- Makefile.objs | 1 + Makefile.target | 1 - 2 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index 66ffad4..50fbb20 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -170,6 +170,7 @@ user-obj-y += cutils.o cache-utils.o hw-obj-y = hw-obj-y += vl.o loader.o hw-obj-$(CONFIG_VIRTIO) += virtio.o virtio-console.o +hw-obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o hw-obj-y += fw_cfg.o hw-obj-$(CONFIG_PCI) += pci.o pci_bridge.o hw-obj-$(CONFIG_PCI) += msix.o msi.o diff --git a/Makefile.target b/Makefile.target index 5c22df8..85480d8 100644 --- a/Makefile.target +++ b/Makefile.target @@ -190,7 +190,6 @@ obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o # need to fix this properly obj-$(CONFIG_NO_PCI) += pci-stub.o obj-$(CONFIG_VIRTIO) += virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o -obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o obj-y += vhost_net.o obj-$(CONFIG_VHOST_NET) += vhost.o obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/virtio-9p.o -- 1.7.4.4