File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,18 @@ Rusty wrapper for the [Unified Extensible Firmware Interface][UEFI].
13
13
Develop Rust software that leverages ** safe** , ** convenient** , and
14
14
** performant** abstractions for [ UEFI] functionality.
15
15
16
+ ## About
17
+
18
+ With ` uefi ` , you have the flexibility to just integrate selected types and
19
+ abstractions into your project or to conveniently create EFI images, addressing
20
+ the entire spectrum of your development needs.
21
+
22
+ ` uefi ` works with stable Rust, but additional nightly-only features are
23
+ gated behind an ` unstable ` Cargo feature flag.
24
+
25
+ _ Note that for producing EFI images, you also need to use a corresponding ` uefi `
26
+ compiler target of Rust, such as ` x86_64-unknown-uefi ` ._
27
+
16
28
For an introduction to the ` uefi-rs ` project and documentation, please refer to
17
29
our main [ README] .
18
30
Original file line number Diff line number Diff line change 16
16
//! as general information about the project, such as license or MSRV
17
17
//! requirements.
18
18
//!
19
+ //! # About `uefi`
20
+ //!
21
+ //! With `uefi`, you have the flexibility to just integrate selected types and
22
+ //! abstractions into your project or to conveniently create EFI images,
23
+ //! addressing the entire spectrum of your development needs.
24
+ //!
25
+ //! `uefi` works with stable Rust, but additional nightly-only features are
26
+ //! gated behind an `unstable` Cargo feature flag.
27
+ //!
28
+ //! _Note that for producing EFI images, you also need to use a corresponding
29
+ //! `uefi` compiler target of Rust, such as `x86_64-unknown-uefi`._
30
+ //!
19
31
//! # Interaction with uefi services
20
32
//!
21
33
//! With this crate you can write code for the pre- and post-exit boot services
You can’t perform that action at this time.
0 commit comments