commit | 935ac343a1e6c20d35d976a1586ba268e75c8839 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Nov 20 00:13:33 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Nov 20 00:13:33 2024 +0000 |
tree | c9c567f9e7b5289a8670a378a81ddc1c40205fad | |
parent | 966c3d5c2d5c42228fda1f03f8b610a6606a1c20 [diff] | |
parent | 238057979a5dfa408638ae36bd7ab9d28be6842c [diff] |
Snap for 12680993 from 238057979a5dfa408638ae36bd7ab9d28be6842c to 25Q1-release Change-Id: I9dab87d7a81fcc8bfce4855e3f9b93d325383dae
uefi
Rusty wrapper for the Unified Extensible Firmware Interface.
This crate makes it easy to develop Rust software that leverages safe, convenient, and performant abstractions for UEFI functionality.
uefi
supports writing code for both pre- and post-exit boot services epochs, but its true strength shines when you create UEFI images that heavily interact with UEFI boot services. Still, you have the flexibility to just integrate selected types and abstractions into your project, for example to parse the UEFI memory map.
Note that for producing UEFI images, you also need to use a corresponding uefi
compiler target of Rust, such as x86_64-unknown-uefi
.
Please refer to docs.rs for comprehensive documentation of the latest stable release. The latest not necessarily yet published documentation can be found in src/lib.rs
, which can also be locally viewed by running $ cargo xtask doc --open
.
For an introduction to the uefi-rs
project and this repository, please refer to our main README.