fix minor issues when setting up page tables

This commit is contained in:
Alex Zenla
2024-01-15 15:00:48 -08:00
parent c9f39699dc
commit 900eba0bd9
3 changed files with 22 additions and 21 deletions

View File

@ -38,7 +38,7 @@ fn boot(
let image_loader = ElfImageLoader::load_file_kernel(kernel_image_path)?;
let memctl = MemoryControl::new(call);
let mut boot = BootSetup::new(call, domctl, &memctl, domid);
let mut state = boot.initialize(&image_loader, 128 * 1024)?;
let mut state = boot.initialize(&image_loader, 512)?;
boot.boot(&mut state, "debug")?;
Ok(())
}