Displaying 2 results from an estimated 2 matches for "inspect_".
Did you mean:
inspect
2017 Oct 05
0
Re: [PATCH] inspector: Fix virt-inspector on *BSD guests (RHBZ#1144138).
...LERROR (-1,
> xmlTextWriterWriteElement (xo, BAD_CAST "name", BAD_CAST str));
> + is_bsd =
> + STREQ (str, "freebsd") ||
> + STREQ (str, "netbsd") ||
> + STREQ (str, "openbsd");
> free (str);
>
> str = guestfs_inspect_get_arch (g, root);
> @@ -451,8 +456,13 @@ output_root (xmlTextWriterPtr xo, char *root)
>
> /* We need to mount everything up in order to read out the list of
> * applications and the icon, ie. everything below this point.
> + *
> + * XXX As a workaround for BSD guest...
2017 Oct 05
2
[PATCH] inspector: Fix virt-inspector on *BSD guests (RHBZ#1144138).
...RNEQ (str, "unknown"))
XMLERROR (-1,
xmlTextWriterWriteElement (xo, BAD_CAST "name", BAD_CAST str));
+ is_bsd =
+ STREQ (str, "freebsd") ||
+ STREQ (str, "netbsd") ||
+ STREQ (str, "openbsd");
free (str);
str = guestfs_inspect_get_arch (g, root);
@@ -451,8 +456,13 @@ output_root (xmlTextWriterPtr xo, char *root)
/* We need to mount everything up in order to read out the list of
* applications and the icon, ie. everything below this point.
+ *
+ * XXX As a workaround for BSD guests, because the Linux kernel
+...