From 8fe48dcb1ebbdd4d705000ad20077a7dbeec19ab Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Wed, 16 Oct 2019 15:21:24 -0700 Subject: [PATCH] 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 --- pkg/sentry/syscalls/linux/linux64.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/sentry/syscalls/linux/linux64.go b/pkg/sentry/syscalls/linux/linux64.go index b64c49ff5..b317cb99d 100644 --- a/pkg/sentry/syscalls/linux/linux64.go +++ b/pkg/sentry/syscalls/linux/linux64.go @@ -17,6 +17,6 @@ package linux const ( _LINUX_SYSNAME = "Linux" - _LINUX_RELEASE = "4.4" + _LINUX_RELEASE = "4.4.0" _LINUX_VERSION = "#1 SMP Sun Jan 10 15:06:54 PST 2016" )