From patchwork Sun Jul 17 00:57:19 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 105229 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 407F9B6F7F for ; Mon, 18 Jul 2011 18:29:47 +1000 (EST) Received: from localhost ([::1]:40290 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QijCx-0001xq-TF for incoming@patchwork.ozlabs.org; Mon, 18 Jul 2011 04:29:43 -0400 Received: from eggs.gnu.org ([140.186.70.92]:51648) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qij5i-0000dg-Mb for qemu-devel@nongnu.org; Mon, 18 Jul 2011 04:22:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qij5g-0002VT-Qb for qemu-devel@nongnu.org; Mon, 18 Jul 2011 04:22:14 -0400 Received: from cantor2.suse.de ([195.135.220.15]:49978 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qij5f-0002Uy-N1 for qemu-devel@nongnu.org; Mon, 18 Jul 2011 04:22:11 -0400 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.221.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id C85978AD27; Mon, 18 Jul 2011 10:22:10 +0200 (CEST) From: Alexander Graf To: "qemu-devel@nongnu.org Developers" Date: Sun, 17 Jul 2011 02:57:19 +0200 Message-Id: <1310864241-27912-3-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.6.0.2 In-Reply-To: <1310864241-27912-1-git-send-email-agraf@suse.de> References: <1310864241-27912-1-git-send-email-agraf@suse.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 195.135.220.15 Cc: kwolf@redhat.com, armbru@redhat.com Subject: [Qemu-devel] [PATCH 2/4] Compile device-hotplug on all targets 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 All guest targets could potentially implement hotplugging. With the next patches in this set I will also reflect this in the monitor interface. So let's always compile it in. It shouldn't hurt. Signed-off-by: Alexander Graf --- Makefile.target | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/Makefile.target b/Makefile.target index a53a2ff..84fd700 100644 --- a/Makefile.target +++ b/Makefile.target @@ -230,12 +230,15 @@ ifeq ($(CONFIG_KVM), y) endif obj-$(CONFIG_IVSHMEM) += ivshmem.o +# Generic hotplugging +obj-y += device-hotplug.o + # Hardware support obj-i386-y += vga.o obj-i386-y += mc146818rtc.o i8259.o pc.o obj-i386-y += cirrus_vga.o sga.o apic.o ioapic.o piix_pci.o obj-i386-y += vmport.o -obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o +obj-i386-y += pci-hotplug.o smbios.o wdt_ib700.o obj-i386-y += debugcon.o multiboot.o obj-i386-y += pc_piix.o obj-i386-$(CONFIG_KVM) += kvmclock.o