diff -r de04fe4e472c tools/python/xen/xend/XendConfig.py --- a/tools/python/xen/xend/XendConfig.py Thu Oct 15 09:36:40 2009 +0100 +++ b/tools/python/xen/xend/XendConfig.py Thu Oct 15 17:21:16 2009 +0800 @@ -177,6 +177,7 @@ 'pci_power_mgmt': int, 'xen_platform_pci': int, "gfx_passthru": int, + 'description': str, } # Xen API console 'other_config' keys. @@ -490,6 +491,8 @@ self['platform']['xen_platform_pci'] = 1 if 'vpt_align' not in self['platform']: self['platform']['vpt_align'] = 1 + if 'description' not in self['platform']: + self['platform']['description'] = '' if 'loader' not in self['platform']: # Old configs may have hvmloader set as PV_kernel param if self.has_key('PV_kernel') and self['PV_kernel'] != '': diff -r de04fe4e472c tools/python/xen/xm/create.py --- a/tools/python/xen/xm/create.py Thu Oct 15 09:36:40 2009 +0100 +++ b/tools/python/xen/xm/create.py Thu Oct 15 17:21:16 2009 +0800 @@ -507,6 +507,10 @@ fn=set_value, default='', use="Name of USB device to add?") +gopts.var('description', val='NAME', + fn=set_value, default='', + use="Description of a domain") + gopts.var('guest_os_type', val='NAME', fn=set_value, default='default', use="Guest OS type running in HVM") @@ -989,7 +993,7 @@ 'guest_os_type', 'hap', 'opengl', 'cpuid', 'cpuid_check', 'viridian', 'xen_extended_power_mgmt', 'pci_msitranslate', 'vpt_align', 'pci_power_mgmt', 'xen_platform_pci', - 'gfx_passthru' ] + 'gfx_passthru', 'description' ] for a in args: if a in vals.__dict__ and vals.__dict__[a] is not None: diff -r de04fe4e472c tools/python/xen/xm/xenapi_create.py --- a/tools/python/xen/xm/xenapi_create.py Thu Oct 15 09:36:40 2009 +0100 +++ b/tools/python/xen/xm/xenapi_create.py Thu Oct 15 17:21:16 2009 +0800 @@ -1077,6 +1077,7 @@ 'pci_power_mgmt', 'xen_platform_pci', 'tsc_native' + 'description', ] platform_configs = []