feat: Add HVM boot support for x86_64 (#953)

Signed-off-by: longjin <longjin@DragonOS.org>
This commit is contained in:
LoGin
2024-10-09 21:36:18 +08:00
committed by GitHub
parent a8753f8fff
commit 59a6bcf6ae
24 changed files with 696 additions and 826 deletions

View File

@ -284,6 +284,11 @@ impl TtyDriver {
if err == SystemError::ENOSYS {
return self.standard_install(tty);
} else {
log::error!(
"driver_install_tty: Failed to install. name: {}, err: {:?}",
tty.core().name(),
err
);
return Err(err);
}
}