From patchwork Wed Apr 28 05:46:11 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 95615 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o3S5jBSP003659 for ; Wed, 28 Apr 2010 05:45:11 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753252Ab0D1FpJ (ORCPT ); Wed, 28 Apr 2010 01:45:09 -0400 Received: from mail-pv0-f174.google.com ([74.125.83.174]:32808 "EHLO mail-pv0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752549Ab0D1FpI (ORCPT ); Wed, 28 Apr 2010 01:45:08 -0400 Received: by pvb32 with SMTP id 32so284783pvb.19 for ; Tue, 27 Apr 2010 22:45:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:date:message-id :subject; bh=OcOYpnYB285o/FF4xOfAr94rOp4z6X3DXSx/g7C4HU0=; b=tXyGDprjj4BfdjcCnNMs55FUn/pFucZZcyGwWlzKiEIkVmyYYZrqG/1RQWc739ei7g lH8+8zIbpCpcEZsPZzt7yd2C7cSo+Ja1i7k77OAgcMYNaGmSXtvPUZlcZgEi/Yggx4aT GWgiFzbN81MHrgoTygyspYYfGBXeo3+ANpjiU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:date:message-id:subject; b=uCwzbyffj9KuiheUNCUHwhU8pgLvlvuGCH4CQIor3U3oNsHvD8vTpW7diuhWurEpJ+ /vxvmLH//0Lyf3lS+Iw7uTWg2HFvuW4rPt3U2hvZ86TfArIzzxxDGocVFDnYPi5J0Duo 3eMA/teKCy3yIn91GKYILB6BTPpsHjvXJlRaU= Received: by 10.115.64.5 with SMTP id r5mr1038000wak.180.1272433507474; Tue, 27 Apr 2010 22:45:07 -0700 (PDT) Received: from [127.0.0.1] (49.14.32.202.bf.2iij.net [202.32.14.49]) by mx.google.com with ESMTPS id g30sm7114770wag.16.2010.04.27.22.45.06 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 27 Apr 2010 22:45:06 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , lethal@linux-sh.org Date: Wed, 28 Apr 2010 14:46:11 +0900 Message-Id: <20100428054611.5220.52869.sendpatchset@t400s> Subject: [PATCH] sh: add CONFIG_VIRTUALIZATION for virtio support Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Wed, 28 Apr 2010 05:45:11 +0000 (UTC) --- 0001/arch/sh/Kconfig +++ work/arch/sh/Kconfig 2010-04-28 14:36:28.000000000 +0900 @@ -871,4 +871,20 @@ source "security/Kconfig" source "crypto/Kconfig" +menuconfig VIRTUALIZATION + bool "Virtualization" + default n + ---help--- + Say Y here to get to see options for using your Linux host to run other + operating systems inside virtual machines (guests). + This option alone does not add any kernel code. + + If you say N, all options in this submenu will be skipped and disabled. + +if VIRTUALIZATION + +source drivers/virtio/Kconfig + +endif # VIRTUALIZATION + source "lib/Kconfig"