qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v7 0/3] qemu-ga: add guest-get-osinfo command
@ 2017-07-03 11:40 Tomáš Golembiovský
  2017-07-03 11:40 ` [Qemu-devel] [PATCH v7 1/3] " Tomáš Golembiovský
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Tomáš Golembiovský @ 2017-07-03 11:40 UTC (permalink / raw)
  To: Marc-André Lureau, Eric Blake, Michael Roth,
	Vinzenz 'evilissimo' Feenstra
  Cc: qemu-devel, Tomáš Golembiovský

v7:
- fixed incorrect error check in ga_get_win_version()
- added missing test-qga-os-release
- fixed coding style issues

v6:
- fixed the documentation comment in schema
- disguising os-release as key-value file (thanks Marc-André)
- dropped dependency on gio
- improved error handling
- added test

v5:
- fixed build failure with older glib
- fixed coding style issues
- fixed one log string

This is a continuation of the work started by Vinzenz Feenstra in the
threads:

https://lists.nongnu.org/archive/html/qemu-devel/2017-03/msg04154.html
https://lists.nongnu.org/archive/html/qemu-devel/2017-03/msg04302.html
https://lists.nongnu.org/archive/html/qemu-devel/2017-03/msg06262.html

The idea is to report some basic information from uname and from
os-release file, if it is present. On MS Windows, where neither uname
nor os-release exist we fill the values based on the information we can
get from the OS.

The example output on Fedora is:

{
  "return": {
    "kernel-version": "#1 SMP Mon May 8 18:46:06 UTC 2017",
    "kernel-release": "4.10.15-200.fc25.x86_64",
    "machine-hardware": "x86_64",
    "id": "fedora",
    "name": "Fedora",
    "pretty-name": "Fedora 25 (Server Edition)",
    "version": "25 (Server Edition)",
    "variant": "Server Edition",
    "version-id": "25",
    "variant-id": "server"
  }
}

The example output on MS Windows 10 is:

{
  "return": {
    "kernel-version": "10.0",
    "kernel-release": "10240",
    "machine-hardware": "x86_64",
    "id": "mswindows",
    "name": "Microsoft Windows",
    "pretty-name": "Windows 10 Enterprise",
    "version": "Microsoft Windows 10",
    "version-id": "10",
    "variant": "client",
    "variant-id": "client"
  }
}

    Tomas Golembiovsky

Tomáš Golembiovský (3):
  qemu-ga: add guest-get-osinfo command
  test-qga: pass environemnt to qemu-ga
  test-qga: add test for guest-get-osinfo

 qga/commands-posix.c           | 143 +++++++++++++++++++++++++++++++
 qga/commands-win32.c           | 185 +++++++++++++++++++++++++++++++++++++++++
 qga/qapi-schema.json           |  65 +++++++++++++++
 tests/data/test-qga-os-release |   7 ++
 tests/test-qga.c               |  63 +++++++++++++-
 5 files changed, 459 insertions(+), 4 deletions(-)
 create mode 100644 tests/data/test-qga-os-release

-- 
2.13.1

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-07-03 14:47 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-03 11:40 [Qemu-devel] [PATCH v7 0/3] qemu-ga: add guest-get-osinfo command Tomáš Golembiovský
2017-07-03 11:40 ` [Qemu-devel] [PATCH v7 1/3] " Tomáš Golembiovský
2017-07-03 14:30   ` Marc-André Lureau
2017-07-03 14:47     ` Tomáš Golembiovský
2017-07-03 11:40 ` [Qemu-devel] [PATCH v7 2/3] test-qga: pass environemnt to qemu-ga Tomáš Golembiovský
2017-07-03 13:28   ` Marc-André Lureau
2017-07-03 11:40 ` [Qemu-devel] [PATCH v7 3/3] test-qga: add test for guest-get-osinfo Tomáš Golembiovský
2017-07-03 14:31   ` Marc-André Lureau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).