Displaying 3 results from an estimated 3 matches for "f12918573".
Did you mean:
1218573
2017 Apr 25
0
Re: [PATCH] appliance: reorder the steps to search for appliance
...but we're stuck with it now
unfortunately.
> Signed-off-by: Pavel Butsykin <pbutsykin@virtuozzo.com>
> ---
> lib/appliance.c | 22 +++++++++++-----------
> 1 file changed, 11 insertions(+), 11 deletions(-)
>
> diff --git a/lib/appliance.c b/lib/appliance.c
> index f12918573..06ee06f71 100644
> --- a/lib/appliance.c
> +++ b/lib/appliance.c
> @@ -137,16 +137,6 @@ build_appliance (guestfs_h *g,
> CLEANUP_FREE char *path = NULL;
>
> /* Step (1). */
> - r = find_path (g, contains_supermin_appliance, NULL, &supermin_path);
> - if (r ==...
2017 Apr 28
0
Re: [PATCH] appliance: more reliable check for the supermin appliance
...and base.tar.gz) are necessary for the
> supermin appliance.
>
> Signed-off-by: Pavel Butsykin <pbutsykin@virtuozzo.com>
> ---
> lib/appliance.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/lib/appliance.c b/lib/appliance.c
> index f12918573..5738e4e7f 100644
> --- a/lib/appliance.c
> +++ b/lib/appliance.c
> @@ -199,7 +199,9 @@ contains_fixed_appliance (guestfs_h *g, const char *path, void *data)
> static int
> contains_supermin_appliance (guestfs_h *g, const char *path, void *data)
> {
> - return dir_contains_...
2017 May 04
0
Re: [PATCH v1 1/2] appliance: search all types of appliances for each path separately
...ces.
>
> Signed-off-by: Pavel Butsykin <pbutsykin@virtuozzo.com>
> ---
> lib/appliance.c | 231 ++++++++++++++++++++++++++------------------------------
> 1 file changed, 108 insertions(+), 123 deletions(-)
>
> diff --git a/lib/appliance.c b/lib/appliance.c
> index f12918573..c21525961 100644
> --- a/lib/appliance.c
> +++ b/lib/appliance.c
> @@ -37,18 +37,23 @@
> #include "guestfs.h"
> #include "guestfs-internal.h"
>
> +typedef struct appliance_files {
> + char *kernel;
> + char *initrd;
> + char *image;
> +}...