uefi-raw 0.14.0

Raw UEFI types and bindings for protocols, boot, and runtime services. This can serve as base for an UEFI firmware implementation or a high-level wrapper to access UEFI functionality from an UEFI image.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Standard UEFI tables.

mod header;
mod revision;

pub mod boot;
pub mod configuration;
pub mod runtime;
pub mod system;

pub use header::Header;
pub use revision::Revision;