search for: 4d8138a

Displaying 3 results from an estimated 3 matches for "4d8138a".

Did you mean: 458138
2016 May 18
0
[PATCH 2/2] inspect: switch to version struct for os major/minor version
...else if (fs->major_version == 6 && fs->minor_version == 2) + else if (fs->version.v_major == 6 && fs->version.v_minor == 2) return icon_windows_8 (g, fs, size_r); /* Not (yet) a supported version of Windows. */ diff --git a/src/inspect.c b/src/inspect.c index 4d8138a..bd32d8f 100644 --- a/src/inspect.c +++ b/src/inspect.c @@ -136,10 +136,7 @@ collect_coreos_inspection_info (guestfs_h *g) * the boot loader. As a workaround, we check the OS versions and pick the * one with the higher version as active. */ - if (usr && - (usr-&g...
2016 May 17
3
[PATCH 0/2] src: introduce an helper version struct
Hi, this adds an helper version struct, and uses it in the backends (for the libvirt and qemu versions) and inspection code. This also moves common code to that, so it is not repeated in many places. This should help with the small refactoring proposed with https://www.redhat.com/archives/libguestfs/2016-May/msg00070.html Thanks, Pino Toscano (2): src: start unifying version handling
2016 May 18
3
[PATCH v2 0/2] src: introduce an helper version struct
Hi, this adds an helper version struct, and uses it in the backends (for the libvirt and qemu versions) and inspection code. This also moves common code to that, so it is not repeated in many places. This should help with the small refactoring proposed with https://www.redhat.com/archives/libguestfs/2016-May/msg00070.html Thanks, Pino Toscano (2): src: start unifying version handling