kernel

package
v26.0.1+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 10, 2024 License: Apache-2.0 Imports: 5 Imported by: 892

Documentation

Overview

Package kernel provides helper function to get, parse and compare kernel versions for different platforms.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CheckKernelVersion added in v1.13.0

func CheckKernelVersion(k, major, minor int) bool

CheckKernelVersion checks if current kernel is newer than (or equal to) the given version.

func CompareKernelVersion

func CompareKernelVersion(a, b VersionInfo) int

CompareKernelVersion compares two kernel.VersionInfo structs. Returns -1 if a < b, 0 if a == b, 1 it a > b

Types

type VersionInfo added in v1.9.0

type VersionInfo struct {
	Kernel int    // Version of the kernel (e.g. 4.1.2-generic -> 4)
	Major  int    // Major part of the kernel version (e.g. 4.1.2-generic -> 1)
	Minor  int    // Minor part of the kernel version (e.g. 4.1.2-generic -> 2)
	Flavor string // Flavor of the kernel version (e.g. 4.1.2-generic -> generic)
}

VersionInfo holds information about the kernel.

func GetKernelVersion

func GetKernelVersion() (*VersionInfo, error)

GetKernelVersion gets the current kernel version.

func ParseRelease

func ParseRelease(release string) (*VersionInfo, error)

ParseRelease parses a string and creates a VersionInfo based on it.

func (*VersionInfo) String added in v1.9.0

func (k *VersionInfo) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL