Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tidy up generation of java/Makefile.inc. | Richard Jones | 2009-08-07 | 1 | -1/+32 |
| | | | | | (Just whitespace and comment changes, and small restructuring of the code). | ||||
* | Convert all TABs-as-indentation to spaces. | Jim Meyering | 2009-08-03 | 4 | -55/+55 |
| | | | | | | | | | | | Do it by running this command: [exempted files are matched via .x-sc_TAB_in_indentation] git ls-files \ | pcregrep -vf .x-sc_TAB_in_indentation \ | xargs pcregrep -l '^ *\t' \ | xargs perl -MText::Tabs -ni -le \ '$m=/^( *\t[ \t]*)(.*)/; print $m ? expand($1) . $2 : $_' | ||||
* | Add interface to Linux 'inotify' API. | Richard W.M. Jones | 2009-07-31 | 1 | -1/+1 |
| | |||||
* | Miscellaneous fixes for non-srcdir builds. | Richard Jones | 2009-07-16 | 1 | -1/+1 |
| | |||||
* | java/Makefile.inc: Include this generated file. | Richard W.M. Jones | 2009-07-14 | 2 | -1/+3 |
| | | | | | | We have to include this generated file because it is part of the build system, thus required to exist before the generator runs. | ||||
* | Automatically generate list of built java sources | Matthew Booth | 2009-07-13 | 1 | -2/+6 |
| | |||||
* | Don't list Java files explicitly, since these files are auto-generated. | Richard W.M. Jones | 2009-07-10 | 1 | -9/+1 |
| | |||||
* | RHEL 5: $(builddir) did not exist with this old autoconf/automake, so ↵ | Richard Jones | 2009-07-07 | 1 | -2/+5 |
| | | | | workaround. | ||||
* | Generate structs and struct lists generically. | Richard Jones | 2009-07-07 | 1 | -30/+0 |
| | | | | | | | | | | | 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. | ||||
* | Make it possible to build in a separate directory | Matthew Booth | 2009-07-03 | 1 | -14/+14 |
| | | | | | | | | | | | | | | | | | | | | | | This patch allows you to do: mkdir build cd build ../configure ... make This will output all generated files to the build directory. Given that autogen automatically runs configure, you can also do: BUILDDIR=./build ./autogen.sh which will do the right thing. Also: * Fix a dependency bug which means that guestfs_protocol.h isn't automatically rebuilt. * Re-running autogen.sh with no arguments won't blow away your previous configure arguments. | ||||
* | Remove generated code from git. | Richard W.M. Jones | 2009-07-02 | 9 | -9071/+0 |
| | | | | | | | | 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. | ||||
* | Add 'readdir' call. | Richard W.M. Jones | 2009-07-02 | 4 | -0/+98 |
| | | | | | | | | | | | | 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. | ||||
* | Generated code for the virtio_blk change. | Richard W.M. Jones | 2009-07-01 | 1 | -2/+6 |
| | |||||
* | Generated code for mknod, mkfifo, mknod_b, mknod_c, umask. | Richard W.M. Jones | 2009-06-30 | 2 | -0/+214 |
| | |||||
* | Generated code for 'set_memsize'/'get_memsize' calls. | Richard W.M. Jones | 2009-06-30 | 2 | -0/+82 |
| | |||||
* | Generated code for the 'mkswap*' commands. | Richard W.M. Jones | 2009-06-29 | 2 | -0/+108 |
| | |||||
* | Generated code for mount-loop command. | Richard W.M. Jones | 2009-06-29 | 2 | -0/+39 |
| | |||||
* | Generated code for 'initrd-list'. | Richard W.M. Jones | 2009-06-29 | 2 | -0/+59 |
| | |||||
* | Generated code for 'du' command. | Richard W.M. Jones | 2009-06-29 | 2 | -0/+43 |
| | |||||
* | Generated code for df / df-h. | Richard W.M. Jones | 2009-06-29 | 2 | -0/+80 |
| | |||||
* | Generated code for head/tail commands. | Richard W.M. Jones | 2009-06-29 | 2 | -7/+245 |
| | |||||
* | Generated code for 'wc_*' commands. | Richard W.M. Jones | 2009-06-29 | 2 | -0/+108 |
| | |||||
* | Clarify documentation for mkdtemp. | Richard W.M. Jones | 2009-06-24 | 1 | -4/+8 |
| | |||||
* | Generated code for 'mkdtemp' command. | Richard W.M. Jones | 2009-06-24 | 2 | -0/+52 |
| | |||||
* | Generated code for 'scrub-*' commands. | Richard W.M. Jones | 2009-06-23 | 2 | -1/+125 |
| | |||||
* | Generated code for 'glob-expand'. | Richard Jones | 2009-06-22 | 2 | -0/+59 |
| | |||||
* | Generated code for 'sh' and 'sh-lines' commands. | Richard Jones | 2009-06-22 | 2 | -1/+107 |
| | |||||
* | Generated code for ntfs_3g_probe command. | Richard Jones | 2009-06-08 | 2 | -0/+49 |
| | |||||
* | Generated code for the 'sleep' command. | Richard Jones | 2009-06-04 | 2 | -0/+33 |
| | |||||
* | Generated code for 'add_drive_ro' call. | Richard Jones | 2009-06-02 | 2 | -0/+63 |
| | |||||
* | Add tests for bindings parameters, fix several broken bindings. | Richard W.M. Jones | 2009-05-28 | 5 | -14/+98 |
| | |||||
* | Add the test0* functions, used to test language bindings. | Richard W.M. Jones | 2009-05-28 | 2 | -0/+1220 |
| | |||||
* | Move the appliance and build scripts into new appliance/ subdirectory. | Richard W.M. Jones | 2009-05-28 | 1 | -1/+1 |
| | |||||
* | Improve javadoc (RHBZ#501883). | Richard Jones | 2009-05-27 | 1 | -429/+429 |
| | |||||
* | Generated code for e2fsck-f command. | Richard Jones | 2009-05-21 | 2 | -0/+46 |
| | |||||
* | Generated code for 'find' command. | Richard Jones | 2009-05-19 | 2 | -0/+74 |
| | |||||
* | Generated code for lvresize, resize2fs. | Richard Jones | 2009-05-18 | 2 | -0/+73 |
| | |||||
* | Add vg-activate{,-all} commands, and resize recipe. | Richard Jones | 2009-05-18 | 2 | -0/+97 |
| | |||||
* | Add: pvresize, sfdisk-N, sfdisk-l, sfdisk-kernel-geomtry, ↵ | Richard W.M. Jones | 2009-05-15 | 2 | -0/+217 |
| | | | | sfdisk-disk-geometry commands. Pass --no-reread flag to sfdisk. | ||||
* | Add support for zerofree command. | Richard W.M. Jones | 2009-05-14 | 2 | -0/+43 |
| | |||||
* | Don't stash strings in the handle. | Richard W.M. Jones | 2009-05-13 | 1 | -12/+0 |
| | | | | | - makes it impossible to write bindings for set_{path,qemu,append} functions | ||||
* | Add 'append', LIBGUESTFS_APPEND to set additional kernel options. | Richard W.M. Jones | 2009-05-13 | 2 | -0/+80 |
| | |||||
* | Test the 'command' and 'command_lines' functions thoroughly. | Richard Jones | 2009-05-12 | 1 | -0/+15 |
| | |||||
* | Generated code to support last 3 commits. | Richard Jones | 2009-05-08 | 2 | -0/+35 |
| | |||||
* | Generated code to support previous 2 commits. | Richard Jones | 2009-05-08 | 2 | -0/+169 |
| | |||||
* | Typo in documentation. | Richard W.M. Jones | 2009-05-01 | 1 | -1/+1 |
| | |||||
* | Generated code for 'equal' command. | Richard W.M. Jones | 2009-05-01 | 2 | -0/+42 |
| | |||||
* | Generated code for ping-daemon command. | Richard W.M. Jones | 2009-05-01 | 2 | -0/+35 |
| | |||||
* | Generated code for dmesg command. | Richard W.M. Jones | 2009-05-01 | 2 | -0/+42 |
| | |||||
* | Generated code for drop-caches command. | Richard W.M. Jones | 2009-05-01 | 2 | -0/+41 |
| |