From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:54845) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QEgVh-0002zA-LY for qemu-devel@nongnu.org; Tue, 26 Apr 2011 07:32:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QEgVg-0002xj-M6 for qemu-devel@nongnu.org; Tue, 26 Apr 2011 07:32:53 -0400 Received: from fmmailgate02.web.de ([217.72.192.227]:45004) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QEgVg-0002wn-Br for qemu-devel@nongnu.org; Tue, 26 Apr 2011 07:32:52 -0400 Received: from smtp03.web.de ( [172.20.0.65]) by fmmailgate02.web.de (Postfix) with ESMTP id 44CED19D0C174 for ; Tue, 26 Apr 2011 13:32:09 +0200 (CEST) Received: from [88.64.17.9] (helo=mchn199C.mchp.siemens.de) by smtp03.web.de with asmtp (TLSv1:AES256-SHA:256) (WEB.DE 4.110 #2) id 1QEgUz-0003A0-00 for qemu-devel@nongnu.org; Tue, 26 Apr 2011 13:32:09 +0200 Message-ID: <4DB6AD38.50307@siemens.com> Date: Tue, 26 Apr 2011 13:32:08 +0200 From: Jan Kiszka MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Sender: jan.kiszka@siemens.com Subject: [Qemu-devel] [PATCH] virtio: Move virtio-pci to hw library List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel 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 --- Makefile.objs | 1 + Makefile.target | 1 - 2 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index fad1dce..3192bf5 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -171,6 +171,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 cfc7091..5da9e59 100644 --- a/Makefile.target +++ b/Makefile.target @@ -191,7 +191,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) += virtio-9p.o -- 1.7.1