<feed xmlns='http://www.w3.org/2005/Atom'>
<title>libguestfs.git/sparsify, branch oldlinux</title>
<subtitle>[MIRROR] library for accessing and modifying guest disk images</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/'/>
<entry>
<title>EPEL 5: sparsify: Fix command line options for old qemu-img.</title>
<updated>2012-06-27T15:36:16+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2012-06-22T09:24:48+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=e3fcc04527d7afea0eae92c8e37fd0a6422c0186'/>
<id>e3fcc04527d7afea0eae92c8e37fd0a6422c0186</id>
<content type='text'>
This didn't have -o backing_file etc.  Use old -b and -F options instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This didn't have -o backing_file etc.  Use old -b and -F options instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>EPEL 5: Old ocamlopt didn't support debugging (-g option).</title>
<updated>2012-06-27T15:36:16+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2012-06-17T22:00:16+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=936b80fdb0544ea950e06e84e72cae5e7a29fdde'/>
<id>936b80fdb0544ea950e06e84e72cae5e7a29fdde</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Add ./run --test option.</title>
<updated>2012-06-26T22:34:30+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2012-06-26T21:47:35+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=05d4e07918bfa9907a1fa66391e8e2e2370c64d4'/>
<id>05d4e07918bfa9907a1fa66391e8e2e2370c64d4</id>
<content type='text'>
This option, when added via
  TESTS_ENVIRONMENT = [...] $(top_builddir)/run --test
allows us to run the tests and only print the full output (including
debugging etc) when the test fails.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This option, when added via
  TESTS_ENVIRONMENT = [...] $(top_builddir)/run --test
allows us to run the tests and only print the full output (including
debugging etc) when the test fails.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: Define builddir and abs_srcdir when they are missing.</title>
<updated>2012-06-18T14:32:47+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2012-06-17T21:59:46+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=50aa9533e4a505e1c64dbedddb30491bfbb755d6'/>
<id>50aa9533e4a505e1c64dbedddb30491bfbb755d6</id>
<content type='text'>
RHEL 5-era autoconf did not define these, so define them manually
when they are missing.

Define builddir as '.'  The scripts require this.  It won't work
in the srcdir != builddir case, but we don't care about that for
RHEL 5.

This commit also moves the builddir / abs_srcdir variable setting
above the include of subdir-rules.mk, in case that include uses
these variables.

Useful script:

  for f in $(find -name Makefile.am | xargs fgrep '$(abs_srcdir)' -l) ; do
    if ! grep -q '^abs_srcdir' $f; then
      echo missing in $f
    fi
  done
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RHEL 5-era autoconf did not define these, so define them manually
when they are missing.

Define builddir as '.'  The scripts require this.  It won't work
in the srcdir != builddir case, but we don't care about that for
RHEL 5.

This commit also moves the builddir / abs_srcdir variable setting
above the include of subdir-rules.mk, in case that include uses
these variables.

Useful script:

  for f in $(find -name Makefile.am | xargs fgrep '$(abs_srcdir)' -l) ; do
    if ! grep -q '^abs_srcdir' $f; then
      echo missing in $f
    fi
  done
</pre>
</div>
</content>
</entry>
<entry>
<title>ocaml: Use OCAMLOPTFLAGS when compiling .cmx (ie. native code) files.</title>
<updated>2012-06-18T14:32:38+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2012-06-17T22:13:22+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=dd216fedbdacfd641c2da4073ae26d3ccb6098a6'/>
<id>dd216fedbdacfd641c2da4073ae26d3ccb6098a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>New API: guestfs_canonical_device_name.</title>
<updated>2012-06-13T22:07:26+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2012-06-13T19:36:40+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=46ed232dc2ff2f7dff91cd93a13d7ce6f2cec504'/>
<id>46ed232dc2ff2f7dff91cd93a13d7ce6f2cec504</id>
<content type='text'>
This API makes device names canonical, eg. /dev/vda1 -&gt; /dev/sda1.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This API makes device names canonical, eg. /dev/vda1 -&gt; /dev/sda1.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add gettext support for OCaml tools (virt-resize, virt-sparsify, virt-sysprep).</title>
<updated>2012-05-01T08:39:35+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2012-04-30T10:33:19+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=027fefd517b8a93c54611a6cc4c51a54fea1b9fe'/>
<id>027fefd517b8a93c54611a6cc4c51a54fea1b9fe</id>
<content type='text'>
Note that this support is optional: To enable it, install the
ocaml-gettext library from
http://forge.ocamlcore.org/projects/ocaml-gettext .  If this library
is not installed, then configure detects this and inserts dummy
gettext functions that do nothing.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Note that this support is optional: To enable it, install the
ocaml-gettext library from
http://forge.ocamlcore.org/projects/ocaml-gettext .  If this library
is not installed, then configure detects this and inserts dummy
gettext functions that do nothing.
</pre>
</div>
</content>
</entry>
<entry>
<title>sparsify: Add a note about sparsify on tmpfs.</title>
<updated>2012-04-18T09:51:04+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2012-04-18T09:50:32+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=b0b5fdc69f6ee831f325760f95a164627b499f77'/>
<id>b0b5fdc69f6ee831f325760f95a164627b499f77</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>resize, sparsify: Add a simple-minded check to stop indisk = outdisk.</title>
<updated>2012-04-17T14:03:02+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2012-04-17T14:03:02+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=84d450210b3ea01de3fe26b2cf1db2b492d77aec'/>
<id>84d450210b3ea01de3fe26b2cf1db2b492d77aec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>sparsify: Fix comma/colon and quoting in qemu-img command.</title>
<updated>2012-04-17T13:58:40+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2012-04-17T13:54:48+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=8d3d5a52d2746af91f770608cce5f47462f33aba'/>
<id>8d3d5a52d2746af91f770608cce5f47462f33aba</id>
<content type='text'>
Colon characters are not allowed in qemu/qemu-img filenames.  There's
no way to quote them.

Comma characters CAN be used.  However they must be quoted (by
doubling) when used in the '-o' option.

Fix general quoting problems in the external command.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Colon characters are not allowed in qemu/qemu-img filenames.  There's
no way to quote them.

Comma characters CAN be used.  However they must be quoted (by
doubling) when used in the '-o' option.

Fix general quoting problems in the external command.
</pre>
</div>
</content>
</entry>
</feed>
