Commit f426a36c authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman

tools: hv: Return the full kernel version

Currently, we are returning the same string for both OSBuildNumber
and OSVersion keys. Return the full uts string for the OSBuild
key since Windows does not impose any restrictions on this.
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Reported-by: default avatarClaudio Latini <claudio.latini@live.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e64de3b9
...@@ -88,6 +88,7 @@ static char *os_major = ""; ...@@ -88,6 +88,7 @@ static char *os_major = "";
static char *os_minor = ""; static char *os_minor = "";
static char *processor_arch; static char *processor_arch;
static char *os_build; static char *os_build;
static char *os_version;
static char *lic_version = "Unknown version"; static char *lic_version = "Unknown version";
static struct utsname uts_buf; static struct utsname uts_buf;
...@@ -453,7 +454,9 @@ void kvp_get_os_info(void) ...@@ -453,7 +454,9 @@ void kvp_get_os_info(void)
char *p, buf[512]; char *p, buf[512];
uname(&uts_buf); uname(&uts_buf);
os_build = uts_buf.release; os_version = uts_buf.release;
os_build = strdup(uts_buf.release);
os_name = uts_buf.sysname; os_name = uts_buf.sysname;
processor_arch = uts_buf.machine; processor_arch = uts_buf.machine;
...@@ -462,7 +465,7 @@ void kvp_get_os_info(void) ...@@ -462,7 +465,7 @@ void kvp_get_os_info(void)
* string to be of the form: x.y.z * string to be of the form: x.y.z
* Strip additional information we may have. * Strip additional information we may have.
*/ */
p = strchr(os_build, '-'); p = strchr(os_version, '-');
if (p) if (p)
*p = '\0'; *p = '\0';
...@@ -1649,7 +1652,7 @@ int main(void) ...@@ -1649,7 +1652,7 @@ int main(void)
strcpy(key_name, "OSMinorVersion"); strcpy(key_name, "OSMinorVersion");
break; break;
case OSVersion: case OSVersion:
strcpy(key_value, os_build); strcpy(key_value, os_version);
strcpy(key_name, "OSVersion"); strcpy(key_name, "OSVersion");
break; break;
case ProcessorArchitecture: case ProcessorArchitecture:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment