qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 1/1] qemu-img: Add --pkgversion common option


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH 1/1] qemu-img: Add --pkgversion common option
Date: Thu, 8 Jan 2015 14:40:08 +0000

On 8 January 2015 at 14:30, Don Slutz <address@hidden> wrote:
> This will output the QEMU_PKGVERSION which is set by configure's
> --with-pkgversion=

> +    /* Report pkgversion */
> +    if (!strcmp(cmdname, "--pkgversion")) {
> +        argc--; argv++; /* Drop special arg. */
> +        printf("qemu-img version " QEMU_VERSION
> +               " pkgversion " QEMU_PKGVERSION "\n");
> +        if (argc < 2) {
> +            return 0;
> +        }
> +        cmdname = argv[1]; /* Update */
> +    }

Wouldn't it be better to just report the QEMU_PKGVERSION
as part of the version info we already report in --version?
This would be consistent with both linux-user and the softmmu
emulators, which do:

 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ",
Copyright (c) 2003-2008 Fabrice Bellard\n");

-- PMM



reply via email to

[Prev in Thread] Current Thread [Next in Thread]