Skip to content

Commit

Permalink
Merge pull request #391 from hermit-os/uefi-table
Browse files Browse the repository at this point in the history
fix(uefi): migrate away from deprecated `uefi::table::boot` module
  • Loading branch information
mkroening authored Oct 25, 2024
2 parents ed69bf5 + 979a447 commit a25a197
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/os/uefi/console.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use core::fmt;
use core::ptr::NonNull;

use one_shot_mutex::OneShotMutex;
use uefi::table::boot::{EventType, Tpl};
use uefi::boot::{EventType, Tpl};
use uefi::Event;

use crate::arch;
Expand Down
2 changes: 1 addition & 1 deletion src/os/uefi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ use alloc::vec::Vec;

use log::info;
use qemu_exit::QEMUExit;
use uefi::boot::MemoryType;
use uefi::fs::{FileSystem, Path};
use uefi::prelude::*;
use uefi::table::boot::MemoryType;

pub use self::console::CONSOLE;

Expand Down

0 comments on commit a25a197

Please sign in to comment.