diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-05-06 21:16:40 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-05-06 21:16:40 +0000 |
commit | 1d4eb42012215a5f52b41cd10c008292afb13fd1 (patch) | |
tree | 517994168c45eaf2a5189d59a012ed741374ed69 /runsc/boot/loader_arm64.go | |
parent | dafa5cb5fa6f0844545a159c6bf6d1beb388dbe7 (diff) | |
parent | 279f1eb7abb28966ef633fa61418bffad4a716b0 (diff) |
Merge release-20200422.0-37-g279f1eb (automated)
Diffstat (limited to 'runsc/boot/loader_arm64.go')
-rwxr-xr-x | runsc/boot/loader_arm64.go | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/runsc/boot/loader_arm64.go b/runsc/boot/loader_arm64.go deleted file mode 100755 index 250785010..000000000 --- a/runsc/boot/loader_arm64.go +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright 2019 The gVisor Authors. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -// +build arm64 - -package boot - -import ( - "gvisor.dev/gvisor/pkg/sentry/syscalls/linux" -) - -func init() { - // Set the global syscall table. - syscallTable = linux.ARM64 -} |