summaryrefslogtreecommitdiffstats
path: root/java/Makefile.inc
Commit message (Collapse)AuthorAgeFilesLines
* New API: md-stat.Richard W.M. Jones2012-03-201-0/+1
| | | | | This returns information about the underlying devices of an MD (software RAID) device.
* generator: Sort camel-case structs.Richard W.M. Jones2012-03-161-7/+7
|
* New APIs: isoinfo and isoinfo-device.Richard W.M. Jones2012-03-161-0/+1
| | | | | Get ISO primary volume descriptor information for either ISO devices or ISO files.
* Tempora mutantur, nos et mutamur in illis.Matthew Booth2012-01-041-1/+1
|
* Tempora mutantur, nos et mutamur in illis.Richard W.M. Jones2011-01-021-1/+1
|
* New API: inspect-list-applications.Richard W.M. Jones2010-11-151-0/+1
| | | | | | | | This converts the current Perl code in virt-inspector for listing applications, into C, making it a part of the core API. This is also capable of fetching the list of Windows applications from the registry.
* Split generator into separate source files.Richard Jones2010-09-111-1/+1
| | | | | | | | | | 'src/generator.ml' is no more. Instead the generator is logically split up over many different source files. Read generator/README for help and tips. We compile the generator down to bytecode, not native code. This means it will run more slowly, but is done for maximum portability.
* Update copyright years.Richard Jones2010-01-021-1/+1
|
* Remove separate inspector_generator.ml, combine this with generator.ml.Richard Jones2009-12-311-1/+2
| | | | | | | | | | | This commit combines the previously separate "inspector_generator.ml" program which generated bindings for virt-inspector. Having two separate programs caused no end of troubles for developers, so we now combine them into a single program. NOTE: OCaml xml-light is now *required* in order to rebuild the generated code.
* Generic partition creation interface.Richard Jones2009-11-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit introduces a generic partition creation interface which should be future-proof and extensible, and partially replaces the old sfdisk-based interface. The implementation is based on parted but is hopefully not too dependent on the particulars of parted. The following new calls are introduced: guestfs_part_init: Initialize a disk with a partition table. Unlike the sfdisk- based interface, we also support GPT and other partition types, which is essential to scale to devices larger than 2TB. guestfs_part_add: Add a partition to an existing disk. guestfs_part_disk: Convenience function which combines part_init & part_add, creating a single partition that covers the whole disk. guestfs_part_set_bootable: guestfs_part_set_name: Set various aspects of existing partitions. guestfs_part_list: List partitions on a device. This returns a programming-friendly list of partition structs (in contrast to sfdisk-l which cannot be parsed). guestfs_part_get_parttype: Return the partition table type, eg. "msdos" or "gpt". The following calls are planned, but not added currently: guestfs_part_get_bootable guestfs_part_get_name guestfs_part_set_type guestfs_part_get_type
* Tidy up generation of java/Makefile.inc.Richard Jones2009-08-071-1/+32
| | | | | (Just whitespace and comment changes, and small restructuring of the code).
* Add interface to Linux 'inotify' API.Richard W.M. Jones2009-07-311-1/+1
|
* java/Makefile.inc: Include this generated file.Richard W.M. Jones2009-07-141-0/+1
We have to include this generated file because it is part of the build system, thus required to exist before the generator runs.