2017-09-17 18:45:03 +03:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-28 20:46:27 +03:00
|
|
|
#include <errno.h>
|
2017-09-17 17:18:17 +03:00
|
|
|
#include <sys/utsname.h>
|
|
|
|
#include <stdio.h>
|
2018-03-28 20:46:27 +03:00
|
|
|
#include <string.h>
|
2017-09-17 17:18:17 +03:00
|
|
|
|
2017-09-24 16:33:01 +03:00
|
|
|
#include "../util.h"
|
2017-09-17 17:18:17 +03:00
|
|
|
|
|
|
|
const char *
|
|
|
|
kernel_release(void)
|
|
|
|
{
|
|
|
|
struct utsname udata;
|
|
|
|
|
|
|
|
if (uname(&udata) < 0) {
|
2018-05-18 11:59:05 +03:00
|
|
|
warn("uname:");
|
2017-09-17 17:18:17 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bprintf("%s", udata.release);
|
|
|
|
}
|