Displaying 4 results from an estimated 4 matches for "do_get_root_uuid".
2020 Aug 12
2
[PATCH v2] appliance: extract UUID from QCOW2 disk image
...x fbeb4f4..c78524b 100644
--- a/lib/appliance-kcmdline.c
+++ b/lib/appliance-kcmdline.c
@@ -71,7 +71,7 @@ read_uuid (guestfs_h *g, void *retv, const char *line, size_t len)
* The L<file(1)> command does the hard work.
*/
static char *
-get_root_uuid (guestfs_h *g, const char *appliance)
+do_get_root_uuid (guestfs_h *g, const char *appliance)
{
CLEANUP_CMD_CLOSE struct command *cmd = guestfs_int_new_command (g);
char *ret = NULL;
@@ -96,6 +96,74 @@ get_root_uuid (guestfs_h *g, const char *appliance)
}
/**
+ * Read the first 256k bytes of the in_file with L<qemu-img(1)> command
+ * a...
2020 Aug 12
0
Re: [PATCH] appliance: extract UUID from QCOW2 disk image
...+++ b/lib/appliance-kcmdline.c
> >@@ -71,7 +71,7 @@ read_uuid (guestfs_h *g, void *retv, const char *line, size_t len)
> > * The L<file(1)> command does the hard work.
> > */
> > static char *
> >-get_root_uuid (guestfs_h *g, const char *appliance)
> >+do_get_root_uuid (guestfs_h *g, const char *appliance)
> > {
> > CLEANUP_CMD_CLOSE struct command *cmd = guestfs_int_new_command (g);
> > char *ret = NULL;
> >@@ -96,6 +96,74 @@ get_root_uuid (guestfs_h *g, const char *appliance)
> > }
> > /**
> >+ * Read the first...
2020 Aug 12
0
Re: [PATCH] appliance: extract UUID from QCOW2 disk image
...line.c
> >>@@ -71,7 +71,7 @@ read_uuid (guestfs_h *g, void *retv, const char *line, size_t len)
> >> * The L<file(1)> command does the hard work.
> >> */
> >> static char *
> >>-get_root_uuid (guestfs_h *g, const char *appliance)
> >>+do_get_root_uuid (guestfs_h *g, const char *appliance)
> >> {
> >> CLEANUP_CMD_CLOSE struct command *cmd = guestfs_int_new_command (g);
> >> char *ret = NULL;
> >>@@ -96,6 +96,74 @@ get_root_uuid (guestfs_h *g, const char *appliance)
> >> }
> >> /**
>...
2020 Aug 12
0
[PATCH] appliance: extract UUID from QCOW2 disk image
...x 211cc46..3bb8bcd 100644
--- a/lib/appliance-kcmdline.c
+++ b/lib/appliance-kcmdline.c
@@ -71,7 +71,7 @@ read_uuid (guestfs_h *g, void *retv, const char *line, size_t len)
* The L<file(1)> command does the hard work.
*/
static char *
-get_root_uuid (guestfs_h *g, const char *appliance)
+do_get_root_uuid (guestfs_h *g, const char *appliance)
{
CLEANUP_CMD_CLOSE struct command *cmd = guestfs_int_new_command (g);
char *ret = NULL;
@@ -96,6 +96,74 @@ get_root_uuid (guestfs_h *g, const char *appliance)
}
/**
+ * Read the first 256k bytes of the in_file with L<qemu-img(1)> command
+ * a...