From patchwork Sat Aug 14 23:47:31 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cam Macdonell X-Patchwork-Id: 61743 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 ozlabs.org (Postfix) with ESMTPS id 75EC0B70CC for ; Sun, 15 Aug 2010 09:50:10 +1000 (EST) Received: from localhost ([127.0.0.1]:35099 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OkQUJ-0004uh-M1 for incoming@patchwork.ozlabs.org; Sat, 14 Aug 2010 19:50:07 -0400 Received: from [140.186.70.92] (port=43155 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OkQSS-0004ED-Qh for qemu-devel@nongnu.org; Sat, 14 Aug 2010 19:48:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OkQSO-0004QG-4R for qemu-devel@nongnu.org; Sat, 14 Aug 2010 19:48:12 -0400 Received: from fleet.cs.ualberta.ca ([129.128.22.22]:39781) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OkQSN-0004OW-Vq for qemu-devel@nongnu.org; Sat, 14 Aug 2010 19:48:08 -0400 Received: from localhost.localdomain (botha-w4.cs.ualberta.ca [129.128.184.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp-auth.cs.ualberta.ca (Postfix) with ESMTP id 031F528011; Sat, 14 Aug 2010 17:47:56 -0600 (MDT) From: Cam Macdonell To: qemu-devel@nongnu.org Date: Sat, 14 Aug 2010 17:47:31 -0600 Message-Id: <1281829651-17738-2-git-send-email-cam@cs.ualberta.ca> X-Mailer: git-send-email 1.6.2.5 In-Reply-To: <1281829651-17738-1-git-send-email-cam@cs.ualberta.ca> References: <1281829651-17738-1-git-send-email-cam@cs.ualberta.ca> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Cc: Cam Macdonell , kvm@vger.kernel.org Subject: [Qemu-devel] [PATCH 2/2] RESEND: Disable build of ivshmem on non-KVM systems 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: Cam Macdonell --- Makefile.target | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.target b/Makefile.target index b791492..c8281e9 100644 --- a/Makefile.target +++ b/Makefile.target @@ -191,7 +191,7 @@ obj-y += rtl8139.o obj-y += e1000.o # Inter-VM PCI shared memory -obj-y += ivshmem.o +obj-$(CONFIG_KVM) += ivshmem.o # Hardware support obj-i386-y += vga.o