From patchwork Thu Aug 27 19:17:50 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 32292 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 15161B7BAF for ; Fri, 28 Aug 2009 05:45:58 +1000 (EST) Received: from localhost ([127.0.0.1]:53522 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mgkuv-0006QZ-Qn for incoming@patchwork.ozlabs.org; Thu, 27 Aug 2009 15:45:53 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MgkWk-0005bo-6p for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:20:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MgkWf-0005WD-G1 for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:20:53 -0400 Received: from [199.232.76.173] (port=54417 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MgkWf-0005Vd-4i for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:20:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:29455) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MgkWe-00064R-Ad for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:20:48 -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 n7RJKlPu006963 for ; Thu, 27 Aug 2009 15:20:47 -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 n7RJKR0D028641; Thu, 27 Aug 2009 15:20:46 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Thu, 27 Aug 2009 21:17:50 +0200 Message-Id: <6b9f526465a2b82c24e367ffe97f5dae1865080a.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 15/30] Only compile m48t59 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.hw | 2 +- default-configs/ppc-softmmu.mak | 1 + default-configs/ppc64-softmmu.mak | 1 + default-configs/ppcemb-softmmu.mak | 1 + default-configs/sparc-softmmu.mak | 1 + default-configs/sparc64-softmmu.mak | 1 + 6 files changed, 6 insertions(+), 1 deletions(-) diff --git a/Makefile.hw b/Makefile.hw index 231dfc3..dbdcbd2 100644 --- a/Makefile.hw +++ b/Makefile.hw @@ -18,7 +18,7 @@ obj-y += watchdog.o obj-$(CONFIG_ECC) += ecc.o obj-$(CONFIG_NAND) += nand.o -obj-y += m48t59.o +obj-$(CONFIG_M48T59) += m48t59.o obj-$(CONFIG_ESCC) += escc.o # SCSI layer diff --git a/default-configs/ppc-softmmu.mak b/default-configs/ppc-softmmu.mak index 783b066..17dc12f 100644 --- a/default-configs/ppc-softmmu.mak +++ b/default-configs/ppc-softmmu.mak @@ -4,3 +4,4 @@ CONFIG_GDBSTUB_XML=y CONFIG_USB_OHCI=y CONFIG_ISA_MMIO=y CONFIG_ESCC=y +CONFIG_M48T59=y diff --git a/default-configs/ppc64-softmmu.mak b/default-configs/ppc64-softmmu.mak index e04d2c5..d56f5c2 100644 --- a/default-configs/ppc64-softmmu.mak +++ b/default-configs/ppc64-softmmu.mak @@ -4,3 +4,4 @@ CONFIG_GDBSTUB_XML=y CONFIG_USB_OHCI=y CONFIG_ISA_MMIO=y CONFIG_ESCC=y +CONFIG_M48T59=y diff --git a/default-configs/ppcemb-softmmu.mak b/default-configs/ppcemb-softmmu.mak index 9b1ac09..cb460c1 100644 --- a/default-configs/ppcemb-softmmu.mak +++ b/default-configs/ppcemb-softmmu.mak @@ -4,3 +4,4 @@ CONFIG_GDBSTUB_XML=y CONFIG_USB_OHCI=y CONFIG_ISA_MMIO=y CONFIG_ESCC=y +CONFIG_M48T59=y diff --git a/default-configs/sparc-softmmu.mak b/default-configs/sparc-softmmu.mak index 853d6bb..0bc6ff3 100644 --- a/default-configs/sparc-softmmu.mak +++ b/default-configs/sparc-softmmu.mak @@ -3,3 +3,4 @@ CONFIG_QDEV_ADDR=y CONFIG_ECC=y CONFIG_ESCC=y +CONFIG_M48T59=y diff --git a/default-configs/sparc64-softmmu.mak b/default-configs/sparc64-softmmu.mak index 251f723..06529cd 100644 --- a/default-configs/sparc64-softmmu.mak +++ b/default-configs/sparc64-softmmu.mak @@ -2,3 +2,4 @@ CONFIG_ISA_MMIO=y CONFIG_ESP=y +CONFIG_M48T59=y