From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33740) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUMQL-0006OQ-A3 for qemu-devel@nongnu.org; Tue, 25 Aug 2015 18:10:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZUMQG-0002SM-AI for qemu-devel@nongnu.org; Tue, 25 Aug 2015 18:10:33 -0400 Received: from mail-qg0-x22d.google.com ([2607:f8b0:400d:c04::22d]:35078) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUMQG-0002SI-5K for qemu-devel@nongnu.org; Tue, 25 Aug 2015 18:10:28 -0400 Received: by qgj62 with SMTP id 62so115542581qgj.2 for ; Tue, 25 Aug 2015 15:10:27 -0700 (PDT) Sender: =?UTF-8?B?TWFyYy1BbmRyw6kgTHVyZWF1?= From: marcandre.lureau@redhat.com Date: Wed, 26 Aug 2015 00:10:12 +0200 Message-Id: <1440540624-7998-1-git-send-email-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v2 00/12] qemu-ga: add a configuration file List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , mdroth@linux.vnet.ibm.com From: Marc-André Lureau Hi, The following patches for the qemu agent add support for an optionnal configuration file, and a man page. Since v1: - spelling fixes - change device_path to channel_path - moving config to GAConfig struct - do check_is_frozen() during main - use g_key_file_to_data() for the dump This is related to this RFE: https://bugzilla.redhat.com/show_bug.cgi?id=1101556 Marc-André Lureau (12): qga: misc spelling qga: use exit() when parsing options qga: move string split in separate function qga: rename 'path' to 'channel_path' qga: copy argument strings qga: move option parsing to seperate function qga: fill default options in main() qga: move agent run in a seperate function qga: free a bit more qga: add an optionnal qemu-ga.conf system configuration qga: add --dump-conf option qga: start a man page Makefile | 14 +- qemu-doc.texi | 6 + qemu-ga.texi | 136 +++++++++++++++ qga/main.c | 464 ++++++++++++++++++++++++++++++++++++--------------- qga/qapi-schema.json | 2 +- 5 files changed, 481 insertions(+), 141 deletions(-) create mode 100644 qemu-ga.texi -- 2.4.3