Add sublevel to kernel version

Standard Linux kernel versions are VERSION.PATCHLEVEL.SUBLEVEL. e.g., 4.4.0,
even when the sublevel is 0. Match this standard.

PiperOrigin-RevId: 275125715
This commit is contained in:
Michael Pratt 2019-10-16 15:21:24 -07:00 committed by gVisor bot
parent 9fb562234e
commit 8fe48dcb1e
1 changed files with 1 additions and 1 deletions

View File

@ -17,6 +17,6 @@ package linux
const ( const (
_LINUX_SYSNAME = "Linux" _LINUX_SYSNAME = "Linux"
_LINUX_RELEASE = "4.4" _LINUX_RELEASE = "4.4.0"
_LINUX_VERSION = "#1 SMP Sun Jan 10 15:06:54 PST 2016" _LINUX_VERSION = "#1 SMP Sun Jan 10 15:06:54 PST 2016"
) )