summaryrefslogtreecommitdiffhomepage
path: root/runsc/boot/loader_arm64.go
diff options
context:
space:
mode:
authorHaibo Xu <haibo.xu@arm.com>2019-11-11 08:20:18 +0000
committerHaibo Xu <haibo.xu@arm.com>2019-11-13 06:39:11 +0000
commit05871a1cdc73e98df58f56841be23a4eac27225c (patch)
tree6b17ac447e4d621ace18f4eddbcae8a3f415de46 /runsc/boot/loader_arm64.go
parent2c6c9af904c99371fe4381517375cd114917db59 (diff)
Enable runsc/boot support on arm64.
This patch also include a minor change to replace syscall.Dup2 with syscall.Dup3 which was missed in a previous commit(ref a25a976). Signed-off-by: Haibo Xu <haibo.xu@arm.com> Change-Id: I00beb9cc492e44c762ebaa3750201c63c1f7c2f3
Diffstat (limited to 'runsc/boot/loader_arm64.go')
-rw-r--r--runsc/boot/loader_arm64.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/runsc/boot/loader_arm64.go b/runsc/boot/loader_arm64.go
new file mode 100644
index 000000000..8712e764a
--- /dev/null
+++ b/runsc/boot/loader_arm64.go
@@ -0,0 +1,28 @@
+// 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 loads the kernel and runs a container.
+package boot
+
+import (
+ "gvisor.dev/gvisor/pkg/sentry/kernel"
+ "gvisor.dev/gvisor/pkg/sentry/syscalls/linux"
+)
+
+func init() {
+ // Register the global syscall table.
+ kernel.RegisterSyscallTable(linux.ARM64)
+}