WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH] linux: kconfig adjustment

To: <xen-devel@xxxxxxxxxxxxxxxxxxx>
Subject: [Xen-devel] [PATCH] linux: kconfig adjustment
From: "Jan Beulich" <jbeulich@xxxxxxxxxx>
Date: Thu, 06 Dec 2007 15:36:42 +0000
Delivery-date: Thu, 06 Dec 2007 07:36:48 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
2.6.24 removes support for omitting 'on' after 'depends', and fixing
this early doesn't harm older Linux.

As usual, written and tested against 2.6.24-rc3 and made apply against
2.6.18 without further testing.

Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx>

Index: head-2007-11-30/arch/x86_64/Kconfig
===================================================================
--- head-2007-11-30.orig/arch/x86_64/Kconfig    2007-12-06 14:56:17.000000000 
+0100
+++ head-2007-11-30/arch/x86_64/Kconfig 2007-12-05 18:02:38.000000000 +0100
@@ -233,7 +233,7 @@
 
 config X86_XEN_GENAPIC
        bool
-       depends X86_64_XEN
+       depends on X86_64_XEN
        default XEN_PRIVILEGED_GUEST || SMP
 
 config X86_LOCAL_APIC
Index: head-2007-11-30/drivers/xen/Kconfig
===================================================================
--- head-2007-11-30.orig/drivers/xen/Kconfig    2007-12-06 14:56:17.000000000 
+0100
+++ head-2007-11-30/drivers/xen/Kconfig 2007-12-04 17:14:52.000000000 +0100
@@ -19,7 +19,6 @@
 
 config XEN_PRIVILEGED_GUEST
        bool "Privileged Guest (domain 0)"
-       depends XEN
        default n
        help
          Support for privileged operation (domain 0)
Index: head-2007-11-30/fs/Kconfig
===================================================================
--- head-2007-11-30.orig/fs/Kconfig     2007-12-06 14:56:17.000000000 +0100
+++ head-2007-11-30/fs/Kconfig  2007-12-04 17:13:39.000000000 +0100
@@ -870,7 +870,7 @@
 config HUGETLBFS
        bool "HugeTLB file system support"
        depends X86 || IA64 || PPC64 || SPARC64 || SUPERH || BROKEN
-       depends !XEN
+       depends on !XEN
        help
          hugetlbfs is a filesystem backing for HugeTLB pages, based on
          ramfs. For architectures that support it, say Y here and read




_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH] linux: kconfig adjustment, Jan Beulich <=