diff options
author | Michael Pratt <mpratt@google.com> | 2019-10-16 15:21:24 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-16 15:22:42 -0700 |
commit | 8fe48dcb1ebbdd4d705000ad20077a7dbeec19ab (patch) | |
tree | dfd893db55e705d38a1310143f1a019a5b602c2b /pkg | |
parent | 9fb562234e7858dbc60e8771f851629464edf205 (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.go | 2 |
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" ) |