summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/arch
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2019-07-22 16:12:45 -0700
committergVisor bot <gvisor-bot@google.com>2019-07-22 16:12:46 -0700
commitd706922d788a1bbc9f1c917af1a08ca86488aab0 (patch)
tree0533b6c9a77915f227a78ce209867ae3092954b1 /pkg/sentry/arch
parentec906e46c0f99ab4d134c1d7bd84b48ea0a78488 (diff)
parentffe45f38e6f379c1c6986348f361914202603978 (diff)
Merge pull request #571 from lubinszARM:pr_loader
PiperOrigin-RevId: 259427074
Diffstat (limited to 'pkg/sentry/arch')
-rw-r--r--pkg/sentry/arch/arch.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/sentry/arch/arch.go b/pkg/sentry/arch/arch.go
index ace7d5b18..498ca4669 100644
--- a/pkg/sentry/arch/arch.go
+++ b/pkg/sentry/arch/arch.go
@@ -33,6 +33,8 @@ type Arch int
const (
// AMD64 is the x86-64 architecture.
AMD64 Arch = iota
+ // ARM64 is the aarch64 architecture.
+ ARM64
)
// String implements fmt.Stringer.
@@ -40,6 +42,8 @@ func (a Arch) String() string {
switch a {
case AMD64:
return "amd64"
+ case ARM64:
+ return "arm64"
default:
return fmt.Sprintf("Arch(%d)", a)
}