mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-15 06:34:03 +00:00
Keep all the OS agnostic bits in the hypervisor.go and hypervisor_ARCH.go files. Fixes #3614 Signed-off-by: Eric Ernst <eric_ernst@apple.com> Signed-off-by: Samuel Ortiz <s.ortiz@apple.com>
11 lines
234 B
Go
11 lines
234 B
Go
// Copyright (c) 2021 Arm Ltd.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package virtcontainers
|
|
|
|
// Guest protection is not supported on ARM64.
|
|
func availableGuestProtection() (guestProtection, error) {
|
|
return noneProtection, nil
|
|
}
|