Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Version 1.7.2.1.7.2 | Richard W.M. Jones | 2010-11-05 | 17 | -10725/+11908 |
| | |||||
* | configure: Test for 'kvm' binary. | Guido Günther | 2010-11-05 | 1 | -1/+1 |
| | |||||
* | Include <stdarg.h> in public header. | Guido Günther | 2010-11-05 | 1 | -0/+1 |
| | | | | | Public headers use va_list, and this gives an error unless <stdarg.h> had been included before the header. | ||||
* | Don't print out key material in trace output. | Richard W.M. Jones | 2010-11-05 | 1 | -2/+4 |
| | |||||
* | fish: '-i' option automatically handles whole-disk encryption. | Richard W.M. Jones | 2010-11-05 | 11 | -67/+199 |
| | | | | | | | | | | | This feature is also available in guestmount because of the shared option parsing code. You don't need to do anything to enable it, just using -i will attempt decryption of encrypted partitions. Only works for simple Fedora whole-disk encryption. It's a work-in-progress to make it work for other types of encryption. | ||||
* | docs: Fix API support script. | Richard W.M. Jones | 2010-11-04 | 176 | -28/+6066 |
| | | | | | Before libguestfs 1.0.69 we needed to look in src/guestfs.c to see all the API calls. | ||||
* | fish: Fix missing guestfish commands in HTML docs. | Richard W.M. Jones | 2010-11-04 | 1 | -1/+1 |
| | |||||
* | fish: Make the 'help' command more helpful. | Richard W.M. Jones | 2010-11-04 | 6 | -4/+68 |
| | |||||
* | docs: Which API calls were first supported in which upstream versions. | Richard W.M. Jones | 2010-11-04 | 184 | -5/+40853 |
| | | | | | | | | Run src/api-support/update-from-tarballs.sh (this won't work unless you have a local copy of the tarballs from the website). src/api-support/added contains the result of running the script, a list of pairs: (API name, version first appeared). | ||||
* | virt-win-reg: Current is the control set Windows chooses at boot. | Richard W.M. Jones | 2010-11-03 | 1 | -1/+1 |
| | |||||
* | HACKING: Mention PHP bindings. | Richard W.M. Jones | 2010-11-03 | 1 | -0/+3 |
| | |||||
* | docs: Indent *_va and *_argv functions correctly. | Richard W.M. Jones | 2010-11-03 | 1 | -7/+7 |
| | | | | This fixes commit f661db2c393d1b7e4211c55682b7fac82a70e36d. | ||||
* | Version 1.7.1.1.7.1 | Richard W.M. Jones | 2010-11-03 | 17 | -12531/+13379 |
| | |||||
* | fish: Use a perfect hash for faster command lookups. | Richard W.M. Jones | 2010-11-03 | 6 | -70/+191 |
| | | | | | | Existing command lookups are approx O(n^2). Replace this with a perfect hash implementation which should be a lot faster. | ||||
* | generator: Properly lay out and indent multi-line C function decls. | Richard W.M. Jones | 2010-11-03 | 3 | -13/+44 |
| | |||||
* | docs: Clarify no additional error available from guestfs_create. | Richard W.M. Jones | 2010-11-03 | 1 | -0/+6 |
| | |||||
* | docs: Clarify default error handler. | Richard W.M. Jones | 2010-11-03 | 1 | -1/+26 |
| | |||||
* | docs: Error strings are in fact localized, documentation was wrong. | Richard W.M. Jones | 2010-11-03 | 1 | -4/+0 |
| | |||||
* | docs: Clarify, not every function that returns int returns -1 for errors. | Richard W.M. Jones | 2010-11-03 | 1 | -2/+2 |
| | |||||
* | capitests: Test guestfs_last_errno call. | Richard W.M. Jones | 2010-11-03 | 3 | -2/+154 |
| | |||||
* | fuse: Use guestfs_last_errno instead of errno-reversal-hack. | Richard W.M. Jones | 2010-11-03 | 1 | -31/+1 |
| | |||||
* | lib: Expose errno through new API guestfs_last_errno. | Richard W.M. Jones | 2010-11-03 | 14 | -32/+213 |
| | | | | | | | If either the daemon sends back an errno, or a system call fails in the library, save the errno in the handle and then make it available to callers through the guestfs_last_errno function. | ||||
* | daemon: Send back the errno as a string. | Richard W.M. Jones | 2010-11-03 | 11 | -8/+316 |
| | | | | | | | | This changes the protocol again so that if the errno is available, it is converted to a string (like "EIO") and sent back over the protocol to the library. In this commit the library just discards the string. | ||||
* | capitests: Test guestfs_add_drive_opts with optional args from C. | Richard W.M. Jones | 2010-11-03 | 3 | -2/+70 |
| | |||||
* | capitests: Test some basic aspects of the C API. | Richard W.M. Jones | 2010-11-03 | 4 | -15/+147 |
| | |||||
* | capitests: Use ftruncate instead of seek + write to create test files. | Richard W.M. Jones | 2010-11-03 | 1 | -24/+6 |
| | |||||
* | capitests: Don't open test files with O_NONBLOCK. | Richard W.M. Jones | 2010-11-03 | 1 | -3/+3 |
| | | | | I have no idea why we were doing this. | ||||
* | capitests: Set path in TESTS_ENVIRONMENT instead of in tests.c | Richard W.M. Jones | 2010-11-03 | 2 | -2/+1 |
| | | | | | By exporting LIBGUESTFS_PATH with the right path to the appliance, we no longer need to hard code the path in tests.c | ||||
* | generator: Remove unnecessary macro redefinitions. | Richard W.M. Jones | 2010-11-03 | 1 | -4/+0 |
| | | | | These macros are already defined in guestfs-internals.h | ||||
* | Define internal safe_calloc shorthand. | Richard W.M. Jones | 2010-11-03 | 1 | -0/+1 |
| | |||||
* | daemon: Don't use ../src path to include generator_protocol.h | Richard W.M. Jones | 2010-11-03 | 34 | -35/+35 |
| | | | | | This file is already hard-linked into the current directory, so the relative path is not required. | ||||
* | tests: Remove use of sfdisk from tests. | Richard W.M. Jones | 2010-11-02 | 1 | -11/+41 |
| | | | | | | | Some older tests used sfdisk to create partitions for the tests. sfdisk is buggy (more so than parted -- what is it with partitioning tools?) so replace these tests with equivalent part-* commands. | ||||
* | daemon: Tolerate failure of blockdev --rereadpt after sfdisk. | Richard W.M. Jones | 2010-11-02 | 1 | -2/+1 |
| | | | | | See commit 840536ea5a0568296dfd3e483442c76b93c5a949 and commit 956fc5a3feacc970ea763697bf28fb686c875408. | ||||
* | binary: Link guestmount static binary with -lm. | Richard W.M. Jones | 2010-11-02 | 1 | -1/+1 |
| | | | | | This is indirectly required via the new shared guestfish C inspection code by libxml2. | ||||
* | website: Distribute BUGS and RELEASE-NOTES files to website. | Richard W.M. Jones | 2010-11-02 | 1 | -1/+1 |
| | |||||
* | Version 1.7.0.1.7.0 | Richard W.M. Jones | 2010-11-02 | 17 | -3323/+3343 |
| | |||||
* | Final RELEASE-NOTES file for version 1.6.0. | Richard W.M. Jones | 2010-11-02 | 1 | -35/+80 |
| | |||||
* | inspect: Add support for MeeGo.stable-1.6 | Richard W.M. Jones | 2010-11-02 | 4 | -1/+16 |
| | |||||
* | Version 1.5.26.1.5.26 | Richard W.M. Jones | 2010-10-29 | 17 | -3354/+3918 |
| | |||||
* | inspect: Add support for Ubuntu. | Richard Jones | 2010-10-29 | 5 | -2/+84 |
| | |||||
* | inspect: Add detection of Gentoo. | Richard Jones | 2010-10-29 | 4 | -0/+19 |
| | |||||
* | inspect: Add detection of Arch Linux. | Richard Jones | 2010-10-29 | 4 | -1/+18 |
| | |||||
* | inspect: Add detection of Pardus. | Richard Jones | 2010-10-29 | 4 | -0/+19 |
| | |||||
* | inspect: Generic parsing of MAJOR.MINOR in product names. | Richard Jones | 2010-10-29 | 1 | -16/+26 |
| | |||||
* | inspect: Generic parsing of release files. | Richard Jones | 2010-10-29 | 1 | -26/+25 |
| | |||||
* | inspector: Sort <filesystems> section. | Richard Jones | 2010-10-29 | 1 | -0/+1 |
| | |||||
* | inspect: Ignore Pardus "/.swap" swapfile. | Richard W.M. Jones | 2010-10-29 | 1 | -4/+5 |
| | |||||
* | autogen: Touch ocaml/.depend | Richard Jones | 2010-10-29 | 1 | -0/+4 |
| | |||||
* | inspector: List Debian packages. | Richard W.M. Jones | 2010-10-28 | 4 | -5/+10223 |
| | | | | | List Debian packages by downloading and parsing the file /var/lib/dpkg/status. | ||||
* | inspector: Introductory documentation for XML format. | Richard W.M. Jones | 2010-10-28 | 1 | -0/+130 |
| |