|
5 | 5 | //! Develop Rust software that leverages **safe**, **convenient**, and
|
6 | 6 | //! **performant** abstractions for [UEFI] functionality.
|
7 | 7 | //!
|
8 |
| -//! See the [Rust UEFI Book] for a tutorial, how-tos, and overviews of some |
9 |
| -//! important UEFI concepts. For more details of UEFI, see the latest [UEFI |
10 |
| -//! Specification][spec]. |
11 |
| -//! |
12 | 8 | //! # About this Document
|
13 | 9 | //!
|
14 | 10 | //! In this document, you find general information about this crate, such
|
|
51 | 47 | //! UEFI support, such as `i686`, `x86_64`, and `aarch64`. Please note that we
|
52 | 48 | //! can't test all possible hardware/firmware/platform combinations in CI.
|
53 | 49 | //!
|
| 50 | +//! # API/User Documentation, Documentation Structure, and other Resources |
| 51 | +//! |
| 52 | +//! Down below, you find typical technical documentation of all types, modules, |
| 53 | +//! and functions exported by `uefi`. |
| 54 | +//! |
| 55 | +//! For a TL;DR quick start with an example on how to create your own EFI |
| 56 | +//! application, please check out [the UEFI application template][template]. The |
| 57 | +//! [Rust UEFI Book] is a more beginner-friendly tutorial with How-Tos, and |
| 58 | +//! overviews of some important UEFI concepts and the abstractions provided by |
| 59 | +//! this library. |
| 60 | +//! |
| 61 | +//! For more details of UEFI itself, see the latest [UEFI Specification][spec]. |
| 62 | +//! |
54 | 63 | //! # Crate organisation
|
55 | 64 | //!
|
56 | 65 | //! The top-level module contains some of the most used types and macros,
|
|
174 | 183 | //! [contributing]: https://github.com/rust-osdev/uefi-rs/blob/main/CONTRIBUTING.md
|
175 | 184 | //! [issue tracker]: https://github.com/rust-osdev/uefi-rs/issues
|
176 | 185 | //! [spec]: https://uefi.org/specifications
|
| 186 | +//! [template]: https://github.com/rust-osdev/uefi-rs/tree/main/template |
177 | 187 | //! [unstable features]: https://doc.rust-lang.org/unstable-book/
|
178 | 188 | //! [uefirc]: https://github.com/codyd51/uefirc
|
179 | 189 | //! [rustc-uefi-std]: https://doc.rust-lang.org/nightly/rustc/platform-support/unknown-uefi.html
|
|
0 commit comments