diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-12-14 08:44:41 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-03-29 16:45:01 +0100 |
commit | c6f09fac0666260587f95bdfee3c20c9166dae94 (patch) | |
tree | 25b1b6493697034120508518dcfcbc6d34417156 /gobject | |
parent | 49fdba0ae98b5b6995ccaf0f0ba4f542bfff7ce3 (diff) | |
download | libguestfs-c6f09fac0666260587f95bdfee3c20c9166dae94.tar.gz libguestfs-c6f09fac0666260587f95bdfee3c20c9166dae94.tar.xz libguestfs-c6f09fac0666260587f95bdfee3c20c9166dae94.zip |
New APIs: mount-local, mount-local-run, umount-local (FUSE support in the API).
Add FUSE support directly to the API. Instead of needing to use the
external 'guestmount' command, you can mount the libguestfs filesystem
space on a local mountpoint using an API call from any language.
Note that although mount-local-run is marked as Cancellable, the
current implementation does not support it, but it would be relatively
simple to add it.
Diffstat (limited to 'gobject')
-rw-r--r-- | gobject/Makefile.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gobject/Makefile.inc b/gobject/Makefile.inc index b936dfec..ec6577dd 100644 --- a/gobject/Makefile.inc +++ b/gobject/Makefile.inc @@ -41,6 +41,8 @@ guestfs_gobject_headers=\ guestfs-gobject-optargs-add_drive_opts.h \ guestfs-gobject-optargs-add_domain.h \ guestfs-gobject-optargs-inspect_get_icon.h \ + guestfs-gobject-optargs-mount_local.h \ + guestfs-gobject-optargs-umount_local.h \ guestfs-gobject-optargs-mkfs_opts.h \ guestfs-gobject-optargs-mount_9p.h \ guestfs-gobject-optargs-ntfsresize_opts.h \ @@ -78,6 +80,8 @@ guestfs_gobject_sources=\ guestfs-gobject-optargs-add_drive_opts.c \ guestfs-gobject-optargs-add_domain.c \ guestfs-gobject-optargs-inspect_get_icon.c \ + guestfs-gobject-optargs-mount_local.c \ + guestfs-gobject-optargs-umount_local.c \ guestfs-gobject-optargs-mkfs_opts.c \ guestfs-gobject-optargs-mount_9p.c \ guestfs-gobject-optargs-ntfsresize_opts.c \ |