[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] Add keymap to vfb config for existing hvm guests
I submitted a patch a while back [1] to add keymap to vfb config for hvm guests. This patch works fine for new config (xm create|new) but not existing, managed guests. To cover the latter case I introduced a validator method in XendConfig - patch attached. Regards, Jim [1] http://lists.xensource.com/archives/html/xen-devel/2009-10/msg01228.html Signed-off-by: Jim Fehlig <jfehlig@xxxxxxxxxx> diff -r 0fb962a5dad3 tools/python/xen/xend/XendConfig.py --- a/tools/python/xen/xend/XendConfig.py Mon Dec 07 14:10:27 2009 +0000 +++ b/tools/python/xen/xend/XendConfig.py Mon Dec 07 16:49:54 2009 -0700 @@ -518,6 +518,14 @@ self['platform'].get('enable_audio'): self['platform']['soundhw'] = 'sb16' + def _vfb_sanity_check(self): + if 'keymap' in self['platform']: + for con in self['console_refs']: + if self['devices'][con][0] == 'vfb': + if 'keymap' not in self['devices'][con][1]: + self['devices'][con][1]['keymap'] = \ + self['platform']['keymap'] + def validate(self): self._uuid_sanity_check() self._name_sanity_check() @@ -525,6 +533,7 @@ self._actions_sanity_check() self._vcpus_sanity_check() self._platform_sanity_check() + self._vfb_sanity_check() def _dominfo_to_xapi(self, dominfo, update_mem = False): self['domid'] = dominfo['domid'] _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |