
Update golang.org/x/sys to 95c6576299259db960f6c5b9b69ea52422860fce in order to get the unix.Utsname with byte array instead of int8/uint8 members. This allows to use simple byte slice to string conversions instead of using charsToString or its open-coded version. Also see golang/go#20753 for details. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
35 lines
918 B
Go
35 lines
918 B
Go
// +build linux freebsd solaris openbsd
|
|
|
|
// Package kernel provides helper function to get, parse and compare kernel
|
|
// versions for different platforms.
|
|
package kernel
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// GetKernelVersion gets the current kernel version.
|
|
func GetKernelVersion() (*VersionInfo, error) {
|
|
uts, err := uname()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Remove the \x00 from the release for Atoi to parse correctly
|
|
return ParseRelease(string(uts.Release[:bytes.IndexByte(uts.Release[:], 0)]))
|
|
}
|
|
|
|
// CheckKernelVersion checks if current kernel is newer than (or equal to)
|
|
// the given version.
|
|
func CheckKernelVersion(k, major, minor int) bool {
|
|
if v, err := GetKernelVersion(); err != nil {
|
|
logrus.Warnf("error getting kernel version: %s", err)
|
|
} else {
|
|
if CompareKernelVersion(*v, VersionInfo{Kernel: k, Major: major, Minor: minor}) < 0 {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|