From patchwork Thu Feb 14 06:31:57 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Scott Wood X-Patchwork-Id: 220375 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 713402C029E for ; Thu, 14 Feb 2013 17:32:54 +1100 (EST) Received: from localhost ([::1]:44862 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U5sNI-0005bE-IW for incoming@patchwork.ozlabs.org; Thu, 14 Feb 2013 01:32:52 -0500 Received: from eggs.gnu.org ([208.118.235.92]:58361) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U5sMu-0005Hn-4c for qemu-devel@nongnu.org; Thu, 14 Feb 2013 01:32:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U5sMp-0003lR-PG for qemu-devel@nongnu.org; Thu, 14 Feb 2013 01:32:28 -0500 Received: from tx2ehsobe002.messaging.microsoft.com ([65.55.88.12]:29065 helo=tx2outboundpool.messaging.microsoft.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U5sMh-0003jg-V1; Thu, 14 Feb 2013 01:32:16 -0500 Received: from mail201-tx2-R.bigfish.com (10.9.14.248) by TX2EHSOBE006.bigfish.com (10.9.40.26) with Microsoft SMTP Server id 14.1.225.23; Thu, 14 Feb 2013 06:32:14 +0000 Received: from mail201-tx2 (localhost [127.0.0.1]) by mail201-tx2-R.bigfish.com (Postfix) with ESMTP id CB7B5A40191; Thu, 14 Feb 2013 06:32:14 +0000 (UTC) X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPV:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-SpamScore: 0 X-BigFish: VS0(zzzz1f42h1ee6h1de0h1202h1e76h1d1ah1d2ahzz8275bhz2dh2a8h668h839hd24he5bhf0ah1288h12a5h12a9h12bdh12e5h137ah139eh13b6h1441h1504h1537h162dh1631h1758h1898h18e1h1946h19b5h1155h) Received: from mail201-tx2 (localhost.localdomain [127.0.0.1]) by mail201-tx2 (MessageSwitch) id 1360823533666751_1133; Thu, 14 Feb 2013 06:32:13 +0000 (UTC) Received: from TX2EHSMHS041.bigfish.com (unknown [10.9.14.249]) by mail201-tx2.bigfish.com (Postfix) with ESMTP id 9FECB40004B; Thu, 14 Feb 2013 06:32:13 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by TX2EHSMHS041.bigfish.com (10.9.99.141) with Microsoft SMTP Server (TLS) id 14.1.225.23; Thu, 14 Feb 2013 06:32:07 +0000 Received: from az84smr01.freescale.net (10.64.34.197) by 039-SN1MMR1-003.039d.mgd.msft.net (10.84.1.16) with Microsoft SMTP Server (TLS) id 14.2.328.11; Thu, 14 Feb 2013 06:32:07 +0000 Received: from snotra.am.freescale.net ([10.214.80.163]) by az84smr01.freescale.net (8.14.3/8.14.0) with ESMTP id r1E6W1Pn002433; Wed, 13 Feb 2013 23:32:06 -0700 From: Scott Wood To: Alexander Graf Date: Thu, 14 Feb 2013 00:31:57 -0600 Message-ID: <1360823521-32306-3-git-send-email-scottwood@freescale.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1360823521-32306-1-git-send-email-scottwood@freescale.com> References: <1360823521-32306-1-git-send-email-scottwood@freescale.com> MIME-Version: 1.0 X-OriginatorOrg: freescale.com X-detected-operating-system: by eggs.gnu.org: Windows 7 or 8 X-Received-From: 65.55.88.12 Cc: Scott Wood , qemu-ppc@nongnu.org, qemu-devel@nongnu.org Subject: [Qemu-devel] [RFC ppc-next PATCH 2/6] kvm: hw/kvm is not x86-specific X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Scott Wood --- hw/Makefile.objs | 1 + hw/i386/Makefile.objs | 1 - hw/kvm/Makefile.objs | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/Makefile.objs b/hw/Makefile.objs index 447e32a..46bc395 100644 --- a/hw/Makefile.objs +++ b/hw/Makefile.objs @@ -216,4 +216,5 @@ obj-$(CONFIG_LINUX) += vfio_pci.o endif $(obj)/baum.o: QEMU_CFLAGS += $(SDL_CFLAGS) +obj-$(CONFIG_KVM) += kvm/ endif diff --git a/hw/i386/Makefile.objs b/hw/i386/Makefile.objs index 025803a..370f799 100644 --- a/hw/i386/Makefile.objs +++ b/hw/i386/Makefile.objs @@ -10,7 +10,6 @@ obj-y += lpc_ich9.o q35.o pc_q35.o obj-$(CONFIG_XEN) += xen_platform.o xen_apic.o obj-$(CONFIG_XEN_PCI_PASSTHROUGH) += xen-host-pci-device.o obj-$(CONFIG_XEN_PCI_PASSTHROUGH) += xen_pt.o xen_pt_config_init.o xen_pt_msi.o -obj-y += kvm/ obj-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o obj-y += pc-testdev.o diff --git a/hw/kvm/Makefile.objs b/hw/kvm/Makefile.objs index f620d7f..6ccb6ed 100644 --- a/hw/kvm/Makefile.objs +++ b/hw/kvm/Makefile.objs @@ -1 +1 @@ -obj-$(CONFIG_KVM) += clock.o apic.o i8259.o ioapic.o i8254.o pci-assign.o +obj-$(TARGET_I386) += clock.o apic.o i8259.o ioapic.o i8254.o pci-assign.o