From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=56856 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pe8JR-00015g-2E for qemu-devel@nongnu.org; Sat, 15 Jan 2011 10:45:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pe8JP-0002hl-Pd for qemu-devel@nongnu.org; Sat, 15 Jan 2011 10:45:08 -0500 Received: from lo.gmane.org ([80.91.229.12]:37113) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pe8JP-0002hg-Fw for qemu-devel@nongnu.org; Sat, 15 Jan 2011 10:45:07 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Pe8JM-0001lg-Pv for qemu-devel@nongnu.org; Sat, 15 Jan 2011 16:45:04 +0100 Received: from 93-34-149-100.ip50.fastwebnet.it ([93.34.149.100]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 15 Jan 2011 16:45:04 +0100 Received: from pbonzini by 93-34-149-100.ip50.fastwebnet.it with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 15 Jan 2011 16:45:04 +0100 From: Paolo Bonzini Date: Sat, 15 Jan 2011 16:44:08 +0100 Message-ID: References: <1295032341-6926-1-git-send-email-daahern@cisco.com> <1295032341-6926-11-git-send-email-daahern@cisco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit In-Reply-To: <1295032341-6926-11-git-send-email-daahern@cisco.com> Subject: [Qemu-devel] Re: [PATCH 10/11] config: add CONFIG_APPLESMC List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On 01/14/2011 08:12 PM, David Ahern wrote: > Signed-off-by: David Ahern > --- > Makefile.target | 3 ++- > default-configs/i386-softmmu.mak | 1 + > default-configs/x86_64-softmmu.mak | 1 + > 3 files changed, 4 insertions(+), 1 deletions(-) > > diff --git a/Makefile.target b/Makefile.target > index f3ed066..24899ea 100644 > --- a/Makefile.target > +++ b/Makefile.target > @@ -215,7 +215,8 @@ obj-$(CONFIG_KVM) += ivshmem.o > obj-i386-y += vga.o > obj-i386-y += mc146818rtc.o i8259.o pc.o > obj-i386-y += cirrus_vga.o apic.o ioapic.o piix_pci.o > -obj-i386-y += vmmouse.o vmport.o hpet.o applesmc.o > +obj-i386-y += vmmouse.o vmport.o hpet.o > +obj-i386-$(CONFIG_APPLESMC) += applesmc.o > obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o > obj-i386-y += debugcon.o multiboot.o > obj-i386-y += pc_piix.o > diff --git a/default-configs/i386-softmmu.mak b/default-configs/i386-softmmu.mak > index 323fafb..a972fdd 100644 > --- a/default-configs/i386-softmmu.mak > +++ b/default-configs/i386-softmmu.mak > @@ -18,3 +18,4 @@ CONFIG_IDE_PIIX=y > CONFIG_NE2000_ISA=y > CONFIG_PIIX_PCI=y > CONFIG_SOUND=y > +CONFIG_APPLESMC=y > diff --git a/default-configs/x86_64-softmmu.mak b/default-configs/x86_64-softmmu.mak > index eff26d2..499d0e0 100644 > --- a/default-configs/x86_64-softmmu.mak > +++ b/default-configs/x86_64-softmmu.mak > @@ -18,3 +18,4 @@ CONFIG_IDE_PIIX=y > CONFIG_NE2000_ISA=y > CONFIG_PIIX_PCI=y > CONFIG_SOUND=y > +CONFIG_APPLESMC=y Acked-by: Paolo Bonzini Paolo