69 lines
3.0 KiB
Diff
69 lines
3.0 KiB
Diff
Index: xen-4.4.0-testing/tools/python/xen/xend/XendConfig.py
|
|
===================================================================
|
|
--- xen-4.4.0-testing.orig/tools/python/xen/xend/XendConfig.py
|
|
+++ xen-4.4.0-testing/tools/python/xen/xend/XendConfig.py
|
|
@@ -161,6 +161,7 @@ XENAPI_PLATFORM_CFG_TYPES = {
|
|
'nographic': int,
|
|
'nomigrate': int,
|
|
'pae' : int,
|
|
+ 'extid': int,
|
|
'rtc_timeoffset': int,
|
|
'parallel': str,
|
|
'serial': str,
|
|
@@ -522,6 +523,8 @@ class XendConfig(dict):
|
|
self['platform']['acpi_firmware'] = ""
|
|
if 'timer_mode' not in self['platform']:
|
|
self['platform']['timer_mode'] = 1
|
|
+ if 'extid' in self['platform'] and int(self['platform']['extid']) == 1:
|
|
+ self['platform']['viridian'] = 1
|
|
if 'viridian' not in self['platform']:
|
|
self['platform']['viridian'] = 0
|
|
if 'rtc_timeoffset' not in self['platform']:
|
|
Index: xen-4.4.0-testing/tools/python/xen/xend/image.py
|
|
===================================================================
|
|
--- xen-4.4.0-testing.orig/tools/python/xen/xend/image.py
|
|
+++ xen-4.4.0-testing/tools/python/xen/xend/image.py
|
|
@@ -830,6 +830,7 @@ class HVMImageHandler(ImageHandler):
|
|
|
|
self.apic = int(vmConfig['platform'].get('apic', 0))
|
|
self.acpi = int(vmConfig['platform'].get('acpi', 0))
|
|
+ self.extid = int(vmConfig['platform'].get('extid', 0))
|
|
self.guest_os_type = vmConfig['platform'].get('guest_os_type')
|
|
self.memory_sharing = int(vmConfig['memory_sharing'])
|
|
try:
|
|
Index: xen-4.4.0-testing/tools/python/xen/xm/create.py
|
|
===================================================================
|
|
--- xen-4.4.0-testing.orig/tools/python/xen/xm/create.py
|
|
+++ xen-4.4.0-testing/tools/python/xen/xm/create.py
|
|
@@ -242,6 +242,10 @@ gopts.var('viridian', val='VIRIDIAN',
|
|
use="""Expose Viridian interface to x86 HVM guest?
|
|
(Default is 0).""")
|
|
|
|
+gopts.var('extid', val='EXTID',
|
|
+ fn=set_int, default=0,
|
|
+ use="Specify extention ID for a HVM domain.")
|
|
+
|
|
gopts.var('acpi', val='ACPI',
|
|
fn=set_int, default=1,
|
|
use="Disable or enable ACPI of HVM domain.")
|
|
@@ -1071,7 +1075,7 @@ def configure_hvm(config_image, vals):
|
|
'timer_mode',
|
|
'usb', 'usbdevice',
|
|
'vcpus', 'vnc', 'vncconsole', 'vncdisplay', 'vnclisten',
|
|
- 'vncunused', 'viridian', 'vpt_align',
|
|
+ 'vncunused', 'vpt_align',
|
|
'watchdog', 'watchdog_action',
|
|
'xauthority', 'xen_extended_power_mgmt', 'xen_platform_pci',
|
|
'memory_sharing' ]
|
|
@@ -1081,6 +1085,10 @@ def configure_hvm(config_image, vals):
|
|
config_image.append([a, vals.__dict__[a]])
|
|
if vals.vncpasswd is not None:
|
|
config_image.append(['vncpasswd', vals.vncpasswd])
|
|
+ if vals.extid and vals.extid == 1:
|
|
+ config_image.append(['viridian', vals.extid])
|
|
+ elif vals.viridian:
|
|
+ config_image.append(['viridian', vals.viridian])
|
|
|
|
|
|
def make_config(vals):
|