Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use litebox_platform_multiplex::Platform;

pub struct TestLauncher {
platform: &'static Platform,
shim_builder: litebox_shim_linux::LinuxShimBuilder,
shim_builder: litebox_shim_linux::LinuxShimBuilder<litebox_shim_linux::DefaultFS>,
fs: litebox_shim_linux::DefaultFS,
}

Expand Down
2 changes: 1 addition & 1 deletion litebox_runner_linux_userland/tests/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use litebox_platform_multiplex::Platform;

struct TestLauncher {
platform: &'static Platform,
shim_builder: litebox_shim_linux::LinuxShimBuilder,
shim_builder: litebox_shim_linux::LinuxShimBuilder<litebox_shim_linux::DefaultFS>,
fs: litebox_shim_linux::DefaultFS,
}

Expand Down
2 changes: 1 addition & 1 deletion litebox_runner_snp/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use litebox_platform_linux_kernel::{HostInterface, host::snp::ghcb::ghcb_prints}

// FUTURE: replace this with some kind of OnceLock, or just eliminate this
// entirely (ideal).
static mut SHIM: Option<litebox_shim_linux::LinuxShim> = None;
static mut SHIM: Option<litebox_shim_linux::LinuxShim<litebox_shim_linux::DefaultFS>> = None;

#[unsafe(no_mangle)]
pub extern "C" fn floating_point_handler(_pt_regs: &mut litebox_common_linux::PtRegs) {
Expand Down
Loading