search for: libxl_vnc_info

Displaying 5 results from an estimated 5 matches for "libxl_vnc_info".

2012 Feb 09
7
[PATCH V2 0/3] Set VNC password to QEMU upstream
Anthony PERARD (3): libxl_qmp: Use GC instead of CTX as parameter for _initialize. Provide dm_vnc() as a in libxl helper. libxl: Set VNC password through QMP tools/libxl/libxl_create.c | 2 +- tools/libxl/libxl_dm.c | 32 ++++++++++++++---------- tools/libxl/libxl_internal.h | 7 ++++- tools/libxl/libxl_qmp.c | 55 ++++++++++++++++++++++++++++++----------- 4 files
2012 May 30
1
[PATCH QXL 2/2] libxl: Add qxl vga interface support.
..., "QXL"), ]) # @@ -137,6 +138,7 @@ libxl_vga_interface_info = Struct("vga_i libxl_vga_interface_info = Struct("vga_interface_info", [ ("type", libxl_vga_interface_type), ("vramkb", MemKB), + ("ramkb", MemKB), ]) libxl_vnc_info = Struct("vnc_info", [ diff -r c6641e3fe158 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Mon May 28 16:25:59 2012 +0800 +++ b/tools/libxl/xl_cmdimpl.c Wed May 30 17:48:38 2012 +0800 @@ -547,6 +547,29 @@ vcpp_out: libxl_cpumap_dispose(&exclude_cpumap); return rc;...
2013 Jan 18
6
[PATCH v1 01/02] HVM firmware passthrough libxl support
This patch introduces support for two new parameters in libxl: smbios_firmware=<path_to_smbios_structures_file> acpi_firmware=<path_to_acpi_tables_file> The changes are primarily in the domain building code where the firmware files are read and passed to libxc for loading into the new guest. After the domain building call to libxc, the addresses for the loaded blobs are returned and
2012 Sep 27
18
[PATCH 09/11] add iomem support to libxl
This patch adds a new option for xen config files for directly mapping hardware io memory into a vm. Signed-off-by: Matthew Fioravante <matthew.fioravante@jhuapl.edu> diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index 013270d..428da21 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -496,6 +496,17 @@ is given in hexadecimal and may either a span e.g.
2013 Apr 12
11
[PATCH v4 1/2] libxl: postpone backend name resolution
...+349,7 @@ libxl_domain_build_info = Struct("domain_build_info",[ libxl_device_vfb = Struct("device_vfb", [ ("backend_domid", libxl_domid), + ("backend_domname",string), ("devid", libxl_devid), ("vnc", libxl_vnc_info), ("sdl", libxl_sdl_info), @@ -358,11 +359,13 @@ libxl_device_vfb = Struct("device_vfb", [ libxl_device_vkb = Struct("device_vkb", [ ("backend_domid", libxl_domid), + ("backend_domname", string), ("devid", li...