Third-Party Import of: https://crates.io/crates/uefi

Request Document: go/android3p
For CL Reviewers: go/android3p#reviewing-a-cl
For Build Team: go/ab-third-party-imports

Generated through these steps
(in ~src/android/aosp-main-future-without-vendor repo):
1. python3 development/scripts/get_rust_pkg.py -add3prf -v -o /tmp
   uefi-0.33.0
2. cp -r /tmp/uefi-0.33.0/* external/rust/crates/uefi

Test: -
Bug: 375627466

Original import of the code can be found at: https://googleplex-android.googlesource.com/platform/external/rust/crates/uefi/+/refs/heads/third-party-review.
Security Questionnaire: http://b/375627466#comment1

Change-Id: I1af8cee7f32acf4a35bc57b4a5b18de15921c9a1
98 files changed
tree: 751213cbbad534896e0f757f1914b46c5d24d891
  1. src/
  2. tests/
  3. Cargo.toml
  4. Cargo.toml.orig
  5. CHANGELOG.md
  6. LICENSE
  7. METADATA
  8. MODULE_LICENSE_MPL
  9. OWNERS
  10. README.md
README.md

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.

Crates.io Docs.rs License Build status Stars

Value-add and Use Cases

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.

API and User Documentation

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.