Skip to content

Commit 59bc8ab

Browse files
Restore some memory exports to uefi::table::boot
The next release already has a fair number of breaking changes going into it, so restore a few public exports to uefi::table::boot to reduce the number of changes users have to make on upgrade. Specifically, `MemoryAttribute`, `MemoryDescriptor`, and `MemoryType`. This module will be deprecated eventually (replaced by `uefi::boot`), so these re-exports will eventually go away in some future release.
1 parent c7668ee commit 59bc8ab

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

uefi/src/table/boot.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
//! UEFI services available during boot.
22
3-
pub use uefi_raw::table::boot::{EventType, InterfaceType, Tpl};
3+
pub use uefi_raw::table::boot::{
4+
EventType, InterfaceType, MemoryAttribute, MemoryDescriptor, MemoryType, Tpl,
5+
};
46

57
use super::Revision;
68
use crate::data_types::PhysicalAddress;

0 commit comments

Comments
 (0)