From patchwork Mon Oct 12 13:55:43 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Marc-Andr=C3=A9_Lureau?= X-Patchwork-Id: 529115 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 0886914012C for ; Tue, 13 Oct 2015 00:56:50 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=rz+pup4S; dkim-atps=neutral Received: from localhost ([::1]:55552 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zldaq-0006cG-2p for incoming@patchwork.ozlabs.org; Mon, 12 Oct 2015 09:56:48 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43566) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zlda4-0005Y0-Pc for qemu-devel@nongnu.org; Mon, 12 Oct 2015 09:56:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zlda0-0008Ls-KY for qemu-devel@nongnu.org; Mon, 12 Oct 2015 09:56:00 -0400 Received: from mail-pa0-x231.google.com ([2607:f8b0:400e:c03::231]:34331) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zlda0-0008LQ-29 for qemu-devel@nongnu.org; Mon, 12 Oct 2015 09:55:56 -0400 Received: by padhy16 with SMTP id hy16so154932605pad.1 for ; Mon, 12 Oct 2015 06:55:55 -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:mime-version:content-type :content-transfer-encoding; bh=LfjPHns3jpSADnMhjdyyUKeo0X+zkmmkcURMe53MK7A=; b=rz+pup4SRAhUj6qnGQpoGuZS4F6JYYYZtWNyqf76zQ9DwHZJuAR+VidaiiR/k4a05F ziCp/TRLn2CYLARyMBu2qcW5Msxbni3tpl6kW1yj7aGThj/Ab9uoEcUDEuNQOCBNcI3c NAJD1eMiD3qYYcGenCQ76oyRw6tuqzskCdW5EY4ozIuwPDZyXRKjnUMg0SiS2/9yJT5u x2GXXMzDXhsSK4L1FlaO9zxTHLllRTXIYno4EvWhajRAZhnPhn1/AX42ddXz2pi2NM4G ED4RJvEb054iQmt8VWcc6Ah/Olcl2b4XwDIYyvreP6p8bzeaLy9qfqqMtn/rJhrtf3jN j0NQ== X-Received: by 10.66.227.72 with SMTP id ry8mr35529902pac.105.1444658155552; Mon, 12 Oct 2015 06:55:55 -0700 (PDT) Received: from localhost (APoitiers-257-1-45-161.w90-38.abo.wanadoo.fr. [90.38.220.161]) by smtp.gmail.com with ESMTPSA id jv5sm18610575pbc.47.2015.10.12.06.55.53 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 12 Oct 2015 06:55:54 -0700 (PDT) From: marcandre.lureau@redhat.com To: qemu-devel@nongnu.org Date: Mon, 12 Oct 2015 15:55:43 +0200 Message-Id: <1444658143-21105-1-git-send-email-marcandre.lureau@redhat.com> X-Mailer: git-send-email 2.4.3 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c03::231 Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Subject: [Qemu-devel] [PATCH] config: enable ivshmem 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 From: Marc-André Lureau ivshmem doesn't actually require kvm, so enable it by default in pci.mak Signed-off-by: Marc-André Lureau --- default-configs/pci.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default-configs/pci.mak b/default-configs/pci.mak index 7e10903..f1a99de 100644 --- a/default-configs/pci.mak +++ b/default-configs/pci.mak @@ -35,5 +35,5 @@ CONFIG_SDHCI=y CONFIG_EDU=y CONFIG_VGA=y CONFIG_VGA_PCI=y -CONFIG_IVSHMEM=$(CONFIG_KVM) +CONFIG_IVSHMEM=y CONFIG_ROCKER=y