diff options
author | Richard Jones <rjones@redhat.com> | 2010-08-23 11:12:29 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-08-23 16:00:39 +0100 |
commit | 5c31f6126ba4ea3e9056c34c300f6f5e332ab997 (patch) | |
tree | e1c7b237f3d5719804fca3031d26edb9a8027221 /src/guestfs-internal.h | |
parent | 4b753c62089be663ac722e4a875bb061d259e87d (diff) | |
download | libguestfs-5c31f6126ba4ea3e9056c34c300f6f5e332ab997.tar.gz libguestfs-5c31f6126ba4ea3e9056c34c300f6f5e332ab997.tar.xz libguestfs-5c31f6126ba4ea3e9056c34c300f6f5e332ab997.zip |
Change to using ext2-based, cached supermin appliance.
This changes the method used to build the supermin appliance
to use the new ext2-based appliance supported by latest febootstrap.
The appliance can also be cached, so we avoid rebuilding it
each time it is used.
Mailing list discussion goes into the rationale and details:
https://www.redhat.com/archives/libguestfs/2010-August/msg00028.html
Requires febootstrap >= 2.8.
Diffstat (limited to 'src/guestfs-internal.h')
-rw-r--r-- | src/guestfs-internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/guestfs-internal.h b/src/guestfs-internal.h index 73a14ab7..f2abeba1 100644 --- a/src/guestfs-internal.h +++ b/src/guestfs-internal.h @@ -209,6 +209,7 @@ extern int guestfs___recv_file (guestfs_h *g, const char *filename); extern int guestfs___send_to_daemon (guestfs_h *g, const void *v_buf, size_t n); extern int guestfs___recv_from_daemon (guestfs_h *g, uint32_t *size_rtn, void **buf_rtn); extern int guestfs___accept_from_daemon (guestfs_h *g); +extern int guestfs___build_appliance (guestfs_h *g, char **kernel, char **initrd, char **appliance); #define error guestfs_error #define perrorf guestfs_perrorf |