From: Keir Fraser Date: Tue, 8 Dec 2009 07:49:54 +0000 (+0000) Subject: xend: Add keymap to vfb config for existing hvm guests X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~12949 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ef86b9f18bdc20297f3d4bd9c21ce17fab81039e;p=xen.git xend: Add keymap to vfb config for existing hvm guests I submitted a patch a while back 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've introduced a validator method in XendConfig. Signed-off-by: Jim Fehlig --- diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py index c6b1972d47..baf552a639 100644 --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -518,6 +518,14 @@ class XendConfig(dict): 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 @@ class XendConfig(dict): 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']