libguestfs.git
12 years agoVersion 1.13.1. 1.13.1
Richard W.M. Jones [Tue, 26 Jul 2011 13:17:19 +0000 (14:17 +0100)]
Version 1.13.1.

12 years agovirt-df: Re-add documentation for --csv option.
Richard W.M. Jones [Tue, 26 Jul 2011 11:39:54 +0000 (12:39 +0100)]
virt-df: Re-add documentation for --csv option.

The documentation for the --csv option disappeared between 1.6 and 1.8
when we rewrote virt-df in C.  Re-add it from 1.6 sources.

12 years agotest-tool: Print FEBOOTSTRAP_* environment variables (RHBZ#671082).
Richard W.M. Jones [Mon, 25 Jul 2011 10:21:48 +0000 (11:21 +0100)]
test-tool: Print FEBOOTSTRAP_* environment variables (RHBZ#671082).

12 years agotest-tool: Display state of pgroup flag from the handle.
Richard W.M. Jones [Mon, 25 Jul 2011 10:16:24 +0000 (11:16 +0100)]
test-tool: Display state of pgroup flag from the handle.

This updates commit f173543fd207bdc254a5eb75180d82ef25eacae9.

12 years agolaunch: Add qemu_supports_re function.
Richard W.M. Jones [Mon, 25 Jul 2011 10:12:48 +0000 (11:12 +0100)]
launch: Add qemu_supports_re function.

This function is like qemu_supports, but allows us to grep
the help text using regular expressions.

Note the function is not used yet.

12 years agoRequire PCRE library.
Richard W.M. Jones [Mon, 25 Jul 2011 09:56:52 +0000 (10:56 +0100)]
Require PCRE library.

This library is widely available in distros.

12 years agodocs: Document FEBOOTSTRAP_KERNEL, FEBOOTSTRAP_MODULES (RHBZ#671082).
Richard W.M. Jones [Fri, 22 Jul 2011 15:17:06 +0000 (16:17 +0100)]
docs: Document FEBOOTSTRAP_KERNEL, FEBOOTSTRAP_MODULES (RHBZ#671082).

12 years agoperl: Fix CCFLAGS for Perl 5.14.
Richard W.M. Jones [Fri, 22 Jul 2011 10:12:52 +0000 (11:12 +0100)]
perl: Fix CCFLAGS for Perl 5.14.

A change to ExtUtils::CBuilder in Perl 5.14 causes CCFLAGS to
completely replace, rather than appending, the C flags.

The unfortunate consequence of this is that vital flags such as
-D_FILE_OFFSET_BITS=64 are missing.  For 32 bit code, this means you
get binary-incompatible code that completely fails to load.

For further analysis see:

http://www.nntp.perl.org/group/perl.perl5.porters/2011/04/msg171535.html

This commit changes CCFLAGS so that it appends to the existing
$Config{ccflags} instead of replacing it.  On earlier versions of Perl
this means we get two copies of the flags, which is unfortunate but
should be safe.

12 years agobuild: Redirect ./configure errors in general to config.log.
Richard W.M. Jones [Thu, 21 Jul 2011 16:59:34 +0000 (17:59 +0100)]
build: Redirect ./configure errors in general to config.log.

12 years agobuild: Send failed Perl test configure output to config.log.
Richard W.M. Jones [Thu, 21 Jul 2011 16:00:48 +0000 (17:00 +0100)]
build: Send failed Perl test configure output to config.log.

12 years agobuild: Allow 'make quickcheck' test-tool args to be overridden.
Richard W.M. Jones [Thu, 21 Jul 2011 09:50:40 +0000 (10:50 +0100)]
build: Allow 'make quickcheck' test-tool args to be overridden.

A typical use for this is for packagers who want to increase
the default timeout:

  make quickcheck QUICKCHECK_TEST_TOOL_ARGS="-t 300"

12 years agoUpdate version number to 1.13.0. 1.13.0
Richard W.M. Jones [Wed, 20 Jul 2011 17:28:07 +0000 (18:28 +0100)]
Update version number to 1.13.0.

There is no build or tarball for this, since it is identical
to 1.12.0.

12 years agoVersion 1.12.0. 1.12.0
Richard W.M. Jones [Wed, 20 Jul 2011 15:37:37 +0000 (16:37 +0100)]
Version 1.12.0.

12 years agoFinalize release notes for 1.12 release.
Richard W.M. Jones [Wed, 20 Jul 2011 15:37:19 +0000 (16:37 +0100)]
Finalize release notes for 1.12 release.

12 years agoblkid: Use -c /dev/null option to kill the cache.
Richard W.M. Jones [Wed, 20 Jul 2011 13:41:39 +0000 (14:41 +0100)]
blkid: Use -c /dev/null option to kill the cache.

On recent Debian, /etc/blkid.tab is now a symlink to /dev/.blkid.tab.
Rather than chasing the cache file around (it may move to /run in future)
use the -c /dev/null option to stop blkid from reading the cache.

12 years agoblkid: Detect when value not found and return empty string.
Richard W.M. Jones [Wed, 20 Jul 2011 13:25:32 +0000 (14:25 +0100)]
blkid: Detect when value not found and return empty string.

If the blkid command returns 2, that means the value was not found.

Note that this changes the output of the vfs-type API when the
filesystem has no type (eg when it is empty).  Previously this would
return an error.  Now it returns empty string "".

We did not document this either way.  Making it return empty string is
consistent with vfs-label and vfs-uuid.

This change broke list-filesystems, since that code was assuming that
vfs-type could only return a filesystem type or an error.

12 years agodocs: Update stable release instructions.
Richard W.M. Jones [Wed, 20 Jul 2011 12:49:16 +0000 (13:49 +0100)]
docs: Update stable release instructions.

12 years agoconfigure: Remove -Wmissing-noreturn warning.
Richard W.M. Jones [Wed, 20 Jul 2011 12:33:47 +0000 (13:33 +0100)]
configure: Remove -Wmissing-noreturn warning.

12 years agopo-docs: Fix generation of 'podfiles'.
Richard W.M. Jones [Wed, 20 Jul 2011 12:20:10 +0000 (13:20 +0100)]
po-docs: Fix generation of 'podfiles'.

12 years agoappliance: Capture stderr from qemu to the event system.
Richard W.M. Jones [Wed, 20 Jul 2011 11:07:30 +0000 (12:07 +0100)]
appliance: Capture stderr from qemu to the event system.

12 years agoappliance: Document pipe fds.
Richard W.M. Jones [Wed, 20 Jul 2011 11:05:40 +0000 (12:05 +0100)]
appliance: Document pipe fds.

12 years agoPartially revert d82438431c1551610eb7d9945fa76d6387534582.
Richard W.M. Jones [Wed, 20 Jul 2011 10:45:02 +0000 (11:45 +0100)]
Partially revert d82438431c1551610eb7d9945fa76d6387534582.

It appears qemu-kvm does *not* require -machine accel=tcg option.
That problem disappeared after upgrading seabios(!)  However leave the
test for qemu -help option, since that's useful to determine if qemu
is completely broken or not.

12 years agobuild: Fix virtio-serial test for qemu 0.15.
Richard W.M. Jones [Tue, 19 Jul 2011 18:55:24 +0000 (19:55 +0100)]
build: Fix virtio-serial test for qemu 0.15.

Now qemu 0.15 won't even start up unless the -machine accel=... option
is specified.  Essentially this is a regression in qemu.

12 years agoVersion 1.11.20. 1.11.20
Richard W.M. Jones [Tue, 19 Jul 2011 18:07:50 +0000 (19:07 +0100)]
Version 1.11.20.

12 years agoUpdate release notes.
Richard W.M. Jones [Tue, 19 Jul 2011 16:56:14 +0000 (17:56 +0100)]
Update release notes.

12 years agojava: Add guestfs-java(3) man page.
Richard W.M. Jones [Tue, 19 Jul 2011 16:54:35 +0000 (17:54 +0100)]
java: Add guestfs-java(3) man page.

12 years agoAdd missing reference to guestfs-perl(3) to guestfs(3).
Richard W.M. Jones [Tue, 19 Jul 2011 16:40:52 +0000 (17:40 +0100)]
Add missing reference to guestfs-perl(3) to guestfs(3).

12 years agojava: Tidy up the generated C bindings file.
Richard W.M. Jones [Tue, 19 Jul 2011 15:34:06 +0000 (16:34 +0100)]
java: Tidy up the generated C bindings file.

12 years agojava: Fix optional arguments in calls.
Richard W.M. Jones [Tue, 19 Jul 2011 13:45:11 +0000 (14:45 +0100)]
java: Fix optional arguments in calls.

This also adds tests.

12 years agojava: Enable warnings when compiling C bindings code.
Richard W.M. Jones [Tue, 19 Jul 2011 13:32:45 +0000 (14:32 +0100)]
java: Enable warnings when compiling C bindings code.

And fix the code so it doesn't generate warnings.

12 years agodebian: Fix misspelling in debian/control.
Nikita A Menkovich [Mon, 18 Jul 2011 12:55:02 +0000 (13:55 +0100)]
debian: Fix misspelling in debian/control.

Updates commit c6577ac73db2d2d93a094ca2b7990e0d60e6a93a.

12 years agodebian: Add debian/guestfsd.* to the tarball.
Nikita A Menkovich [Mon, 18 Jul 2011 12:57:09 +0000 (13:57 +0100)]
debian: Add debian/guestfsd.* to the tarball.

12 years agodebian: Fix misspelling in debian/control.
Nikita A Menkovich [Mon, 18 Jul 2011 12:55:02 +0000 (13:55 +0100)]
debian: Fix misspelling in debian/control.

12 years agoVersion 1.11.19. 1.11.19
Richard W.M. Jones [Mon, 18 Jul 2011 10:55:41 +0000 (11:55 +0100)]
Version 1.11.19.

12 years agopo-docs: Include source (POD files) in EXTRA_DIST.
Richard W.M. Jones [Mon, 18 Jul 2011 11:12:42 +0000 (12:12 +0100)]
po-docs: Include source (POD files) in EXTRA_DIST.

12 years agopo-docs: Remove empty Spanish translation file.
Richard W.M. Jones [Mon, 18 Jul 2011 08:34:04 +0000 (09:34 +0100)]
po-docs: Remove empty Spanish translation file.

12 years agopo-docs: Fix UTF-8 encoding problem.
Richard W.M. Jones [Mon, 18 Jul 2011 08:33:24 +0000 (09:33 +0100)]
po-docs: Fix UTF-8 encoding problem.

12 years agopo-docs: Update the list of output manpages.
Richard W.M. Jones [Sun, 17 Jul 2011 22:05:50 +0000 (23:05 +0100)]
po-docs: Update the list of output manpages.

12 years agopo-docs: Generate list of *.pod files.
Richard W.M. Jones [Sun, 17 Jul 2011 22:03:37 +0000 (23:03 +0100)]
po-docs: Generate list of *.pod files.

Generate the list of *.pod files, instead of hard coding
it (and having it get very very out of date).  Store the
list in a separate file po-docs/podfiles.

12 years agoAdd notes on making a libguestfs stable release.
Richard W.M. Jones [Sun, 17 Jul 2011 21:03:22 +0000 (22:03 +0100)]
Add notes on making a libguestfs stable release.

12 years agoPull latest translations from Transifex.
Richard W.M. Jones [Sun, 17 Jul 2011 21:02:58 +0000 (22:02 +0100)]
Pull latest translations from Transifex.

12 years agoAdd tx pull wrapper script.
Richard W.M. Jones [Sun, 17 Jul 2011 21:01:40 +0000 (22:01 +0100)]
Add tx pull wrapper script.

12 years agoocaml: Generate ocamldoc.
Richard W.M. Jones [Sun, 17 Jul 2011 09:29:47 +0000 (10:29 +0100)]
ocaml: Generate ocamldoc.

Also includes improvements to the OCaml documentation.

12 years agoocaml: Bind guestfs_last_errno.
Richard W.M. Jones [Sat, 16 Jul 2011 18:11:52 +0000 (19:11 +0100)]
ocaml: Bind guestfs_last_errno.

12 years agoUpdate API support.
Richard W.M. Jones [Sat, 16 Jul 2011 18:11:37 +0000 (19:11 +0100)]
Update API support.

12 years agoUpdate ROADMAP file.
Richard W.M. Jones [Sat, 16 Jul 2011 14:26:32 +0000 (15:26 +0100)]
Update ROADMAP file.

12 years agofish: Don't make --ro the default yet.
Richard W.M. Jones [Sat, 16 Jul 2011 14:23:48 +0000 (15:23 +0100)]
fish: Don't make --ro the default yet.

Defer this decision to a future version of libguestfs.

12 years agodocs: Separate out combined =item 's in man pages.
Richard W.M. Jones [Sat, 16 Jul 2011 14:20:29 +0000 (15:20 +0100)]
docs: Separate out combined =item 's in man pages.

Turn:

 =item B<-a> | B<--all>

into:

 =item B<-a>

 =item B<--all>

This gives a more natural-looking manual page, as well as making it
easier to directly link to these sections.

12 years agoUpdate and rearrange release notes.
Richard W.M. Jones [Sat, 16 Jul 2011 11:36:07 +0000 (12:36 +0100)]
Update and rearrange release notes.

12 years agoFix test-guestfish-escapes regression test to work with debug/trace enabled.
Richard W.M. Jones [Fri, 15 Jul 2011 21:09:29 +0000 (22:09 +0100)]
Fix test-guestfish-escapes regression test to work with debug/trace enabled.

If debugging or tracing is enabled, extra messages are sent to stderr
which mess with this test.  Remove the extra messages before checking
stderr.

This updates commit 617e7f6bafa7de2303c08e1715004aae3141c389.

12 years agoVersion 1.11.18. 1.11.18
Richard W.M. Jones [Fri, 15 Jul 2011 16:23:41 +0000 (17:23 +0100)]
Version 1.11.18.

12 years agoUpdate release notes.
Richard W.M. Jones [Fri, 15 Jul 2011 15:14:56 +0000 (16:14 +0100)]
Update release notes.

12 years agoUpdate API support.
Richard W.M. Jones [Fri, 15 Jul 2011 15:10:19 +0000 (16:10 +0100)]
Update API support.

12 years agoruby: Add binding for guestfs_user_cancel.
Richard W.M. Jones [Fri, 15 Jul 2011 13:57:00 +0000 (14:57 +0100)]
ruby: Add binding for guestfs_user_cancel.

12 years agoperl: Add binding for guestfs_user_cancel.
Richard W.M. Jones [Fri, 15 Jul 2011 13:47:09 +0000 (14:47 +0100)]
perl: Add binding for guestfs_user_cancel.

12 years agoocaml: Add binding for guestfs_user_cancel.
Richard W.M. Jones [Fri, 15 Jul 2011 13:33:29 +0000 (14:33 +0100)]
ocaml: Add binding for guestfs_user_cancel.

12 years agofish: Register ^C handler to cancel long transfers.
Richard W.M. Jones [Fri, 15 Jul 2011 10:01:23 +0000 (11:01 +0100)]
fish: Register ^C handler to cancel long transfers.

12 years agofish: Add is_interactive flag.
Richard W.M. Jones [Fri, 15 Jul 2011 10:36:23 +0000 (11:36 +0100)]
fish: Add is_interactive flag.

Decide early (before launch) if this is going to be an interactive
session, and set the is_interactive flag.

12 years agoAdd user cancellation to the C API.
Richard W.M. Jones [Fri, 15 Jul 2011 09:43:36 +0000 (10:43 +0100)]
Add user cancellation to the C API.

This allows long transfers (FileIn and FileOut operations) to be
cancelled by calling the signal and thread safe guestfs_user_cancel
function.

Most of this commit consists of a multithreaded program that tests
user cancellation of uploads and downloads.

12 years agoNew APIs: set-pgroup, get-pgroup
Richard W.M. Jones [Fri, 15 Jul 2011 10:38:21 +0000 (11:38 +0100)]
New APIs: set-pgroup, get-pgroup

If the pgroup flag is set in the handle, then the qemu and recovery
subprocesses are placed in separate process groups.  The default is
false.

The purpose for setting up a process group is that ^C will not be
passed from the main process down to these processes (killing them).
This allows ^C and other keyboard events to be caught and handled in
the main process.

12 years agoguestfs.h: Add missing extern keyword before event functions.
Richard W.M. Jones [Fri, 15 Jul 2011 09:42:56 +0000 (10:42 +0100)]
guestfs.h: Add missing extern keyword before event functions.

12 years agodebian: New sub-package: guestfsd.
Nikita A Menkovich [Thu, 14 Jul 2011 18:24:43 +0000 (19:24 +0100)]
debian: New sub-package: guestfsd.

This patch adds guestfsd debian package to the build.  The daemon can
be installed in virtualization clients to enable libguestfs live
access.

12 years agoNew API: write-append
Richard W.M. Jones [Thu, 14 Jul 2011 17:18:07 +0000 (18:18 +0100)]
New API: write-append

Append content to the end of a file.

12 years agofish: Handle backslash escapes in guestfish double-quoted strings.
Richard W.M. Jones [Thu, 14 Jul 2011 17:17:39 +0000 (18:17 +0100)]
fish: Handle backslash escapes in guestfish double-quoted strings.

12 years agobuild: Add ./configure --enable-install-daemon
Richard W.M. Jones [Thu, 14 Jul 2011 14:52:29 +0000 (15:52 +0100)]
build: Add ./configure --enable-install-daemon

If enabled, then the daemon will be installed in $sbindir
(eg. /usr/sbin/guestfsd).  The default is off, as now.

This option should be used by packagers when building the libguestfs
live service.

12 years agoVersion 1.11.17. 1.11.17
Richard W.M. Jones [Thu, 14 Jul 2011 13:32:34 +0000 (14:32 +0100)]
Version 1.11.17.

12 years agoresize: Clarify examples in the man page.
Richard W.M. Jones [Thu, 14 Jul 2011 12:42:33 +0000 (13:42 +0100)]
resize: Clarify examples in the man page.

12 years agoresize: Add btrfs support to virt-resize (RHBZ#721275).
Richard W.M. Jones [Thu, 14 Jul 2011 10:39:11 +0000 (11:39 +0100)]
resize: Add btrfs support to virt-resize (RHBZ#721275).

12 years agoNew API: btrfs-filesystem-resize (RHBZ#721160).
Richard W.M. Jones [Thu, 14 Jul 2011 10:38:25 +0000 (11:38 +0100)]
New API: btrfs-filesystem-resize (RHBZ#721160).

This resizes a btrfs filesystem.

12 years agodocs: resize: Not just limited to resizing filesystems in partitions.
Richard W.M. Jones [Thu, 14 Jul 2011 12:02:31 +0000 (13:02 +0100)]
docs: resize: Not just limited to resizing filesystems in partitions.

If you use --LV-expand then filesystems in LVs can be resized too.

12 years agomkfs: Don't die if mke2fs is not available.
Richard W.M. Jones [Thu, 14 Jul 2011 10:27:24 +0000 (11:27 +0100)]
mkfs: Don't die if mke2fs is not available.

Allow other types of filesystems to be created.

12 years agoVersion 1.11.16. 1.11.16
Richard W.M. Jones [Wed, 13 Jul 2011 14:59:33 +0000 (15:59 +0100)]
Version 1.11.16.

12 years agoUpdate release notes.
Richard W.M. Jones [Wed, 13 Jul 2011 14:33:07 +0000 (15:33 +0100)]
Update release notes.

12 years agoRefresh README file.
Richard W.M. Jones [Wed, 13 Jul 2011 14:03:04 +0000 (15:03 +0100)]
Refresh README file.

Update and verify the list of requirements, by checking it against
both configure.ac and the Fedora specfile.

Remove some obsolete sections that covered historical ground.

12 years agoappliance: Add systemd to get /sbin/reboot for virt-rescue (RHBZ#661280).
Richard W.M. Jones [Wed, 13 Jul 2011 13:27:28 +0000 (14:27 +0100)]
appliance: Add systemd to get /sbin/reboot for virt-rescue (RHBZ#661280).

12 years agodocs: Update API support.
Richard W.M. Jones [Wed, 13 Jul 2011 08:51:00 +0000 (09:51 +0100)]
docs: Update API support.

12 years agovirt-resize: Arrange options in man page in alphabetical order.
Richard W.M. Jones [Wed, 13 Jul 2011 08:44:13 +0000 (09:44 +0100)]
virt-resize: Arrange options in man page in alphabetical order.

12 years agovirt-resize: Add --ntfsresize-force option.
Richard W.M. Jones [Wed, 13 Jul 2011 08:27:57 +0000 (09:27 +0100)]
virt-resize: Add --ntfsresize-force option.

Use the non-deprecated g#ntfsresize_opts API call, and also add
the --ntfsresize-force option for forcing resize.

12 years agoVersion 1.11.15. 1.11.15
Richard W.M. Jones [Tue, 12 Jul 2011 18:11:59 +0000 (19:11 +0100)]
Version 1.11.15.

12 years agoTODO: Attach method for disconnected operation.
Richard W.M. Jones [Tue, 12 Jul 2011 16:26:34 +0000 (17:26 +0100)]
TODO: Attach method for disconnected operation.

12 years agopart-get-bootable: Fix when partitions are missing or unordered (RHBZ#602997).
Richard W.M. Jones [Tue, 12 Jul 2011 16:18:48 +0000 (17:18 +0100)]
part-get-bootable: Fix when partitions are missing or unordered (RHBZ#602997).

12 years agoNew API: ntfsresize-opts (RHBZ#685009).
Richard W.M. Jones [Tue, 12 Jul 2011 17:16:40 +0000 (18:16 +0100)]
New API: ntfsresize-opts (RHBZ#685009).

This is a more comprehensive fix for RHBZ#685009.  Add a new API which
allows the --force flag to be passed, allowing multiple NTFS resize
operations in a single session.

12 years agoDocument that ntfsresize cannot be used multiple times (RHBZ#685009).
Richard W.M. Jones [Tue, 12 Jul 2011 13:13:57 +0000 (14:13 +0100)]
Document that ntfsresize cannot be used multiple times (RHBZ#685009).

12 years agofish: Show device mapper device in tab completion (RHBZ#688062).
Richard W.M. Jones [Tue, 12 Jul 2011 12:31:42 +0000 (13:31 +0100)]
fish: Show device mapper device in tab completion (RHBZ#688062).

With this change:

><fs> luks-open /dev/vda1 lukstest
Enter key or passphrase ("key"):
><fs> ll /dev/<TAB>
/dev/mapper/lukstest  /dev/vda              /dev/vda1

12 years agoNew API: list-dm-devices (RHBZ#688062).
Richard W.M. Jones [Tue, 12 Jul 2011 12:26:25 +0000 (13:26 +0100)]
New API: list-dm-devices (RHBZ#688062).

List device mapper devices.

12 years agoDon't mention /dev/mapper in docs for vg-activate{,-all} commands.
Richard W.M. Jones [Tue, 12 Jul 2011 11:23:15 +0000 (12:23 +0100)]
Don't mention /dev/mapper in docs for vg-activate{,-all} commands.

Although vg-activate and vg-activate-all do make /dev/mapper/VG-LV
devices internally, we always prefer to use the /dev/VG/LV format and
we return this format where possible.  Therefore don't mention
/dev/mapper in this documentation.

12 years agoprotocol: Force optargs_bitmask to be passed as 0 for non-opt actions.
Richard W.M. Jones [Tue, 12 Jul 2011 17:17:35 +0000 (18:17 +0100)]
protocol: Force optargs_bitmask to be passed as 0 for non-opt actions.

If the action doesn't take optional arguments, nevertheless force the
optargs_bitmask field in the header to be passed as 0, and give an
error if not.

12 years agolist-9p: Avoid double free along error path.
Richard W.M. Jones [Tue, 12 Jul 2011 11:51:43 +0000 (12:51 +0100)]
list-9p: Avoid double free along error path.

This updates commit 5f10c3350338bbca735a74db26f98da968957bd9.

12 years agoVersion 1.11.14. 1.11.14
Richard W.M. Jones [Wed, 6 Jul 2011 16:25:00 +0000 (17:25 +0100)]
Version 1.11.14.

12 years agomkfs-opts: Don't test optional arguments in this test.
Richard W.M. Jones [Wed, 6 Jul 2011 09:53:04 +0000 (10:53 +0100)]
mkfs-opts: Don't test optional arguments in this test.

12 years agomkfs-opts: Add optional sectorsize parameter.
Nikita A Menkovich [Wed, 6 Jul 2011 09:36:13 +0000 (10:36 +0100)]
mkfs-opts: Add optional sectorsize parameter.

12 years agocapitests: Allow tests to properly test optional arguments.
Richard W.M. Jones [Wed, 6 Jul 2011 09:50:25 +0000 (10:50 +0100)]
capitests: Allow tests to properly test optional arguments.

For optional arguments, you can now specify empty string to mean no
argument, except for String optional arguments where you must use
"NOARG" (empty string meaning a supplied empty string argument).

12 years agoImplement inode option to mkfs_opts command.
Nikita A Menkovich [Mon, 4 Jul 2011 09:25:04 +0000 (10:25 +0100)]
Implement inode option to mkfs_opts command.

This is needed because older versions of grub(for example in centos)
do not understand filesystems created with newer version of e2fsprogs.
By default in e2fsprogs 1.4+ creates partitions with 256 bit inode
size, and grub expect 128 bit size.

12 years agoVersion 1.11.13. 1.11.13
Richard W.M. Jones [Thu, 30 Jun 2011 15:06:07 +0000 (16:06 +0100)]
Version 1.11.13.

12 years agoAdd caution subdirectory containing safety and liveness tests.
Richard W.M. Jones [Thu, 30 Jun 2011 11:57:31 +0000 (12:57 +0100)]
Add caution subdirectory containing safety and liveness tests.

Not that I'm paranoid about qemu breaking snapshots of anything like
that ...

12 years agoUpdate release notes.
Richard W.M. Jones [Thu, 30 Jun 2011 11:06:09 +0000 (12:06 +0100)]
Update release notes.

12 years agoinspector: Update documentation to cover <icon> element.
Richard W.M. Jones [Thu, 30 Jun 2011 10:36:38 +0000 (11:36 +0100)]
inspector: Update documentation to cover <icon> element.

This updates commit 7f16c346bbeba2f2fe3c31ccb85158178a284d84.

12 years agopython: Add explicit g.close() method (RHBZ#717786).
Richard W.M. Jones [Thu, 30 Jun 2011 09:14:33 +0000 (10:14 +0100)]
python: Add explicit g.close() method (RHBZ#717786).

12 years agodocs: Update API support.
Richard W.M. Jones [Wed, 29 Jun 2011 12:41:50 +0000 (13:41 +0100)]
docs: Update API support.

12 years agoVersion 1.11.12. 1.11.12
Richard W.M. Jones [Tue, 28 Jun 2011 18:52:11 +0000 (19:52 +0100)]
Version 1.11.12.