Skip to content
Merged
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
4 changes: 3 additions & 1 deletion uefi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ We added documentation to `lib.rs` and the [uefi-rs book] about how
how to integrate the `uefi` crate into them.

## Added
- Added `Handle::new`
- Added `Handle::new`.
- Added the `uefi::boot`, `uefi::runtime`, and `uefi::system` modules to the
prelude.

## Changed
- The `BootServices`, `RuntimeServices`, and `SystemTable` structs have been
Expand Down
6 changes: 4 additions & 2 deletions uefi/src/prelude.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
//! This module is used to simplify importing the most common UEFI types.
//!
//! This includes the system table types, `Status` codes, etc.
//! This includes the system table modules, `Status` codes, etc.

pub use crate::{cstr16, cstr8, entry, Handle, ResultExt, Status, StatusExt};
pub use crate::{
boot, cstr16, cstr8, entry, runtime, system, Handle, ResultExt, Status, StatusExt,
};

// Import the basic table types.
#[allow(deprecated)]
Expand Down