aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-06-16 11:15:48 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-06-16 11:15:48 +0100
commit662b95daddd9bf3743933aaf6da282f11132e57a (patch)
tree7b600b977b268c80517021688082628cdb86a28e
parent3cc3cacd424612945ba55302b0e5dd7ba439fca0 (diff)
downloadxen-662b95daddd9bf3743933aaf6da282f11132e57a.tar.gz
xen-662b95daddd9bf3743933aaf6da282f11132e57a.tar.bz2
xen-662b95daddd9bf3743933aaf6da282f11132e57a.zip
x86: Switch to using pvops kernel by default for Linux
Keave ia64 on 2.6.18 since it currently has no dom0 support in pvops Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
-rw-r--r--buildconfigs/enable-xen-config6
-rw-r--r--config/Linux.mk4
2 files changed, 9 insertions, 1 deletions
diff --git a/buildconfigs/enable-xen-config b/buildconfigs/enable-xen-config
index 751b582c86..1e98684bde 100644
--- a/buildconfigs/enable-xen-config
+++ b/buildconfigs/enable-xen-config
@@ -45,7 +45,8 @@ setopt CONFIG_HVC_XEN y
setopt CONFIG_XEN_MAX_DOMAIN_MEMORY 32
setopt CONFIG_XEN_DEBUG_FS y
setopt CONFIG_XEN_DOM0 y
-
+setopt CONFIG_XEN_SYS_HYPERVISOR y
+setopt CONFIG_XEN_GNTDEV y
setopt CONFIG_VMI y
setopt CONFIG_KVM y
@@ -72,6 +73,9 @@ setopt CONFIG_DMAR n
setopt CONFIG_INTR_REMAP n
setopt CONFIG_GFS2_FS n
setopt CONFIG_IOMMU_DEBUG n
+setopt CONFIG_X86_MCE_INTEL n
+setopt CONFIG_X86_MCE_AMD n
+setopt CONFIG_CRYPTO_AES_NI_INTEL n
case ${XEN_TARGET_ARCH} in
x86_32) setopt CONFIG_64BIT n ;;
diff --git a/config/Linux.mk b/config/Linux.mk
index 52c2227996..7d9286d7f1 100644
--- a/config/Linux.mk
+++ b/config/Linux.mk
@@ -1,7 +1,11 @@
include $(XEN_ROOT)/config/StdGNU.mk
# You may use wildcards, e.g. KERNELS=*2.6*
+ifeq (ia64,$(XEN_TARGET_ARCH))
KERNELS ?= linux-2.6-xen
+else
+KERNELS ?= linux-2.6-pvops
+endif
XKERNELS := $(foreach kernel, $(KERNELS), \
$(patsubst buildconfigs/mk.%,%, \