summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Version 1.12.1.1.12.1Richard W.M. Jones2011-07-2620-1157/+1230
|
* virt-df: Re-add documentation for --csv option.Richard W.M. Jones2011-07-261-0/+6
| | | | | | The documentation for the --csv option disappeared between 1.6 and 1.8 when we rewrote virt-df in C. Re-add it from 1.6 sources. (cherry picked from commit 01f6bce19dbfaf42fa4908683f3cc8785585d023)
* test-tool: Print FEBOOTSTRAP_* environment variables (RHBZ#671082).Richard W.M. Jones2011-07-261-0/+3
| | | | (cherry picked from commit 15289d4b726d7c38702794df23c61ae40879a46c)
* test-tool: Display state of pgroup flag from the handle.Richard W.M. Jones2011-07-261-0/+1
| | | | | This updates commit f173543fd207bdc254a5eb75180d82ef25eacae9. (cherry picked from commit deb95471fbd229605d9916ff90b2ff7cf92633eb)
* launch: Add qemu_supports_re function.Richard W.M. Jones2011-07-261-0/+43
| | | | | | | | This function is like qemu_supports, but allows us to grep the help text using regular expressions. Note the function is not used yet. (cherry picked from commit 5d7dc0dfb65f367dab3560ee23e404fe21373f45)
* Require PCRE library.Richard W.M. Jones2011-07-2612-61/+29
| | | | | This library is widely available in distros. (cherry picked from commit 41cd0e302d6554facd6b9f7daaa78304361efaef)
* docs: Document FEBOOTSTRAP_KERNEL, FEBOOTSTRAP_MODULES (RHBZ#671082).Richard W.M. Jones2011-07-262-1/+23
| | | | (cherry picked from commit 316817b5ad98e294a9d2498a4403e82911a75b4a)
* perl: Fix CCFLAGS for Perl 5.14.Richard W.M. Jones2011-07-261-2/+3
| | | | | | | | | | | | | | | | | | | A change to ExtUtils::CBuilder in Perl 5.14 causes CCFLAGS to completely replace, rather than appending, the C flags. The unfortunate consequence of this is that vital flags such as -D_FILE_OFFSET_BITS=64 are missing. For 32 bit code, this means you get binary-incompatible code that completely fails to load. For further analysis see: http://www.nntp.perl.org/group/perl.perl5.porters/2011/04/msg171535.html This commit changes CCFLAGS so that it appends to the existing $Config{ccflags} instead of replacing it. On earlier versions of Perl this means we get two copies of the flags, which is unfortunate but should be safe. (cherry picked from commit 8386a57458aceb768f0e59aa090a15a544f7466e)
* build: Redirect ./configure errors in general to config.log.Richard W.M. Jones2011-07-261-6/+6
| | | | (cherry picked from commit 71eb0bf45649eefa1f0cd4b1372cfc2653c8e7a5)
* build: Send failed Perl test configure output to config.log.Richard W.M. Jones2011-07-261-1/+1
| | | | (cherry picked from commit 610642491a4846f45c7b233060ffde46f6ca09f0)
* build: Allow 'make quickcheck' test-tool args to be overridden.Richard W.M. Jones2011-07-261-1/+1
| | | | | | | | A typical use for this is for packagers who want to increase the default timeout: make quickcheck QUICKCHECK_TEST_TOOL_ARGS="-t 300" (cherry picked from commit 806b6e01506dea4eae68ac3e468d9398d63cafcb)
* Version 1.12.0.1.12.0stable-1.12Richard W.M. Jones2011-07-2020-24134/+10204
|
* Finalize release notes for 1.12 release.Richard W.M. Jones2011-07-201-11/+5
|
* blkid: Use -c /dev/null option to kill the cache.Richard W.M. Jones2011-07-201-9/+4
| | | | | | On recent Debian, /etc/blkid.tab is now a symlink to /dev/.blkid.tab. Rather than chasing the cache file around (it may move to /run in future) use the -c /dev/null option to stop blkid from reading the cache.
* blkid: Detect when value not found and return empty string.Richard W.M. Jones2011-07-202-4/+19
| | | | | | | | | | | | | | If the blkid command returns 2, that means the value was not found. Note that this changes the output of the vfs-type API when the filesystem has no type (eg when it is empty). Previously this would return an error. Now it returns empty string "". We did not document this either way. Making it return empty string is consistent with vfs-label and vfs-uuid. This change broke list-filesystems, since that code was assuming that vfs-type could only return a filesystem type or an error.
* docs: Update stable release instructions.Richard W.M. Jones2011-07-201-0/+5
|
* configure: Remove -Wmissing-noreturn warning.Richard W.M. Jones2011-07-201-0/+2
|
* po-docs: Fix generation of 'podfiles'.Richard W.M. Jones2011-07-202-31/+6
|
* appliance: Capture stderr from qemu to the event system.Richard W.M. Jones2011-07-201-1/+9
|
* appliance: Document pipe fds.Richard W.M. Jones2011-07-201-0/+2
|
* Partially revert d82438431c1551610eb7d9945fa76d6387534582.Richard W.M. Jones2011-07-201-11/+1
| | | | | | | It appears qemu-kvm does *not* require -machine accel=tcg option. That problem disappeared after upgrading seabios(!) However leave the test for qemu -help option, since that's useful to determine if qemu is completely broken or not.
* build: Fix virtio-serial test for qemu 0.15.Richard W.M. Jones2011-07-191-1/+24
| | | | | Now qemu 0.15 won't even start up unless the -machine accel=... option is specified. Essentially this is a regression in qemu.
* Version 1.11.20.1.11.20Richard W.M. Jones2011-07-1920-20757/+21039
|
* Update release notes.Richard W.M. Jones2011-07-191-4/+9
|
* java: Add guestfs-java(3) man page.Richard W.M. Jones2011-07-1915-2/+332
|
* Add missing reference to guestfs-perl(3) to guestfs(3).Richard W.M. Jones2011-07-191-0/+1
|
* java: Tidy up the generated C bindings file.Richard W.M. Jones2011-07-191-3/+11
|
* java: Fix optional arguments in calls.Richard W.M. Jones2011-07-194-14/+148
| | | | This also adds tests.
* java: Enable warnings when compiling C bindings code.Richard W.M. Jones2011-07-192-16/+31
| | | | And fix the code so it doesn't generate warnings.
* debian: Fix misspelling in debian/control.Nikita A Menkovich2011-07-181-1/+1
| | | | Updates commit c6577ac73db2d2d93a094ca2b7990e0d60e6a93a.
* debian: Add debian/guestfsd.* to the tarball.Nikita A Menkovich2011-07-181-0/+2
|
* debian: Fix misspelling in debian/control.Nikita A Menkovich2011-07-181-1/+1
|
* Version 1.11.19.1.11.19Richard W.M. Jones2011-07-1822-42781/+75747
|
* po-docs: Include source (POD files) in EXTRA_DIST.Richard W.M. Jones2011-07-182-2/+2
|
* po-docs: Remove empty Spanish translation file.Richard W.M. Jones2011-07-181-31750/+0
|
* po-docs: Fix UTF-8 encoding problem.Richard W.M. Jones2011-07-181-1/+2
|
* po-docs: Update the list of output manpages.Richard W.M. Jones2011-07-172-30/+30
|
* po-docs: Generate list of *.pod files.Richard W.M. Jones2011-07-174-26/+45
| | | | | | Generate the list of *.pod files, instead of hard coding it (and having it get very very out of date). Store the list in a separate file po-docs/podfiles.
* Add notes on making a libguestfs stable release.Richard W.M. Jones2011-07-171-0/+50
|
* Pull latest translations from Transifex.Richard W.M. Jones2011-07-1717-17772/+42170
|
* Add tx pull wrapper script.Richard W.M. Jones2011-07-171-0/+31
|
* ocaml: Generate ocamldoc.Richard W.M. Jones2011-07-174-16/+61
| | | | Also includes improvements to the OCaml documentation.
* ocaml: Bind guestfs_last_errno.Richard W.M. Jones2011-07-162-0/+32
|
* Update API support.Richard W.M. Jones2011-07-163-0/+869
|
* Update ROADMAP file.Richard W.M. Jones2011-07-161-21/+11
|
* fish: Don't make --ro the default yet.Richard W.M. Jones2011-07-161-1/+1
| | | | Defer this decision to a future version of libguestfs.
* docs: Separate out combined =item 's in man pages.Richard W.M. Jones2011-07-169-31/+95
| | | | | | | | | | | | | | | Turn: =item B<-a> | B<--all> into: =item B<-a> =item B<--all> This gives a more natural-looking manual page, as well as making it easier to directly link to these sections.
* Update and rearrange release notes.Richard W.M. Jones2011-07-161-38/+50
|
* Fix test-guestfish-escapes regression test to work with debug/trace enabled.Richard W.M. Jones2011-07-151-2/+7
| | | | | | | | If debugging or tracing is enabled, extra messages are sent to stderr which mess with this test. Remove the extra messages before checking stderr. This updates commit 617e7f6bafa7de2303c08e1715004aae3141c389.
* Version 1.11.18.1.11.18Richard W.M. Jones2011-07-1519-18204/+19522
|