[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xl: honor more top level vfb options
commit c11995ff37caf438d3e93d843e5078452ad1b298 Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Tue Jan 28 15:38:01 2014 +0000 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Wed Mar 12 14:09:35 2014 +0000 xl: honor more top level vfb options Now that SDL and keymap options for VFB can also be specified in top level options. Documentation is also updated. This fixes bug #31 and further possible problems. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Cc: Olaf Hering <olaf@xxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Cc: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- docs/man/xl.cfg.pod.5 | 4 ++-- tools/libxl/xl_cmdimpl.c | 17 ++++++++++++++--- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index c02ad55..d5ed82d 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -389,8 +389,8 @@ This options does not control the emulated graphics card presented to an HVM guest. See L<Emulated VGA Graphics Device> below for how to configure the emulated device. If L<Emulated VGA Graphics Device> options are used in a PV guest configuration, xl will pick up B<vnc>, B<vnclisten>, -B<vncpasswd>, B<vncdisplay> and B<vncunused> to construct paravirtual -framebuffer device for the guest. +B<vncpasswd>, B<vncdisplay>, B<vncunused>, B<sdl>, B<opengl> and +B<keymap> to construct paravirtual framebuffer device for the guest. Each B<VFB_SPEC_STRING> is a comma-separated list of C<KEY=VALUE> settings, from the following list: diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 5f59bbc..6a1e2ac 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -721,6 +721,15 @@ static void parse_top_level_vnc_options(XLU_Config *config, xlu_cfg_get_defbool(config, "vncunused", &vnc->findunused, 0); } +static void parse_top_level_sdl_options(XLU_Config *config, + libxl_sdl_info *sdl) +{ + xlu_cfg_get_defbool(config, "sdl", &sdl->enable, 0); + xlu_cfg_get_defbool(config, "opengl", &sdl->opengl, 0); + xlu_cfg_replace_string (config, "display", &sdl->display, 0); + xlu_cfg_replace_string (config, "xauthority", &sdl->xauthority, 0); +} + static void parse_config_data(const char *config_source, const char *config_data, int config_len, @@ -1662,9 +1671,13 @@ skip_vfb: libxl_device_vkb_init); parse_top_level_vnc_options(config, &vfb->vnc); + parse_top_level_sdl_options(config, &vfb->sdl); + xlu_cfg_replace_string (config, "keymap", &vfb->keymap, 0); } - } else + } else { parse_top_level_vnc_options(config, &b_info->u.hvm.vnc); + parse_top_level_sdl_options(config, &b_info->u.hvm.sdl); + } if (c_info->type == LIBXL_DOMAIN_TYPE_HVM) { if (!xlu_cfg_get_string (config, "vga", &buf, 0)) { @@ -1681,8 +1694,6 @@ skip_vfb: LIBXL_VGA_INTERFACE_TYPE_CIRRUS; xlu_cfg_replace_string (config, "keymap", &b_info->u.hvm.keymap, 0); - xlu_cfg_get_defbool(config, "sdl", &b_info->u.hvm.sdl.enable, 0); - xlu_cfg_get_defbool(config, "opengl", &b_info->u.hvm.sdl.opengl, 0); xlu_cfg_get_defbool (config, "spice", &b_info->u.hvm.spice.enable, 0); if (!xlu_cfg_get_long (config, "spiceport", &l, 0)) b_info->u.hvm.spice.port = l; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |