From 3e02e55b9381d0354674c1fcc31676ca0470c5ad Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Thu, 31 Jan 2013 01:42:54 +0100 Subject: Make the PVH variant get sure that the support is available in the hypervisor * i386/xen/xen_boothdr.S (FEATURES): Mark PVH features as required. --- i386/xen/xen_boothdr.S | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/i386/xen/xen_boothdr.S b/i386/xen/xen_boothdr.S index 84666a8..ac6ad25 100644 --- a/i386/xen/xen_boothdr.S +++ b/i386/xen/xen_boothdr.S @@ -37,13 +37,13 @@ .ascii ",FEATURES=!auto_translated_physmap" #endif #ifndef MACH_PV_PAGETABLES - .ascii "|writable_page_tables" + .ascii "|!writable_page_tables" #endif /* MACH_PV_PAGETABLES */ #ifndef MACH_PV_DESCRIPTORS - .ascii "|writable_descriptor_tables" + .ascii "|!writable_descriptor_tables" #endif /* MACH_PV_DESCRIPTORS */ #ifndef MACH_RING1 - .ascii "|supervisor_mode_kernel" + .ascii "|!supervisor_mode_kernel" #endif /* MACH_PV_DESCRIPTORS */ .byte 0 @@ -80,13 +80,13 @@ "!auto_translated_physmap" #endif #ifndef MACH_PV_PAGETABLES - "|writable_page_tables" + "|!writable_page_tables" #endif /* MACH_PV_PAGETABLES */ #ifndef MACH_PV_DESCRIPTORS - "|writable_descriptor_tables" + "|!writable_descriptor_tables" #endif /* MACH_PV_DESCRIPTORS */ #ifndef MACH_RING1 - "|supervisor_mode_kernel" + "|!supervisor_mode_kernel" #endif /* MACH_RING1 */ ) -- cgit v1.2.3