Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fish: fuse: Add -m dev:mnt:opts to allow mount options to be specified. | Richard W.M. Jones | 2011-03-28 | 1 | -2/+9 |
| | | | | | | | | | | | | | This lets you turn on ACLs and xattrs by doing: -m /dev/sda1:/:acl,user_xattr The extra parameter is passed through to mount_options: libguestfs: trace: mount_options "acl,user_xattr" "/dev/sda1" "/" Notes: Labels: feature | ||||
* | fish: Keep device names in options drives list. | Richard W.M. Jones | 2010-11-25 | 1 | -6/+10 |
| | | | | | | | In the 'struct drv *drvs' structure, keep a list of the device name(s) for each added drive or guest. The device name is the canonical name as that drive would be known inside libguestfs, eg. "/dev/sda" | ||||
* | Unify guestfish and guestmount options processing (RHBZ#642932). | Richard W.M. Jones | 2010-10-27 | 1 | -0/+160 |
In guestfish, factor out the processing of the options -a, -c, -d, -i, -m, -n, -r, -v, -V, -x into a separate set of files: options.c, options.h, inspect.c, virt.c. Change guestmount so that it uses these same files (from the ../fish directory) to process the same options. This unifies the handling of these options between the two programs. It also adds the useful inspection feature to guestmount, so you can now do: guestmount -d Guest -i --ro mnt/ |