summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* sysprep: remove ca certificates in the guestWanlong Gao2012-05-183-0/+62
| | | | | | Remove the ca certificates. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
* Version 1.17.43.1.17.43Richard W.M. Jones2012-05-1720-20313/+21014
|
* virt-ls: Don't initialize path = NULL.Richard W.M. Jones2012-05-171-1/+1
|
* virt-ls: Fix --checksum option (RHBZ#822490).Richard W.M. Jones2012-05-171-1/+2
|
* NEW API: add new api btrfs-fsckWanlong Gao2012-05-155-3/+59
| | | | | | | | | Add the new API btrfs-fsck to check the btrfs filesystem. Btrfs is currently under heavy development, and not suitable for any uses other than benchmarking and review. But it'll be useful in the near future. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
* btrfs: change the return value of btrfs-set-seedingWanlong Gao2012-05-151-1/+1
| | | | | | Change the return value from "r" to "0". Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
* gobject: remove old generated files furtherWanlong Gao2012-05-151-1/+1
| | | | | | also remove guestfs-gobject.c Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
* gobject: Remove old generated files.Richard W.M. Jones2012-05-151-1/+8
|
* sysprep: Add missing 'utils.mli' to SOURCES.Richard W.M. Jones2012-05-141-1/+2
| | | | Consequently this file was also missing from the tarball.
* doc: Add notes on how GPT works on 4k sector disks.Richard W.M. Jones2012-05-142-3/+16
| | | | | | | | | I used scsi_debug to create a 4k sector virtual disk: modprobe scsi_debug dev_size_mb=128 sector_size=4096 I then used 'gdisk' to create lots of partitions, and used 'hexdump' to examine what was written to disk.
* todo: Notes about partitioning tools.Richard W.M. Jones2012-05-141-0/+25
|
* New API: add new api btrfs-set-seeding to enable or disable seeding.Wanlong Gao2012-05-143-1/+30
| | | | | | | Add the new API btrfs-set-seeding to support the seeding-device feature for btrfs. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
* TODO: add note for libblkidWanlong Gao2012-05-141-0/+3
| | | | | | Add the note about compatible in TODO for libblkid. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
* examples: Further fixes to mount-local example program.Richard W.M. Jones2012-05-141-5/+26
| | | | | | | * Set PS1 prompt properly for bash shells. * Touch a file into the root directory of the new filesystem. This fixes commit 46b6766156ace142443b36e20e55074c544ae6cc.
* example: Various fixes to mount-local example program.Richard W.M. Jones2012-05-141-6/+31
| | | | | | | | | * Move MOUNT_OPTIONS to #define at top. * Move SIZE_MB to #define at top. * Set PS1 in subshell (doesn't work - why?). * Hide libguestfs errors from guestfs_mount_local_run. This fixes commit 46b6766156ace142443b36e20e55074c544ae6cc.
* debian: examples: Don't break when O_CLOEXEC is not defined.Richard W.M. Jones2012-05-141-0/+4
| | | | | | This affected Debian 6. This fixes commit 46b6766156ace142443b36e20e55074c544ae6cc.
* Version 1.17.42.1.17.42Richard W.M. Jones2012-05-1318-245/+395
|
* examples: Add mount options "acl,user_xattr" to mount-local example.Richard W.M. Jones2012-05-131-1/+1
| | | | This fixes commit 46b6766156ace142443b36e20e55074c544ae6cc.
* examples: Add an example of using the mount-local API from C.Richard W.M. Jones2012-05-133-0/+172
|
* examples: Add if HAVE_HIVEX ... endif around virt_dhcp_address example.Richard W.M. Jones2012-05-131-0/+2
|
* qemu: Move -nodefaults etc logically together.Richard W.M. Jones2012-05-121-16/+16
| | | | This is just code motion.
* arm: Add configure flag '--with-qemu-options'.Richard W.M. Jones2012-05-123-44/+154
| | | | | | | This flag allows extra QEMU options to be passed on the command line. This is useful mainly on arm (see the notes in the updated README file).
* arm: Disable -machine, -enable-kvm options except on x86, x86-64.Richard W.M. Jones2012-05-121-0/+5
| | | | | | | Presently KVM is only applicable to x86 and x86-64 (although that will change in future, and there are rumoured to be implementations for some current non-x86 architectures). In any case having these options breaks ARM, so disable them for non-x86 architectures at the moment.
* arm: On Linux ARM kernels, the serial console is ttyAMA0.Richard W.M. Jones2012-05-121-1/+7
| | | | Cope with unnecessary lack of standardization.
* arm: Disable test for -no-hpet during launch.Richard W.M. Jones2012-05-121-0/+8
|
* arm: Set minimum LIBGUESTFS_MEMSIZE at 128.Richard W.M. Jones2012-05-121-1/+1
| | | | | | | | For ARM Versatile ("versatilepb") architecture, memsize must be set to 256 (megabytes) else the appliance is unable to boot. Previously setting LIBGUESTFS_MEMSIZE=256 was not allowed. Versatile Express has larger limits.
* configure: Fix valgrind --vgdb test.Richard W.M. Jones2012-05-121-1/+1
|
* configure: Add a comment about vmchannel_test.Richard W.M. Jones2012-05-121-2/+5
|
* Version 1.17.41.1.17.41Richard W.M. Jones2012-05-1120-237/+329
|
* doc: Add a note about compiling under clang.Richard W.M. Jones2012-05-111-0/+14
|
* configure: Allow systemtap/DTrace userspace probes to be disabled.Richard W.M. Jones2012-05-112-5/+15
| | | | | | | | | './configure --disable-probes' will disable these probes. Otherwise they are autodetected as before. The <sys/sdt.h> produces lots of errors when you try to compile with these probes enabled under clang, so it is necessary to provide a way to disable them for clang users.
* FAQ: Fix typo in download (thanks badnews@IRC)Richard W.M. Jones2012-05-101-2/+2
|
* sysprep: remove blkid tab in the guestWanlong Gao2012-05-103-0/+58
| | | | | | Remove blkid tab cache in the guest. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
* configure: Replace 'echo -n' with 'AS_ECHO_N' macro (thanks Eric Blake).Richard W.M. Jones2012-05-091-13/+13
|
* Update to latest gnulib.Richard W.M. Jones2012-05-092-0/+2
|
* bootstrap: Remove autopoint, po stuff from bootstrap script.Richard W.M. Jones2012-05-091-7/+0
| | | | It's not needed since we no longer use gettextize cruft.
* Version 1.17.40.1.17.40Richard W.M. Jones2012-05-086-14010/+22312
|
* Updated PO files from Transifex.Richard W.M. Jones2012-05-0818-17733/+7912
|
* sysprep: remove pam dataWanlong Gao2012-05-082-0/+54
| | | | | | Remove the generated pam data in the guest. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
* test-tool: Implement -V / --version option.Richard W.M. Jones2012-05-052-18/+34
|
* Update API support.Richard W.M. Jones2012-05-0326-0/+12671
|
* Version 1.17.39.1.17.39Richard W.M. Jones2012-05-0320-10124/+10599
|
* virt-df: Don't fail immediately if a disk is not accessible (RHBZ#789504).Richard W.M. Jones2012-05-031-44/+80
|
* virt-alignment-scan: Don't fail immediately if a disk is not accessible ↵Richard W.M. Jones2012-05-031-9/+27
| | | | (RHBZ#789504).
* virt-alignment-scan, virt-df: Add newlines after error messages.Richard W.M. Jones2012-05-032-11/+11
|
* virt-make-fs: Add a test of btrfs (regression test for RHBZ#816098).Richard W.M. Jones2012-05-031-0/+4
|
* virt-make-fs: Simplify test code.Richard W.M. Jones2012-05-031-38/+32
| | | | This is just code motion.
* virt-make-fs: Fix estimation when making btrfs (RHBZ#816098).Richard W.M. Jones2012-05-031-1/+12
| | | | | This also disables data and metadata duplication, which is not very useful on a constructed filesystem on a virtual disk.
* virt-make-fs: Use mount instead of mount_options.Richard W.M. Jones2012-05-031-1/+1
|
* virt-make-fs: Fix filesystem type check when estimating ntfs.Richard W.M. Jones2012-05-031-1/+1
|