Skip to content

Commit 876a2cc

Browse files
committed
doc: move Supported Architectures to lib.rs
1 parent 7a38b01 commit 876a2cc

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ You can use the abstractions for example to:
3030
- create OS-specific loaders and leverage UEFI boot service
3131
- access UEFI runtime services from an OS
3232

33-
All crates are compatible with all platforms that both the Rust compiler and
34-
UEFI support, such as `i686`, `x86_64`, and `aarch64`). Please note that we
35-
can't test all possible hardware/firmware/platform combinations.
36-
3733
[UEFI]: https://en.wikipedia.org/wiki/Unified_Extensible_Firmware_Interface
3834

3935
![UEFI App running in QEMU](https://imgur.com/SFPSVuO.png)

uefi/src/lib.rs

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
//! epochs. However, the `uefi` crate unfolds its true potential when
1717
//! interacting with UEFI boot services.
1818
//!
19+
//! ## Supported Architectures
20+
//!
21+
//! `uefi` is compatible with all platforms that both the Rust compiler and
22+
//! UEFI support, such as `i686`, `x86_64`, and `aarch64`. Please note that we
23+
//! can't test all possible hardware/firmware/platform combinations in CI.
24+
//!
1925
//! # Crate organisation
2026
//!
2127
//! The top-level module contains some of the most used types and macros,

0 commit comments

Comments
 (0)