mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-19 06:14:33 +01:00
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>
11 lines
244 B
Go
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
|
|
}
|