Re: [virt-tools-list] [PATCH virt-viewer v2] Add missing G_MODULE_EXPORT to signal handler

2019-01-18 Thread Marc-André Lureau
On Fri, Jan 18, 2019 at 11:53 PM Eduardo Lima (Etrunko) wrote: > > Fixes the Windows case where the dialog fails to show with the following > message: > > warning: "Could not find signal handler > 'virt_viewer_window_menu_change_cd_activate'" > > Signed-off-by: Eduardo Lima (Etrunko) ack > ---

[virt-tools-list] [PATCH virt-viewer v2] Add missing G_MODULE_EXPORT to signal handler

2019-01-18 Thread Eduardo Lima (Etrunko)
Fixes the Windows case where the dialog fails to show with the following message: warning: "Could not find signal handler 'virt_viewer_window_menu_change_cd_activate'" Signed-off-by: Eduardo Lima (Etrunko) --- in v2: - Apply similar fix to handlers in remote-viewer-iso-list-dialog.c --- src

Re: [virt-tools-list] [PATCH virt-viewer] Add missing G_MODULE_EXPORT to signal handler

2019-01-18 Thread Eduardo Lima (Etrunko)
On 1/18/19 5:30 PM, Marc-André Lureau wrote: > On Fri, Jan 18, 2019 at 6:58 PM Eduardo Lima (Etrunko) > wrote: >> >> Fixes the Windows case where the dialog fails to show with the following >> message: >> >> warning: "Could not find signal handler >> 'virt_viewer_window_menu_change_cd_activate'"

Re: [virt-tools-list] [PATCH virt-viewer] Add missing G_MODULE_EXPORT to signal handler

2019-01-18 Thread Marc-André Lureau
On Fri, Jan 18, 2019 at 6:58 PM Eduardo Lima (Etrunko) wrote: > > Fixes the Windows case where the dialog fails to show with the following > message: > > warning: "Could not find signal handler > 'virt_viewer_window_menu_change_cd_activate'" > > Signed-off-by: Eduardo Lima (Etrunko) ack > ---

[virt-tools-list] ANNOUNCE: nbdkit 1.10 - an NBD server toolkit with stable plugin API and permissive license

2019-01-18 Thread Richard W.M. Jones
I’m pleased to announce the next stable release of nbdkit. This release concentrates on performance and fuzzing, along with numerous other enhancements (full list below). NBD — Network Block Device — is a protocol for accessing Block Devices (hard disks and disk-like things) over a Network. nbdk

[virt-tools-list] [PATCH virt-viewer] Add missing G_MODULE_EXPORT to signal handler

2019-01-18 Thread Eduardo Lima (Etrunko)
Fixes the Windows case where the dialog fails to show with the following message: warning: "Could not find signal handler 'virt_viewer_window_menu_change_cd_activate'" Signed-off-by: Eduardo Lima (Etrunko) --- src/virt-viewer-window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[virt-tools-list] virt-install: fix SLES11 installation on s390x

2019-01-18 Thread Christian Borntraeger
self._os_variant returns sles11sp4 sles11sp3 and so on. Lets match those as well to pickup the right kernels. Signed-off-by: Christian Borntraeger Reviewed-by: Boris Fiuczynski --- virtinst/urldetect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtinst/urldetect.py b/

[virt-tools-list] [PATCH virt-viewer v3 2/3] spice: hook into port channel to create VTE terminals

2019-01-18 Thread marcandre . lureau
From: Marc-André Lureau QEMU defines a few Spice port channel names in docs/spice-port-fqdn.txt that can be interacted with a terminal. Create VirtViewerDisplayVte display for all known terminal channel, and redirect read/write signals. Note that if VTE support is disabled, or if the VTE consol

[virt-tools-list] [PATCH virt-viewer v3 3/3] spice: hook into QMP port

2019-01-18 Thread marcandre . lureau
From: Marc-André Lureau If the "org.qemu.monitor.qmp.0" port is available: - enable the VM UI - get and follow the VM state - send the requested VM actions This requires spice-gtk version 0.36 with SpiceQmpPort helper. Signed-off-by: Marc-André Lureau Acked-by: Victor Toso --- configure.ac

[virt-tools-list] [PATCH virt-viewer v3 1/3] session: do not take VTE display into account for geometry changes

2019-01-18 Thread marcandre . lureau
From: Marc-André Lureau Signed-off-by: Marc-André Lureau --- src/virt-viewer-session.c | 5 + 1 file changed, 5 insertions(+) diff --git a/src/virt-viewer-session.c b/src/virt-viewer-session.c index 596d1e3..3590c6d 100644 --- a/src/virt-viewer-session.c +++ b/src/virt-viewer-session.c @@

[virt-tools-list] [PATCH virt-viewer v3 0/3] Add QEMU-like UI: VT console & basic VM state

2019-01-18 Thread marcandre . lureau
From: Marc-André Lureau Hi, QEMU provides multiple display backend, with different set of features. One of the richest UI is the -display gtk. It is quite minimal, and comparable to remote-viewer UI wrt fullscreen, zooming, grabbing. I haven't done a detailed comparison, but for regular use, I p