Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add some newly-untracked files to .gitignore | Matthew Booth | 2009-08-05 | 1 | -0/+11 |
| | |||||
* | maint: use a git submodule for gnulib | Jim Meyering | 2009-08-03 | 1 | -0/+5 |
| | | | | | | | | | | | | | | * .gitmodules: New file, to track gnulib. * .gnulib: Submodule directory. * Makefile.am (EXTRA_DIST): Don't list config.rpath or gitlog-to-changelog. * autogen.sh: Adapt to use the new submodule. * cfg.mk: New file. (SUBDIRS): Add gnulib/lib and gnulib/tests. (dist-hook): Reflect new location of getlog-to-changelog. * configure.ac: Set build-aux/ as AUX_DIR. Invoke gl_EARLY and gl_INIT. (AC_CONFIG_FILES): Add gnulib/lib/Makefile and gnulib/tests/Makefile. | ||||
* | Add interface to Linux 'inotify' API. | Richard W.M. Jones | 2009-07-31 | 1 | -0/+1 |
| | |||||
* | Implement '*grep*' family of commands. | Richard Jones | 2009-07-29 | 1 | -0/+1 |
| | |||||
* | Lib.pm: Add file_architecture command. | Richard Jones | 2009-07-29 | 1 | -1/+5 |
| | | | | | This command detects the architecture of some types of binaries, libraries, kernel modules and initrd images. | ||||
* | Add libguestfs-test-tool. | Richard Jones | 2009-07-22 | 1 | -0/+3 |
| | | | | | | | | | | | This is an end-user testing tool, designed to test basic functionality of libguestfs/qemu/kernel combination on the end-user's final host machine. It does not perform a thorough test, but should be enough to find most booting issues. Also this is intended to be used when reporting bugs. | ||||
* | Fix non-srcdir builds: Ignore perl/Makefile-pl.old | Richard Jones | 2009-07-17 | 1 | -0/+1 |
| | |||||
* | New tool virt-cat: display a file in a virtual machine. | Richard Jones | 2009-07-15 | 1 | -0/+2 |
| | | | | | | | | | This script is just a simpler way to cat a file from a VM. It is otherwise equivalent to using guestfish. virt-cat someguest /etc/fstab virt-cat someguest /var/log/messages | tail | ||||
* | java/Makefile.inc: Include this generated file. | Richard W.M. Jones | 2009-07-14 | 1 | -1/+0 |
| | | | | | | We have to include this generated file because it is part of the build system, thus required to exist before the generator runs. | ||||
* | Guestfish feature: remote control of guestfish over a pipe. | Richard Jones | 2009-07-14 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | The use case is to have a long-running guestfish process in a shell script, and thus to avoid the overhead of starting guestfish each time. Do: eval `guestfish --listen` guestfish --remote somecmd guestfish --remote someothercmd guestfish --remote exit This patch also supports having multiple guestfish processes at the same time. The protocol is simple XDR messages over a Unix domain socket. | ||||
* | Support for Linux extended attributes. | Richard W.M. Jones | 2009-07-14 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | This commit adds six calls to support Linux extended attributes. They are: getxattrs list all extended attributes for a file or directory setxattr add/replace an extended attribute removexattr remove an extended attribute lgetxattrs \ lsetxattr (same as above, but operate on symbolic links) lremovexattr / See attr(5) for more information. This also adds support for the FBuffer field type, which maps to an XDR opaque<> or a C (int, char *) pair. | ||||
* | Ignore java/Makefile.inc (generated file). | Richard Jones | 2009-07-13 | 1 | -0/+1 |
| | |||||
* | Add 'version' call to get true library version number. | Richard Jones | 2009-07-10 | 1 | -0/+1 |
| | | | | | | This patch also changes the way that the version is specified in configure.ac. It is now made out of four parts (major, minor, release and extra) and constructed for AC_INIT. | ||||
* | Added framework for 'virt-df' command. | Richard Jones | 2009-07-10 | 1 | -0/+2 |
| | |||||
* | Ignore any file called 'localconfigure'. | Richard Jones | 2009-07-10 | 1 | -0/+1 |
| | | | | | | Developers should put their custom parameters for configure/autogen.sh into a script called ./localconfigure, and this script will be ignored by git and the build system. | ||||
* | Added outline of the virt-v2v script. | Richard Jones | 2009-07-10 | 1 | -0/+2 |
| | |||||
* | Generate structs and struct lists generically. | Richard Jones | 2009-07-07 | 1 | -0/+1 |
| | | | | | | | | | | | This modifies the way that struct and struct lists are generated (for return values) so that there is no need to add an explicit new type when adding a new structure. All tests pass, and the C API should be compatible. I have also inspected the changes that are made to the generated code by hand. | ||||
* | Sort the .gitignore file (no semantic change). | Richard Jones | 2009-07-06 | 1 | -42/+42 |
| | |||||
* | Remove files generated by autoreconf (Guido Gunter and Matthew Booth). | Richard Jones | 2009-07-06 | 1 | -0/+2 |
| | |||||
* | Don't keep rebuilding debirf module symlinks. | Richard W.M. Jones | 2009-07-03 | 1 | -0/+1 |
| | |||||
* | Remove generated files guestfs_protocol.[ch]. | Richard W.M. Jones | 2009-07-02 | 1 | -0/+2 |
| | | | | | | These generated files were accidentally left in when we removed the other generated files in cset b3cb0b04eb2d38ba32c160a83d8e3894b376907b. | ||||
* | Add list of function_names to the daemon. | Richard W.M. Jones | 2009-07-02 | 1 | -0/+1 |
| | | | | | Messages which include the proc_nr can now also include the name of the actual function being called. | ||||
* | Ignore generated file appliance/debian/debirf.conf | Richard W.M. Jones | 2009-07-02 | 1 | -0/+1 |
| | |||||
* | Re-add src/MAX_PROC_NR (generated file). | Richard W.M. Jones | 2009-07-02 | 1 | -1/+0 |
| | | | | | This file is required by configure, so we need to add it so it is available after the git checkout. | ||||
* | Memoize the output of pod2text function in the generator. | Richard W.M. Jones | 2009-07-02 | 1 | -0/+1 |
| | | | | This speeds up the generator greatly. | ||||
* | Remove generated code from git. | Richard W.M. Jones | 2009-07-02 | 1 | -1/+38 |
| | | | | | | | | Git users now require the OCaml compiler in order to regenerate the generated code after a checkout. Generated code will remain in the tarball, so users of the source tarball will not need the OCaml compiler. | ||||
* | Generator now runs automatically when it has changed. | Richard W.M. Jones | 2009-07-02 | 1 | -0/+1 |
| | |||||
* | Add 'readdir' call. | Richard W.M. Jones | 2009-07-02 | 1 | -0/+1 |
| | | | | | | | | | | | | This adds a readdir call (mostly intended for programs). The return value is a list of guestfs_dirent structures. This adds the new types 'struct guestfs_dirent' and 'struct guestfs_dirent_list', along with all the code to return these in the different language bindings. Also includes additional tests for OCaml and Perl bindings to test this. | ||||
* | Add 'initrd-list' command to list contents of initrd images. | Richard W.M. Jones | 2009-06-29 | 1 | -0/+1 |
| | | | | | | Add 'initrd-list' command to list the files inside (new-style) initrd images. Update virt-inspector to use this instead of the less efficient download/unpack locally method. | ||||
* | Add large test files with standard content for the C API test. | Richard W.M. Jones | 2009-06-29 | 1 | -0/+5 |
| | | | | | Large test files with standard content for the C API test, and add a regression test for previous hexdump failure on large files. | ||||
* | Haskell bindings: Implement bindtests. | Richard W.M. Jones | 2009-06-28 | 1 | -0/+1 |
| | |||||
* | Move distro package list to a separate packagelist.in file. | Richard W.M. Jones | 2009-06-19 | 1 | -0/+1 |
| | |||||
* | Rename guestfs-supermin-helper -> libguestfs-supermin-helper. | Richard Jones | 2009-06-18 | 1 | -1/+1 |
| | |||||
* | Experimental implementation of the supermin appliance (passes most tests). | Richard Jones | 2009-06-15 | 1 | -0/+6 |
| | |||||
* | Rename (make|update)-initramfs.sh.in -> (make|update).sh.in | Richard Jones | 2009-06-13 | 1 | -3/+2 |
| | |||||
* | Use a squashfs attached as /dev/sdd during the C API tests. | Richard W.M. Jones | 2009-05-29 | 1 | -0/+1 |
| | |||||
* | Add tests for bindings parameters, fix several broken bindings. | Richard W.M. Jones | 2009-05-28 | 1 | -0/+2 |
| | |||||
* | Move C API tests out of root build dir into 'capitests' subdir. | Richard W.M. Jones | 2009-05-28 | 1 | -4/+4 |
| | |||||
* | Move the appliance and build scripts into new appliance/ subdirectory. | Richard W.M. Jones | 2009-05-28 | 1 | -5/+5 |
| | |||||
* | Added Polish translation (Piotr Drąg) (fixes RHBZ#502533). | Richard Jones | 2009-05-26 | 1 | -1/+2 |
| | |||||
* | Ignore generated file. | Richard Jones | 2009-05-21 | 1 | -0/+1 |
| | |||||
* | Gettextize the source, make library strings translatable. | Richard Jones | 2009-05-21 | 1 | -0/+2 |
| | |||||
* | Intltoolize the source. | Richard Jones | 2009-05-21 | 1 | -0/+2 |
| | |||||
* | Ignore old make-initramfs file. | Richard Jones | 2009-05-18 | 1 | -0/+1 |
| | |||||
* | Test the 'command' and 'command_lines' functions thoroughly. | Richard Jones | 2009-05-12 | 1 | -0/+1 |
| | |||||
* | Partial Haskell bindings. | Richard Jones | 2009-05-10 | 1 | -0/+4 |
| | |||||
* | Build virt-inspector HTML for the website. | Richard Jones | 2009-04-28 | 1 | -0/+1 |
| | |||||
* | Added virt-inspector program from virt-v2v. | Richard Jones | 2009-04-28 | 1 | -0/+1 |
| | |||||
* | Added guestfish recipes. | Richard Jones | 2009-04-25 | 1 | -0/+1 |
| | |||||
* | Automatically generate ChangeLog file from the git log (thanks: Jim Meyering). | Richard W.M. Jones | 2009-04-23 | 1 | -0/+1 |
| |