diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-10-22 23:20:31 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-22 23:20:31 +0000 |
commit | efef85c6e7fda34c567b05377274fe2f20ee65a0 (patch) | |
tree | e1b0c3a13e82c24a25900b804c4132c155dce744 /pkg/sentry/syscalls/linux/linux64.go | |
parent | 97c3c4cc46299089539ca463ca7992fe1bad46e0 (diff) | |
parent | ebe8001724a6965cc9723604b38f42563d284a6a (diff) |
Merge release-20190806.1-304-gebe8001 (automated)
Diffstat (limited to 'pkg/sentry/syscalls/linux/linux64.go')
-rw-r--r-- | pkg/sentry/syscalls/linux/linux64.go | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/pkg/sentry/syscalls/linux/linux64.go b/pkg/sentry/syscalls/linux/linux64.go index b317cb99d..68589a377 100644 --- a/pkg/sentry/syscalls/linux/linux64.go +++ b/pkg/sentry/syscalls/linux/linux64.go @@ -16,7 +16,12 @@ package linux const ( - _LINUX_SYSNAME = "Linux" - _LINUX_RELEASE = "4.4.0" - _LINUX_VERSION = "#1 SMP Sun Jan 10 15:06:54 PST 2016" + // LinuxSysname is the OS name advertised by gVisor. + LinuxSysname = "Linux" + + // LinuxRelease is the Linux release version number advertised by gVisor. + LinuxRelease = "4.4.0" + + // LinuxVersion is the version info advertised by gVisor. + LinuxVersion = "#1 SMP Sun Jan 10 15:06:54 PST 2016" ) |