From patchwork Tue Aug 26 04:30:18 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Gibson X-Patchwork-Id: 382926 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 980CF1400D6 for ; Tue, 26 Aug 2014 14:31:49 +1000 (EST) Received: from localhost ([::1]:51594 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XM8Q7-0001gD-I7 for incoming@patchwork.ozlabs.org; Tue, 26 Aug 2014 00:31:47 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37358) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XM8OO-00073x-8r for qemu-devel@nongnu.org; Tue, 26 Aug 2014 00:30:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XM8OI-0002kw-Um for qemu-devel@nongnu.org; Tue, 26 Aug 2014 00:30:00 -0400 Received: from ozlabs.org ([2401:3900:2:1::2]:53672) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XM8OI-0002kS-Ji for qemu-devel@nongnu.org; Tue, 26 Aug 2014 00:29:54 -0400 Received: by ozlabs.org (Postfix, from userid 1007) id E20D014011B; Tue, 26 Aug 2014 14:29:51 +1000 (EST) From: David Gibson To: agraf@suse.de Date: Tue, 26 Aug 2014 14:30:18 +1000 Message-Id: <1409027418-4453-4-git-send-email-david@gibson.dropbear.id.au> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1409027418-4453-1-git-send-email-david@gibson.dropbear.id.au> References: <1409027418-4453-1-git-send-email-david@gibson.dropbear.id.au> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2401:3900:2:1::2 Cc: qemu-devel@nongnu.org, David Gibson Subject: [Qemu-devel] [PATCH 3/3] target-ppc: virtex-ml507 machine type should depend on CONFIG_XILINX 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 The virtex-ml507 is a Xilinx CPU based system, and requires several sub devices which are only included with CONFIG_XILINX. Therefore, it should only be compiled if CONFIG_XILINX is set. Signed-off-by: David Gibson Reviewed-by: Peter Crosthwaite --- hw/ppc/Makefile.objs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/ppc/Makefile.objs b/hw/ppc/Makefile.objs index edd44d0..19d9920 100644 --- a/hw/ppc/Makefile.objs +++ b/hw/ppc/Makefile.objs @@ -20,4 +20,4 @@ obj-$(CONFIG_MAC) += mac_newworld.o obj-$(CONFIG_E500) += e500.o mpc8544ds.o e500plat.o obj-$(CONFIG_E500) += mpc8544_guts.o ppce500_spin.o # PowerPC 440 Xilinx ML507 reference board. -obj-y += virtex_ml507.o +obj-$(CONFIG_XILINX) += virtex_ml507.o