All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Denis V. Lunev" <den-lists@parallels.com>
To: marcandre.lureau@redhat.com, qemu-devel@nongnu.org
Cc: mdroth@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH v3 12/12] qga: start a man page
Date: Wed, 26 Aug 2015 22:08:46 +0300	[thread overview]
Message-ID: <55DE0EBE.3000402@parallels.com> (raw)
In-Reply-To: <1440583525-21632-13-git-send-email-marcandre.lureau@redhat.com>

On 08/26/2015 01:05 PM, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> Add a simple man page for the qemu agent.
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
> ---
>   Makefile      |  14 +++++-
>   qemu-doc.texi |   6 +++
>   qemu-ga.texi  | 136 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>   3 files changed, 154 insertions(+), 2 deletions(-)
>   create mode 100644 qemu-ga.texi
>
> diff --git a/Makefile b/Makefile
> index 340d9c8..67d44b8 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -88,7 +88,8 @@ LIBS+=-lz $(LIBS_TOOLS)
>   HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF)
>   
>   ifdef BUILD_DOCS
> -DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 qmp-commands.txt
> +DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 qemu-ga.8
> +DOCS+=qmp-commands.txt
>   ifdef CONFIG_LINUX
>   DOCS+=kvm_stat.1
>   endif
> @@ -400,6 +401,9 @@ ifneq ($(TOOLS),)
>   	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
>   	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
>   endif
> +ifneq (,$(findstring qemu-ga,$(TOOLS)))
> +	$(INSTALL_DATA) qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
> +endif
>   endif
>   ifdef CONFIG_VIRTFS
>   	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
> @@ -538,6 +542,12 @@ qemu-nbd.8: qemu-nbd.texi
>   	  $(POD2MAN) --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
>   	  "  GEN   $@")
>   
> +qemu-ga.8: qemu-ga.texi
> +	$(call quiet-command, \
> +	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-ga.pod && \
> +	  $(POD2MAN) --section=8 --center=" " --release=" " qemu-ga.pod > $@, \
> +	  "  GEN   $@")
> +
>   kvm_stat.1: scripts/kvm/kvm_stat.texi
>   	$(call quiet-command, \
>   	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< kvm_stat.pod && \
> @@ -551,7 +561,7 @@ pdf: qemu-doc.pdf qemu-tech.pdf
>   
>   qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
>   	qemu-img.texi qemu-nbd.texi qemu-options.texi \
> -	qemu-monitor.texi qemu-img-cmds.texi
> +	qemu-monitor.texi qemu-img-cmds.texi qemu-ga.texi
>   
>   ifdef CONFIG_WIN32
>   
> diff --git a/qemu-doc.texi b/qemu-doc.texi
> index 94af8c0..84d17d1 100644
> --- a/qemu-doc.texi
> +++ b/qemu-doc.texi
> @@ -412,6 +412,7 @@ snapshots.
>   * vm_snapshots::              VM snapshots
>   * qemu_img_invocation::       qemu-img Invocation
>   * qemu_nbd_invocation::       qemu-nbd Invocation
> +* qemu_ga_invocation::        qemu-ga Invocation
>   * disk_images_formats::       Disk image file formats
>   * host_drives::               Using host drives
>   * disk_images_fat_images::    Virtual FAT disk images
> @@ -505,6 +506,11 @@ state is not saved or restored properly (in particular USB).
>   
>   @include qemu-nbd.texi
>   
> +@node qemu_ga_invocation
> +@subsection @code{qemu-ga} Invocation
> +
> +@include qemu-ga.texi
> +
>   @node disk_images_formats
>   @subsection Disk image file formats
>   
> diff --git a/qemu-ga.texi b/qemu-ga.texi
> new file mode 100644
> index 0000000..7d4a628
> --- /dev/null
> +++ b/qemu-ga.texi
> @@ -0,0 +1,136 @@
> +@example
> +@c man begin SYNOPSIS
> +usage: qemu-ga [-m <method> -p <path>] [OPTION]...
> +@c man end
> +@end example
> +
> +@c man begin DESCRIPTION
> +
> +The QEMU Guest Agent is a deamon that allows the host to perform
> +various operations in the guest, such as:
s/deamon/daemon/


Guys, I am not a native speaker and it would be fine if
somebody will pay attention for the text.

      reply	other threads:[~2015-08-26 19:09 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-26 10:05 [Qemu-devel] [PATCH v3 00/12] qemu-ga: add a configuration file marcandre.lureau
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 01/12] qga: misc spelling marcandre.lureau
2015-08-26 17:40   ` Denis V. Lunev
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 02/12] qga: use exit() when parsing options marcandre.lureau
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 03/12] qga: move string split in separate function marcandre.lureau
2015-08-26 17:55   ` Denis V. Lunev
2015-08-26 18:07     ` Marc-André Lureau
2015-08-26 18:23       ` Denis V. Lunev
2015-08-26 18:30         ` Marc-André Lureau
2015-08-26 18:33           ` Marc-André Lureau
2015-08-26 18:44           ` Denis V. Lunev
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 04/12] qga: rename 'path' to 'channel_path' marcandre.lureau
2015-08-26 17:56   ` Denis V. Lunev
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 05/12] qga: copy argument strings marcandre.lureau
2015-08-26 18:09   ` Denis V. Lunev
2015-08-26 18:17     ` Marc-André Lureau
2015-08-26 18:27       ` Denis V. Lunev
2015-08-26 18:41         ` Marc-André Lureau
2015-08-26 18:49           ` Denis V. Lunev
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 06/12] qga: move option parsing to separate function marcandre.lureau
2015-08-26 18:11   ` Denis V. Lunev
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 07/12] qga: fill default options in main() marcandre.lureau
2015-08-26 18:14   ` Denis V. Lunev
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 08/12] qga: move agent run in a separate function marcandre.lureau
2015-08-26 18:32   ` Denis V. Lunev
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 09/12] qga: free a bit more marcandre.lureau
2015-08-26 18:35   ` Denis V. Lunev
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 10/12] qga: add an optionnal qemu-ga.conf system configuration marcandre.lureau
2015-08-26 12:55   ` Eric Blake
2015-08-26 15:11     ` Marc-André Lureau
2015-08-26 15:17       ` Michael Roth
2015-08-26 18:41   ` Denis V. Lunev
2015-08-26 18:45     ` Marc-André Lureau
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 11/12] qga: add --dump-conf option marcandre.lureau
2015-08-26 19:00   ` Denis V. Lunev
2015-08-26 19:03     ` Marc-André Lureau
2015-08-26 10:05 ` [Qemu-devel] [PATCH v3 12/12] qga: start a man page marcandre.lureau
2015-08-26 19:08   ` Denis V. Lunev [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55DE0EBE.3000402@parallels.com \
    --to=den-lists@parallels.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.