From patchwork Thu Aug 27 19:18:05 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 32307 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 bilbo.ozlabs.org (Postfix) with ESMTPS id 8DDE3B7C44 for ; Fri, 28 Aug 2009 06:16:18 +1000 (EST) Received: from localhost ([127.0.0.1]:36106 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MglOD-000729-Az for incoming@patchwork.ozlabs.org; Thu, 27 Aug 2009 16:16:09 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MgkX1-0005xh-Bf for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:21:11 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MgkWw-0005q0-OF for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:21:10 -0400 Received: from [199.232.76.173] (port=54439 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MgkWw-0005pH-Jz for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:21:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39461) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MgkWv-0006AF-Lw for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:21:06 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n7RJL4cT028350 for ; Thu, 27 Aug 2009 15:21:04 -0400 Received: from localhost.localdomain (vpn2-8-219.ams2.redhat.com [10.36.8.219]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7RJKR0S028641; Thu, 27 Aug 2009 15:21:03 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Thu, 27 Aug 2009 21:18:05 +0200 Message-Id: <057f4ae5ed2589f4525010dd73fd66181724d4d1.1251399960.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 30/30] Only compile ssi when one target uses it 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: Juan Quintela --- Makefile | 3 ++- default-configs/arm-softmmu.mak | 1 + 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 9ee6d92..5fdccd7 100644 --- a/Makefile +++ b/Makefile @@ -101,6 +101,7 @@ obj-y += scsi-disk.o cdrom.o obj-y += scsi-generic.o obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o obj-y += usb-serial.o usb-net.o +obj-$(CONFIG_SSI) += ssi.o obj-$(CONFIG_SSI_SD) += ssi-sd.o obj-$(CONFIG_SD) += sd.o obj-y += bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o @@ -108,7 +109,7 @@ obj-y += bt-hci-csr.o obj-y += buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o obj-y += qemu-char.o aio.o net-checksum.o savevm.o obj-y += msmouse.o ps2.o -obj-y += qdev.o qdev-properties.o ssi.o +obj-y += qdev.o qdev-properties.o obj-$(CONFIG_BRLAPI) += baum.o obj-$(CONFIG_WIN32) += tap-win32.o diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak index 615288e..a30393d 100644 --- a/default-configs/arm-softmmu.mak +++ b/default-configs/arm-softmmu.mak @@ -18,4 +18,5 @@ CONFIG_SD0303=y CONFIG_SD0323=y CONFIG_ADS7846=y CONFIG_MAX111X=y +CONFIG_SSI=y CONFIG_SSI_SD=y