forked from pool/libguestfs
- Update to version 1.26.5
* generator: Sort the structs. * Use -v and -x flags consistently across OCaml virt-* tools. * mllib: Rewrite text wrapping function so it can handle newlines within the text. * mllib: Add a common 'warning' utility function. * mllib: Add an interface for Common_utils library. * mllib: Move common code for comparing version strings to library. * options: Compile out part of union which cannot be used when not compiling guestfish. * mllib: Create a common utility function is_directory. * fuse: UID 0 should override all permissions checks (RHBZ#1106548). * launch: libvirt: Only use serial BIOS (sgabios) on x86. * daemon: print parameters for vgchange in error messages * generator: fix daemon functions with optional params but no mandatory params * appliance: Increase udev timeout to 6000s (RHBZ#1096579). * launch: libvirt: Add -device sga (sgabios). OBS-URL: https://build.opensuse.org/package/show/Virtualization/libguestfs?expand=0&rev=297
This commit is contained in:
parent
1c0bde9d4f
commit
e02e9f1d48
@ -1,4 +1,4 @@
|
||||
From 0c5d0904ac4699ba02af1815598fa57ba296d3fd Mon Sep 17 00:00:00 2001
|
||||
From 032655f5dd4fcc06a0c4da91efde617ac1536080 Mon Sep 17 00:00:00 2001
|
||||
From: Olaf Hering <olaf@aepfle.de>
|
||||
Date: Tue, 13 May 2014 15:31:21 +0200
|
||||
Subject: hotfix
|
||||
|
@ -1,4 +1,4 @@
|
||||
From ec0d8e661b5cb97ea3e2ed5ffb86bdfb538fca00 Mon Sep 17 00:00:00 2001
|
||||
From 01e40a5583c02603cb4fccaddfd06e60804d96f6 Mon Sep 17 00:00:00 2001
|
||||
From: Olaf Hering <olaf@aepfle.de>
|
||||
Date: Mon, 3 Sep 2012 19:50:44 +0200
|
||||
Subject: force virtio_blk in old guest kernel
|
||||
@ -14,10 +14,10 @@ Signed-off-by: Olaf Hering <olaf@aepfle.de>
|
||||
6 files changed, 27 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/fish/options.c b/fish/options.c
|
||||
index 80b71ec..2cef1bc 100644
|
||||
index 5e6eb73..2c1a48a 100644
|
||||
--- a/fish/options.c
|
||||
+++ b/fish/options.c
|
||||
@@ -100,7 +100,10 @@ add_drives_handle (guestfs_h *g, struct drv *drv, char next_drive)
|
||||
@@ -101,7 +101,10 @@ add_drives_handle (guestfs_h *g, struct drv *drv, char next_drive)
|
||||
{
|
||||
int r;
|
||||
struct guestfs_add_drive_opts_argv ad_optargs;
|
||||
@ -29,7 +29,7 @@ index 80b71ec..2cef1bc 100644
|
||||
if (next_drive > 'z') {
|
||||
fprintf (stderr,
|
||||
_("%s: too many drives added on the command line\n"),
|
||||
@@ -114,7 +117,7 @@ add_drives_handle (guestfs_h *g, struct drv *drv, char next_drive)
|
||||
@@ -115,7 +118,7 @@ add_drives_handle (guestfs_h *g, struct drv *drv, char next_drive)
|
||||
free (drv->device);
|
||||
drv->device = NULL;
|
||||
|
||||
@ -100,7 +100,7 @@ index 17b0b5f..20af3f7 100644
|
||||
}
|
||||
else if ((part = match1 (g, spec, re_diskbyid)) != NULL) {
|
||||
diff --git a/src/launch-direct.c b/src/launch-direct.c
|
||||
index 2332368..67b9fd4 100644
|
||||
index 070dfca..fa5d08b 100644
|
||||
--- a/src/launch-direct.c
|
||||
+++ b/src/launch-direct.c
|
||||
@@ -1183,6 +1183,8 @@ qemu_supports_virtio_scsi (guestfs_h *g, struct backend_direct_data *data)
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d1e38a0b8a05966f6e163c2c001052d051d63e1cd825d8c9c14d940c366dbb4c
|
||||
size 5007492
|
3
libguestfs-1.26.5.tar.xz
Normal file
3
libguestfs-1.26.5.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d20597c236a54e197c9e6f53108a5ceadf737de02cd15a627a3910f6d1d2fff
|
||||
size 5006568
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 7 09:37:23 CEST 2014 - ohering@suse.de
|
||||
|
||||
- Update to version 1.26.5
|
||||
* generator: Sort the structs.
|
||||
* Use -v and -x flags consistently across OCaml virt-* tools.
|
||||
* mllib: Rewrite text wrapping function so it can handle newlines within the text.
|
||||
* mllib: Add a common 'warning' utility function.
|
||||
* mllib: Add an interface for Common_utils library.
|
||||
* mllib: Move common code for comparing version strings to library.
|
||||
* options: Compile out part of union which cannot be used when not compiling guestfish.
|
||||
* mllib: Create a common utility function is_directory.
|
||||
* fuse: UID 0 should override all permissions checks (RHBZ#1106548).
|
||||
* launch: libvirt: Only use serial BIOS (sgabios) on x86.
|
||||
* daemon: print parameters for vgchange in error messages
|
||||
* generator: fix daemon functions with optional params but no mandatory params
|
||||
* appliance: Increase udev timeout to 6000s (RHBZ#1096579).
|
||||
* launch: libvirt: Add -device sga (sgabios).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 4 09:51:06 CEST 2014 - ohering@suse.de
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
#
|
||||
|
||||
|
||||
Version: 1.26.3
|
||||
Version: 1.26.5
|
||||
Release: 0
|
||||
|
||||
%define opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user