On Mon, Dec 18, 2006 at 11:49:02AM +0100, Guillaume Rousse wrote:
> Current keyboard mapping is hardcoded to en-US in image.py. Attached
> patch make this value a configurable option.
> diff -Naur xen-3.0.3_0-src/tools/python/xen/xend/image.py
> xen-3.0.3_0-src.allow_keyboard_mapping/tools/python/xen/xend/image.py
> --- xen-3.0.3_0-src/tools/python/xen/xend/image.py 2006-10-15
> 14:22:03.000000000 +0200
> +++ xen-3.0.3_0-src.allow_keyboard_mapping/tools/python/xen/xend/image.py
> 2006-12-18 11:45:22.000000000 +0100
> @@ -361,11 +361,12 @@
> vncdisplay = sxp.child_value(config, 'vncdisplay',
> int(self.vm.getDomid()))
> vncunused = sxp.child_value(config, 'vncunused')
> + keyboard = sxp.child_value(config, 'keyboard')
> if vncunused:
> ret += ['-vncunused']
> else:
> ret += ['-vnc', '%d' % vncdisplay]
> - ret += ['-k', 'en-us']
> + ret += ['-k', keyboard]
> vnclisten = sxp.child_value(config, 'vnclisten')
> if not(vnclisten):
> vnclisten =
> xen.xend.XendRoot.instance().get_vnclisten_address()
Before we can submit this patch, we need a Signed-off-by: line, to indicate
your acceptance of the Developer's Certificate of Origin.
http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html
Thanks,
Ewan.
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|