summaryrefslogtreecommitdiffhomepage
path: root/pkg
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2019-10-16 15:21:24 -0700
committergVisor bot <gvisor-bot@google.com>2019-10-16 15:22:42 -0700
commit8fe48dcb1ebbdd4d705000ad20077a7dbeec19ab (patch)
treedfd893db55e705d38a1310143f1a019a5b602c2b /pkg
parent9fb562234e7858dbc60e8771f851629464edf205 (diff)
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
Diffstat (limited to 'pkg')
-rw-r--r--pkg/sentry/syscalls/linux/linux64.go2
1 files changed, 1 insertions, 1 deletions
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"
)