From patchwork Sun Aug 25 22:58:25 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?w4Frb3MgS292w6Fjcw==?= X-Patchwork-Id: 269728 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9BA3C2C00C4 for ; Mon, 26 Aug 2013 09:00:26 +1000 (EST) Received: from localhost ([::1]:47895 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDjIG-0004xd-9U for incoming@patchwork.ozlabs.org; Sun, 25 Aug 2013 19:00:24 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54523) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDjHX-0004jb-57 for qemu-devel@nongnu.org; Sun, 25 Aug 2013 18:59:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VDjHR-0006BN-49 for qemu-devel@nongnu.org; Sun, 25 Aug 2013 18:59:39 -0400 Received: from mail-ea0-x22e.google.com ([2a00:1450:4013:c01::22e]:54244) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDjHQ-0006B5-Uc for qemu-devel@nongnu.org; Sun, 25 Aug 2013 18:59:33 -0400 Received: by mail-ea0-f174.google.com with SMTP id z15so1265714ead.19 for ; Sun, 25 Aug 2013 15:59:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=q5bBW/I6LBzsJ7T91a5yMSx++aepJs57RS3+DX65+Pg=; b=N4aeYjy/PNa4qp3OWZagYa5UKqTVBO004n3/Nijho+XlabvdCOZsGeLPGWTSWKfzan +clKzlKcJml2XrEj02NvEAvNPDgBBFE2a9m6AWHIBok2j61WmKdopgDLtgdKmwuHtxc0 vdWMZJrVrlI5Fhz12BaiAmege4BzNdCk20rdkUIZ/6JShiZxz3E90/8mjrfvtvbKdLwF gXZjoGmrqUc2C3kgz4i1QAfabuhKG6kpKs5FmDm8P/lbZze7q4buUZbfE+aJ3wQ5pDJm QMyey5HEFMHl5iPDtC2RAYTwE+676zW17V0FRb33dpojMdMu+3rRAPKGGqo11lChN+k6 tOcw== X-Received: by 10.14.199.3 with SMTP id w3mr20732417een.33.1377471572049; Sun, 25 Aug 2013 15:59:32 -0700 (PDT) Received: from localhost.localdomain (4E5C0DBA.dsl.pool.telekom.hu. [78.92.13.186]) by mx.google.com with ESMTPSA id m54sm16988906eex.2.1969.12.31.16.00.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 25 Aug 2013 15:59:31 -0700 (PDT) From: =?UTF-8?q?=C3=81kos=20Kov=C3=A1cs?= To: qemu-devel@nongnu.org Date: Mon, 26 Aug 2013 00:58:25 +0200 Message-Id: <1377471536-12423-17-git-send-email-akoskovacs@gmx.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1377471536-12423-1-git-send-email-akoskovacs@gmx.com> References: <1377471536-12423-1-git-send-email-akoskovacs@gmx.com> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4013:c01::22e Cc: =?UTF-8?q?=C3=81kos=20Kov=C3=A1cs?= Subject: [Qemu-devel] [PATCH 16/47] hw/xtensa/Makefile.objs: Build xtensa_sim and xtensa_lx60 conditionally X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Add the new CONFIG_* values to default-config/xtensa*-softmmu.mak. Signed-off-by: Ákos Kovács --- default-configs/xtensa-softmmu.mak | 3 +++ default-configs/xtensaeb-softmmu.mak | 3 +++ hw/xtensa/Makefile.objs | 4 ++-- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/default-configs/xtensa-softmmu.mak b/default-configs/xtensa-softmmu.mak index 9d8899c..0ca02cf 100644 --- a/default-configs/xtensa-softmmu.mak +++ b/default-configs/xtensa-softmmu.mak @@ -3,3 +3,6 @@ CONFIG_SERIAL=y CONFIG_OPENCORES_ETH=y CONFIG_PFLASH_CFI01=y + +CONFIG_XTENSA_SIM=y +CONFIG_XTENSA_LX60=y diff --git a/default-configs/xtensaeb-softmmu.mak b/default-configs/xtensaeb-softmmu.mak index 9d8899c..0ca02cf 100644 --- a/default-configs/xtensaeb-softmmu.mak +++ b/default-configs/xtensaeb-softmmu.mak @@ -3,3 +3,6 @@ CONFIG_SERIAL=y CONFIG_OPENCORES_ETH=y CONFIG_PFLASH_CFI01=y + +CONFIG_XTENSA_SIM=y +CONFIG_XTENSA_LX60=y diff --git a/hw/xtensa/Makefile.objs b/hw/xtensa/Makefile.objs index 6ead782..d85af3b 100644 --- a/hw/xtensa/Makefile.objs +++ b/hw/xtensa/Makefile.objs @@ -1,3 +1,3 @@ obj-y += pic_cpu.o -obj-y += xtensa_sim.o -obj-y += xtensa_lx60.o +obj-$(CONFIG_XTENSA_SIM) += xtensa_sim.o +obj-$(CONFIG_XTENSA_LX60) += xtensa_lx60.o