|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] Re: [PATCH] tools: add default keymap in xl.conf
# HG changeset patch
# User Fabio Fantoni
# Date 1306240203 -7200
# Branch fabio
# Node ID 3bfc3d4e4792831a80821143a06d8f4b25a9fb43
# Parent 79341a653633ffde213dfa7d071b677d419707bb
tools: add default keymap in xl.conf
Partial patch of add default keymap in xl.conf, effective use of variable
default_keymap if keymap is not set in domU configuration file is missed
Signed-off-by: Fabio Fantoni <fabio.fantoni@xxxxxxxxxx>
diff -r 79341a653633 -r 3bfc3d4e4792 tools/examples/xl.conf
--- a/tools/examples/xl.conf Tue May 24 11:48:58 2011 +0200
+++ b/tools/examples/xl.conf Tue May 24 14:30:03 2011 +0200
@@ -9,3 +9,7 @@
# default vif script
#vifscript="vif-bridge"
+
+# The default keymap to use for the VM's virtual keyboard
+# when not specififed in VM's configuration
+#keymap="en-us"
diff -r 79341a653633 -r 3bfc3d4e4792 tools/libxl/xl.c
--- a/tools/libxl/xl.c Tue May 24 11:48:58 2011 +0200
+++ b/tools/libxl/xl.c Tue May 24 14:30:03 2011 +0200
@@ -37,6 +37,7 @@
int autoballoon = 1;
char *lockfile;
char *default_vifscript = NULL;
+char *default_keymap = NULL;
static xentoollog_level minmsglevel = XTL_PROGRESS;
@@ -77,6 +78,9 @@
if (!xlu_cfg_get_string (config, "vifscript", &buf))
default_vifscript = strdup(buf);
+ if (!xlu_cfg_get_string (config, "keymap", &buf))
+ default_keymap = strdup(buf);
+
xlu_cfg_destroy(config);
}
diff -r 79341a653633 -r 3bfc3d4e4792 tools/libxl/xl.h
--- a/tools/libxl/xl.h Tue May 24 11:48:58 2011 +0200
+++ b/tools/libxl/xl.h Tue May 24 14:30:03 2011 +0200
@@ -102,5 +102,6 @@
extern int autoballoon;
extern char *lockfile;
extern char *default_vifscript;
+extern char *default_keymap;
#endif /* XL_H */
--
View this message in context:
http://xen.1045712.n5.nabble.com/PATCH-tools-add-default-keymap-in-xl-conf-tp4421943p4421951.html
Sent from the Xen - Dev mailing list archive at Nabble.com.
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|