fix support for pv

This commit is contained in:
Alex Zenla
2024-06-06 07:38:25 +00:00
parent c3515ebe48
commit 4e9850293f
3 changed files with 10 additions and 1 deletions

View File

@ -453,6 +453,10 @@ impl BootSetupPlatform for X86PvPlatform {
false
}
fn hvm(&self) -> bool {
false
}
async fn initialize_early(&mut self, _: &mut BootDomain) -> Result<()> {
Ok(())
}