kata-ctl: Add stub of missing method for ppc

`host_is_vmcontainer_capable` is required, but wasn't
implemented for powerpc64, so copy the aarch64 approach
@Amulyam24

Signed-off-by: stevenhorsman <steven@uk.ibm.com>
This commit is contained in:
stevenhorsman 2025-01-31 14:20:54 +00:00
parent bd3c93713f
commit 1ac0e67245

View File

@ -31,4 +31,9 @@ mod arch_specific {
// to get cpu details specific to powerpc architecture similar // to get cpu details specific to powerpc architecture similar
// to the goloang implementation of function getCPUDetails() // to the goloang implementation of function getCPUDetails()
} }
pub fn host_is_vmcontainer_capable() -> Result<bool> {
// TODO: Not implemented
Ok(true)
}
} }