All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Add keymap to vfb config for existing hvm guests
@ 2009-12-08  0:01 Jim Fehlig
  0 siblings, 0 replies; only message in thread
From: Jim Fehlig @ 2009-12-08  0:01 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 405 bytes --]

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@novell.com>


[-- Attachment #2: xend-vfb-sanity-check.patch --]
[-- Type: text/x-patch, Size: 1064 bytes --]

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']

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-12-08  0:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-08  0:01 [PATCH] Add keymap to vfb config for existing hvm guests Jim Fehlig

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.