Files
kata-containers/src/runtime/virtcontainers/hypervisor_arm64.go
Jianyong Wu 7eac2ec786 protection: add confidential compute frame for arm
Even CCA, which is the confidential compute archtecture, has not been
ready, add a empty implementation to avoid static check error.

Fixes: #2789
Signed-off-by: Jianyong Wu <jianyong.wu@arm.com>
Suggested-by: Fabiano Fidêncio <fidencio@redhat.com>
2021-10-06 15:53:36 +02:00

11 lines
244 B
Go

// Copyright (c) 2021 Arm Ltd.
//
// SPDX-License-Identifier: Apache-2.0
package virtcontainers
//Returns pefProtection if the firmware directory exists
func availableGuestProtection() (guestProtection, error) {
return noneProtection, nil
}