From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759929AbXEVPTm (ORCPT ); Tue, 22 May 2007 11:19:42 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759413AbXEVPTI (ORCPT ); Tue, 22 May 2007 11:19:08 -0400 Received: from host217-46-209-99.in-addr.btopenworld.com ([217.46.209.99]:4937 "EHLO mail.goop.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1756289AbXEVPTH (ORCPT ); Tue, 22 May 2007 11:19:07 -0400 X-Greylist: delayed 1796 seconds by postgrey-1.27 at vger.kernel.org; Tue, 22 May 2007 11:19:05 EDT Message-Id: <20070522141252.117813186@goop.org> References: <20070522140941.802382212@goop.org> User-Agent: quilt/0.46-1 Date: Tue, 22 May 2007 15:09:56 +0100 From: Jeremy Fitzhardinge To: Andrew Morton , Andi Kleen Cc: Linus Torvalds , Chris Wright , virtualization@lists.osdl.org, lkml , Xen-devel Subject: [patch 15/33] xen: xen configuration Content-Disposition: inline; filename=xen-config.patch Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Put config options for Xen after the core pieces are in place. Signed-off-by: Jeremy Fitzhardinge Signed-off-by: Chris Wright --- arch/i386/Kconfig | 2 ++ arch/i386/xen/Kconfig | 11 +++++++++++ 2 files changed, 13 insertions(+) =================================================================== --- a/arch/i386/Kconfig +++ b/arch/i386/Kconfig @@ -217,6 +217,8 @@ config PARAVIRT under a hypervisor, improving performance significantly. However, when run without a hypervisor the kernel is theoretically slower. If in doubt, say N. + +source "arch/i386/xen/Kconfig" config VMI bool "VMI Paravirt-ops support" =================================================================== --- /dev/null +++ b/arch/i386/xen/Kconfig @@ -0,0 +1,11 @@ +# +# This Kconfig describes xen options +# + +config XEN + bool "Enable support for Xen hypervisor" + depends on PARAVIRT && !PREEMPT && !SMP + help + This is the Linux Xen port. Enabling this will allow the + kernel to boot in a paravirtualized environment under the + Xen hypervisor. --