From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jim Fehlig Subject: [PATCH] Add keymap to vfb config for hvm guests Date: Mon, 26 Oct 2009 09:27:02 -0600 Message-ID: <4AE5BFC6.7050805@novell.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------050006090804020108020603" Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel List-Id: xen-devel@lists.xenproject.org This is a multi-part message in MIME format. --------------050006090804020108020603 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit vfb config for pv guests includes the keymap setting, e.g. (vfb (vncunused 1) (keymap en-gb) ... ) For consistency, this patch adds keymap to vfb config for hvm guests as well. Regards, Jim --------------050006090804020108020603 Content-Type: text/x-patch; name="hvm-keymap.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="hvm-keymap.patch" diff -r 8ca4e32583b6 tools/python/xen/xend/XendConfig.py --- a/tools/python/xen/xend/XendConfig.py Fri Oct 23 10:15:17 2009 +0100 +++ b/tools/python/xen/xend/XendConfig.py Mon Oct 26 09:26:12 2009 -0600 @@ -901,7 +901,7 @@ dev_config.append(['vnc', '1']) # copy VNC related params from platform config to vfb dev conf for key in ['vncpasswd', 'vncunused', 'vncdisplay', - 'vnclisten']: + 'vnclisten', 'keymap']: if key in self['platform']: dev_config.append([key, self['platform'][key]]) --------------050006090804020108020603 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --------------050006090804020108020603--