From patchwork Fri Jan 14 19:12:20 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "David S. Ahern" X-Patchwork-Id: 79003 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6439BB70A3 for ; Sat, 15 Jan 2011 06:27:55 +1100 (EST) Received: from localhost ([127.0.0.1]:53786 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PdpJQ-0004XS-GT for incoming@patchwork.ozlabs.org; Fri, 14 Jan 2011 14:27:52 -0500 Received: from [140.186.70.92] (port=33978 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pdp4f-0005ch-4D for qemu-devel@nongnu.org; Fri, 14 Jan 2011 14:12:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pdp4d-0007K8-Vi for qemu-devel@nongnu.org; Fri, 14 Jan 2011 14:12:37 -0500 Received: from sj-iport-4.cisco.com ([171.68.10.86]:26013) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pdp4d-0007Iz-P7 for qemu-devel@nongnu.org; Fri, 14 Jan 2011 14:12:35 -0500 Authentication-Results: sj-iport-4.cisco.com; dkim=neutral (message not signed) header.i=none Received: from sj-core-5.cisco.com ([171.71.177.238]) by sj-iport-4.cisco.com with ESMTP; 14 Jan 2011 19:12:35 +0000 Received: from daahern-lx.cisco.com (sjc-daahern-8915.cisco.com [10.20.182.150]) by sj-core-5.cisco.com (8.13.8/8.14.3) with ESMTP id p0EJCNrr004346; Fri, 14 Jan 2011 19:12:34 GMT From: David Ahern To: qemu-devel@nongnu.org Date: Fri, 14 Jan 2011 12:12:20 -0700 Message-Id: <1295032341-6926-11-git-send-email-daahern@cisco.com> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1295032341-6926-1-git-send-email-daahern@cisco.com> References: <1295032341-6926-1-git-send-email-daahern@cisco.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: David Ahern Subject: [Qemu-devel] [PATCH 10/11] config: add CONFIG_APPLESMC X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: David Ahern Acked-by: Paolo Bonzini --- 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