From patchwork Thu Aug 20 23:37:03 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 31786 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 EBFABB7B96 for ; Fri, 21 Aug 2009 09:46:23 +1000 (EST) Received: from localhost ([127.0.0.1]:35216 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MeHKj-0005vt-Uv for incoming@patchwork.ozlabs.org; Thu, 20 Aug 2009 19:46:17 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MeHEL-00037w-2t for qemu-devel@nongnu.org; Thu, 20 Aug 2009 19:39:41 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MeHEE-00032p-VI for qemu-devel@nongnu.org; Thu, 20 Aug 2009 19:39:39 -0400 Received: from [199.232.76.173] (port=39422 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MeHEE-00032E-Gf for qemu-devel@nongnu.org; Thu, 20 Aug 2009 19:39:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14965) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MeHED-0006G5-MH for qemu-devel@nongnu.org; Thu, 20 Aug 2009 19:39:34 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n7KNdWN9013186 for ; Thu, 20 Aug 2009 19:39:32 -0400 Received: from localhost.localdomain (vpn1-4-148.ams2.redhat.com [10.36.4.148]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7KNdQql026026; Thu, 20 Aug 2009 19:39:31 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Fri, 21 Aug 2009 01:37:03 +0200 Message-Id: <369376dfa16bb7377b18fcc05c6166969fdc2b9d.1250810973.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 04/14] configure nseries devices only for arm softmmu 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 | 4 ++-- configure | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b58984a..6b703ee 100644 --- a/Makefile +++ b/Makefile @@ -77,8 +77,7 @@ obj-y += readline.o console.o host-utils.o obj-y += irq.o ptimer.o obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o wm8750.o -obj-y += twl92230.o -obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o +obj-y += eeprom93xx.o 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 @@ -91,6 +90,7 @@ 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 +obj-$(CONFIG_NSERIES) += twl92230.o tmp105.o lm832x.o tsc2005.o obj-$(CONFIG_STELLARIS) += stellaris_input.o ssd0303.o obj-$(CONFIG_SSI) += ssi.o ssi-sd.o max111x.o ssd0323.o ads7846.o obj-$(CONFIG_BRLAPI) += baum.o diff --git a/configure b/configure index f1481f3..4444fdd 100755 --- a/configure +++ b/configure @@ -1816,6 +1816,7 @@ fi # What drivers should we compile ssi_bus=no stellaris=no +nseries=no for target in $target_list; do target_dir="$target" @@ -2043,6 +2044,7 @@ if test "$target_softmmu" = "yes" ; then arm*) ssi_bus=yes stellaris=yes + nseries=yes ;; esac fi @@ -2242,6 +2244,10 @@ if test "$stellaris" = "yes" ; then echo "CONFIG_STELLARIS=y" >> $config_host_mak fi +if test "$nseries" = "yes" ; then + echo "CONFIG_NSERIES=y" >> $config_host_mak +fi + echo "/* Automatically generated by configure - do not modify */" > $config_host_h /bin/sh $source_path/create_config < $config_host_mak >> $config_host_h