File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,18 @@ This crate makes it easy to develop Rust software that leverages **safe**,
11
11
![ Build status] ( https://github.com/rust-osdev/uefi-rs/workflows/Rust/badge.svg )
12
12
![ Stars] ( https://img.shields.io/github/stars/rust-osdev/uefi-rs )
13
13
14
+ ## About
15
+
16
+ With ` uefi ` , you have the flexibility to integrate selected types and
17
+ abstractions into your project or to conveniently create EFI images, addressing
18
+ the entire spectrum of your development needs.
19
+
20
+ ` uefi ` works with stable Rust, but additional nightly-only features are
21
+ gated behind an ` unstable ` Cargo feature flag.
22
+
23
+ _ Note that for producing EFI images, you also need to use a corresponding ` uefi `
24
+ compiler target of Rust, such as ` x86_64-unknown-uefi ` ._
25
+
14
26
For an introduction to the ` uefi-rs ` project and documentation, please refer to
15
27
our main [ README] .
16
28
Original file line number Diff line number Diff line change 7
7
//! important UEFI concepts. For more details of UEFI, see the latest [UEFI
8
8
//! Specification][spec].
9
9
//!
10
+ //! # About `uefi`
11
+ //!
12
+ //! With `uefi`, you have the flexibility to integrate selected types and
13
+ //! abstractions into your project or to conveniently create EFI images,
14
+ //! addressing the entire spectrum of your development needs.
15
+ //!
16
+ //! `uefi` works with stable Rust, but additional nightly-only features are
17
+ //! gated behind an `unstable` Cargo feature flag. Please find more information
18
+ //! about supported features below.
19
+ //!
20
+ //! _Note that for producing EFI images, you also need to use a corresponding
21
+ //! `uefi` compiler target of Rust, such as `x86_64-unknown-uefi`._
22
+ //!
10
23
//! # Interaction with uefi services
11
24
//!
12
25
//! 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