From: Andrew Cooper Date: Wed, 10 Jul 2013 16:46:30 +0000 (+0100) Subject: xl: Add 'xen_version' to `xl info` X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6646 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=395f777ae0eed67b03596fe38d6d90f307ddd036;p=xen.git xl: Add 'xen_version' to `xl info` Getting the full Xen version in an easily scriptable way is awkward, especially if trying to piece together from xen_{major,minor,extra}. This reflects $(XEN_FULLVERSION) in the build system (but under a more sensible name, as $(XEN_VERSION) is just the major number). Signed-off-by: Andrew Cooper Acked-by: Matt Wilson Acked-by: Ian Jackson --- diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 8a478ba610..d365f904c0 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -4582,6 +4582,8 @@ static void output_xeninfo(void) printf("xen_major : %d\n", info->xen_version_major); printf("xen_minor : %d\n", info->xen_version_minor); printf("xen_extra : %s\n", info->xen_version_extra); + printf("xen_version : %d.%d%s\n", info->xen_version_major, + info->xen_version_minor, info->xen_version_extra); printf("xen_caps : %s\n", info->capabilities); printf("xen_scheduler : %s\n", libxl_scheduler_to_string(sched)); printf("xen_pagesize : %u\n", info->pagesize);