From patchwork Wed Feb 18 05:28:40 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Gibson X-Patchwork-Id: 440803 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)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 76F051401D0 for ; Wed, 18 Feb 2015 16:29:10 +1100 (AEDT) Received: from localhost ([::1]:48572 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNxC7-0008E8-TV for incoming@patchwork.ozlabs.org; Wed, 18 Feb 2015 00:29:07 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45597) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNxBp-0007xF-Iz for qemu-devel@nongnu.org; Wed, 18 Feb 2015 00:28:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YNxBl-00039e-CA for qemu-devel@nongnu.org; Wed, 18 Feb 2015 00:28:49 -0500 Received: from ozlabs.org ([103.22.144.67]:54262) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNxBl-000392-16; Wed, 18 Feb 2015 00:28:45 -0500 Received: by ozlabs.org (Postfix, from userid 1007) id E803514016A; Wed, 18 Feb 2015 16:28:41 +1100 (AEDT) From: David Gibson To: agraf@suse.de, scottwood@freescale.com Date: Wed, 18 Feb 2015 16:28:40 +1100 Message-Id: <1424237320-12189-1-git-send-email-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 103.22.144.67 Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org, David Gibson Subject: [Qemu-devel] [PATCH] Make "platform-bus" enabled only on E500 by default 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 Despite the name, "platform-bus" is used only by PPC E500 targets. This patch alters the default config to include it in the build only when E500 is enabled. Signed-off-by: David Gibson --- hw/core/Makefile.objs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/core/Makefile.objs b/hw/core/Makefile.objs index 9dce1bc..2c46edc 100644 --- a/hw/core/Makefile.objs +++ b/hw/core/Makefile.objs @@ -14,4 +14,4 @@ common-obj-$(CONFIG_SOFTMMU) += machine.o common-obj-$(CONFIG_SOFTMMU) += null-machine.o common-obj-$(CONFIG_SOFTMMU) += loader.o common-obj-$(CONFIG_SOFTMMU) += qdev-properties-system.o -common-obj-$(CONFIG_SOFTMMU) += platform-bus.o +common-obj-$(CONFIG_E500) += platform-bus.o