summaryrefslogtreecommitdiffstats
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Add some newly-untracked files to .gitignoreMatthew Booth2009-08-051-0/+11
|
* maint: use a git submodule for gnulibJim Meyering2009-08-031-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. Jones2009-07-311-0/+1
|
* Implement '*grep*' family of commands.Richard Jones2009-07-291-0/+1
|
* Lib.pm: Add file_architecture command.Richard Jones2009-07-291-1/+5
| | | | | This command detects the architecture of some types of binaries, libraries, kernel modules and initrd images.
* Add libguestfs-test-tool.Richard Jones2009-07-221-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.oldRichard Jones2009-07-171-0/+1
|
* New tool virt-cat: display a file in a virtual machine.Richard Jones2009-07-151-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. Jones2009-07-141-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 Jones2009-07-141-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. Jones2009-07-141-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 Jones2009-07-131-0/+1
|
* Add 'version' call to get true library version number.Richard Jones2009-07-101-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 Jones2009-07-101-0/+2
|
* Ignore any file called 'localconfigure'.Richard Jones2009-07-101-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 Jones2009-07-101-0/+2
|
* Generate structs and struct lists generically.Richard Jones2009-07-071-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 Jones2009-07-061-42/+42
|
* Remove files generated by autoreconf (Guido Gunter and Matthew Booth).Richard Jones2009-07-061-0/+2
|
* Don't keep rebuilding debirf module symlinks.Richard W.M. Jones2009-07-031-0/+1
|
* Remove generated files guestfs_protocol.[ch].Richard W.M. Jones2009-07-021-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. Jones2009-07-021-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.confRichard W.M. Jones2009-07-021-0/+1
|
* Re-add src/MAX_PROC_NR (generated file).Richard W.M. Jones2009-07-021-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. Jones2009-07-021-0/+1
| | | | This speeds up the generator greatly.
* Remove generated code from git.Richard W.M. Jones2009-07-021-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. Jones2009-07-021-0/+1
|
* Add 'readdir' call.Richard W.M. Jones2009-07-021-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. Jones2009-06-291-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. Jones2009-06-291-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. Jones2009-06-281-0/+1
|
* Move distro package list to a separate packagelist.in file.Richard W.M. Jones2009-06-191-0/+1
|
* Rename guestfs-supermin-helper -> libguestfs-supermin-helper.Richard Jones2009-06-181-1/+1
|
* Experimental implementation of the supermin appliance (passes most tests).Richard Jones2009-06-151-0/+6
|
* Rename (make|update)-initramfs.sh.in -> (make|update).sh.inRichard Jones2009-06-131-3/+2
|
* Use a squashfs attached as /dev/sdd during the C API tests.Richard W.M. Jones2009-05-291-0/+1
|
* Add tests for bindings parameters, fix several broken bindings.Richard W.M. Jones2009-05-281-0/+2
|
* Move C API tests out of root build dir into 'capitests' subdir.Richard W.M. Jones2009-05-281-4/+4
|
* Move the appliance and build scripts into new appliance/ subdirectory.Richard W.M. Jones2009-05-281-5/+5
|
* Added Polish translation (Piotr Drąg) (fixes RHBZ#502533).Richard Jones2009-05-261-1/+2
|
* Ignore generated file.Richard Jones2009-05-211-0/+1
|
* Gettextize the source, make library strings translatable.Richard Jones2009-05-211-0/+2
|
* Intltoolize the source.Richard Jones2009-05-211-0/+2
|
* Ignore old make-initramfs file.Richard Jones2009-05-181-0/+1
|
* Test the 'command' and 'command_lines' functions thoroughly.Richard Jones2009-05-121-0/+1
|
* Partial Haskell bindings.Richard Jones2009-05-101-0/+4
|
* Build virt-inspector HTML for the website.Richard Jones2009-04-281-0/+1
|
* Added virt-inspector program from virt-v2v.Richard Jones2009-04-281-0/+1
|
* Added guestfish recipes.Richard Jones2009-04-251-0/+1
|
* Automatically generate ChangeLog file from the git log (thanks: Jim Meyering).Richard W.M. Jones2009-04-231-0/+1
|