From: jbeulich@novell.com Subject: add 3.2.0-compatibility configure option Patch-mainline: obsolete --- sle11sp1-2010-03-29.orig/drivers/xen/Kconfig 2010-03-29 09:12:44.000000000 +0200 +++ sle11sp1-2010-03-29/drivers/xen/Kconfig 2010-03-29 09:12:59.000000000 +0200 @@ -320,6 +320,15 @@ choice config XEN_COMPAT_030100_AND_LATER bool "3.1.0 and later" + config XEN_COMPAT_030200_AND_LATER + bool "3.2.0 and later" + + config XEN_COMPAT_030300_AND_LATER + bool "3.3.0 and later" + + config XEN_COMPAT_030400_AND_LATER + bool "3.4.0 and later" + config XEN_COMPAT_LATEST_ONLY bool "no compatibility code" @@ -328,6 +337,9 @@ endchoice config XEN_COMPAT hex default 0xffffff if XEN_COMPAT_LATEST_ONLY + default 0x030400 if XEN_COMPAT_030400_AND_LATER + default 0x030300 if XEN_COMPAT_030300_AND_LATER + default 0x030200 if XEN_COMPAT_030200_AND_LATER default 0x030100 if XEN_COMPAT_030100_AND_LATER default 0x030004 if XEN_COMPAT_030004_AND_LATER default 0x030002 if XEN_COMPAT_030002_AND_LATER