X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=TODO;h=6ab6dc614c12c6d2380e3e4b2ee842ffe0faa870;hp=38da575c1ea0f4464a289da9706efa36773e26f0;hb=607dcadd2dc7883865ada5ae158e750f19dfff67;hpb=dd093a7660338ac5ad1959394f09397df2c793de diff --git a/TODO b/TODO index 38da575..6ab6dc6 100644 --- a/TODO +++ b/TODO @@ -181,7 +181,6 @@ To mount read-only, add C 1> like this: which is equivalent to the following sequence of calls: $h = Sys::Guestfs->new (); - $h->set_autosync (1); $h->add_drive_ro ($filename); $h->launch (); $h->mount_ro (\"/dev/sda1\", \"/\"); @@ -376,3 +375,32 @@ would make more sense to just use libblkid for this. There are some places where we call out to the 'blkid' program. This might be replaced by direct use of the library (if this is easier). + +Remove repo from appliance name +------------------------------- + +There's no need to have the appliance name contain the repository name +(ie initramfs.x86_64.img instead of initramfs.fedora-13.x86_64.img). + +Visualization +------------- + +Eric Sandeen pointed out the blktrace tool which is a better way of +capturing traces than using patched qemu (see +contrib/visualize-alignment). We would still use the same +visualization tools in conjunction with blktrace traces. + +Virt-df UUID +------------ + +Virt-df and any other tools with --csv output should be able to print +UUID of domain. This allows you to track the real domain across +renames etc. + +Add-domain command +------------------ + +guestfs_add_domain (g, "libvirt-dom"); + +However this would need to not depend on libvirt, eg. loading it +on demand.