Skip to content

Commit

Permalink
Merge #380
Browse files Browse the repository at this point in the history
380: Upgrade to hermit-entry 0.8.0 r=mkroening a=mkroening



Co-authored-by: Martin Kröning <[email protected]>
  • Loading branch information
bors[bot] and mkroening authored Aug 2, 2022
2 parents 3bf03a2 + f6be559 commit b0ff0de
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ either = "1.6"
env_logger = "0.9"
gdbstub = "0.6"
gdbstub_arch = "0.2"
hermit-entry = { version = "0.7", features = ["loader"] }
hermit-entry = { version = "0.8", features = ["loader"] }
lazy_static = "1.4"
libc = "0.2"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion src/linux/uhyve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::shared_queue::*;
use crate::vm::HypervisorResult;
use crate::vm::Vm;
use crate::x86_64::create_gdt_entry;
use hermit_entry::RawBootInfo;
use hermit_entry::boot_info::RawBootInfo;
use kvm_bindings::*;
use kvm_ioctls::VmFd;
use log::debug;
Expand Down
2 changes: 1 addition & 1 deletion src/macos/aarch64/uhyve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::macos::aarch64::HYPERVISOR_PAGE_SIZE;
use crate::params::Params;
use crate::vm::HypervisorResult;
use crate::vm::Vm;
use hermit_entry::RawBootInfo;
use hermit_entry::boot_info::RawBootInfo;
use libc;
use libc::c_void;
use log::debug;
Expand Down
2 changes: 1 addition & 1 deletion src/macos/x86_64/uhyve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::params::Params;
use crate::vm::HypervisorResult;
use crate::vm::Vm;
use crate::x86_64::create_gdt_entry;
use hermit_entry::RawBootInfo;
use hermit_entry::boot_info::RawBootInfo;
use libc;
use libc::c_void;
use log::debug;
Expand Down
4 changes: 2 additions & 2 deletions src/vm.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use hermit_entry::{
BootInfo, HardwareInfo, KernelObject, LoadedKernel, ParseKernelError, PlatformInfo,
RawBootInfo, SerialPortBase,
boot_info::{BootInfo, HardwareInfo, PlatformInfo, RawBootInfo, SerialPortBase},
elf::{KernelObject, LoadedKernel, ParseKernelError},
};
use log::{error, warn};
use std::ffi::OsString;
Expand Down

0 comments on commit b0ff0de

Please sign in to comment.