* [PATCH] tools: add default keymap in xl.conf
@ 2011-05-24 12:38 Fantu
2011-05-24 12:42 ` Fantu
0 siblings, 1 reply; 6+ messages in thread
From: Fantu @ 2011-05-24 12:38 UTC (permalink / raw)
To: xen-devel
I have try to do patch for add of default keymap in xl.conf, i have do
probably right initialization and take value from conf if not commented but
i not understand how to implement it so it will be used if the value is not
set in the domU conf, I post the partial patch below
--
View this message in context: http://xen.1045712.n5.nabble.com/PATCH-tools-add-default-keymap-in-xl-conf-tp4421943p4421943.html
Sent from the Xen - Dev mailing list archive at Nabble.com.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] tools: add default keymap in xl.conf
2011-05-24 12:38 [PATCH] tools: add default keymap in xl.conf Fantu
@ 2011-05-24 12:42 ` Fantu
2011-05-24 16:50 ` Ian Jackson
0 siblings, 1 reply; 6+ messages in thread
From: Fantu @ 2011-05-24 12:42 UTC (permalink / raw)
To: xen-devel
# 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@heliman.it>
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.
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] tools: add default keymap in xl.conf
2011-05-24 12:42 ` Fantu
@ 2011-05-24 16:50 ` Ian Jackson
2011-05-25 10:09 ` Fantu
0 siblings, 1 reply; 6+ messages in thread
From: Ian Jackson @ 2011-05-24 16:50 UTC (permalink / raw)
To: Fantu; +Cc: xen-devel
Fantu writes ("[Xen-devel] Re: [PATCH] tools: add default keymap in xl.conf"):
> 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
Thanks for the suggestion. I think it would be better to have a
general mechanism for setting defaults for domains, rather than
introducing this piecemeal.
Perhaps xl should read /etc/xen/xl-domain-defaults.conf when creating
new domains (and copy the information into the userdata with the main
configuration) ?
Thanks,
Ian.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-06-06 10:44 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-24 12:38 [PATCH] tools: add default keymap in xl.conf Fantu
2011-05-24 12:42 ` Fantu
2011-05-24 16:50 ` Ian Jackson
2011-05-25 10:09 ` Fantu
2011-05-26 14:35 ` Ian Jackson
2011-06-06 10:44 ` Fantu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).