mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-25 15:02:45 +00:00
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:
parent
bd3c93713f
commit
1ac0e67245
@ -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)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user