|
7 | 7 | //! important UEFI concepts. For more details of UEFI, see the latest [UEFI
|
8 | 8 | //! Specification][spec].
|
9 | 9 | //!
|
10 |
| -//! Feel free to file bug reports and questions in our [issue tracker], and [PR |
11 |
| -//! contributions][contributing] are also welcome! |
12 |
| -//! |
13 | 10 | //! # Interaction with uefi services
|
14 | 11 | //!
|
15 | 12 | //! With this crate you can write code for the pre- and post-exit boot services
|
|
80 | 77 | //! only unfold their potential when you invoke `uefi::helpers::init` as soon
|
81 | 78 | //! as possible in your application.
|
82 | 79 | //!
|
| 80 | +//! # Discuss and Contribute |
| 81 | +//! |
| 82 | +//! For general discussions, feel free to join us in our [Zulip] and ask |
| 83 | +//! your questions there. |
| 84 | +//! |
| 85 | +//! Further, you can submit bugs and also ask questions in our [issue tracker]. |
| 86 | +//! Contributions in form of a PR are also highly welcome. Check our |
| 87 | +//! [contributing guide][contributing] for details. |
| 88 | +//! |
| 89 | +//! # MSRV |
| 90 | +//! <!-- Keep in Sync with README! --> |
| 91 | +//! |
| 92 | +//! The minimum supported Rust version is currently 1.70. |
| 93 | +//! Our policy is to support at least the past two stable releases. |
| 94 | +//! |
| 95 | +//! # License |
| 96 | +//! <!-- Keep in Sync with README! --> |
| 97 | +//! |
| 98 | +//! The code in this repository is licensed under the Mozilla Public License 2. |
| 99 | +//! This license allows you to use the crate in proprietary programs, but any |
| 100 | +//! modifications to the files must be open-sourced. |
| 101 | +//! |
| 102 | +//! The full text of the license is available in the [license file][LICENSE]. |
| 103 | +//! |
83 | 104 | //! # Trivia and Background
|
84 | 105 | //!
|
85 | 106 | //! [UEFI] started as the successor firmware to the BIOS in x86 space and
|
|
94 | 115 | //! Even joke projects such as an [IRC client][uefirc] leveraging only existing
|
95 | 116 | //! UEFI boot services are possible! 😉
|
96 | 117 | //!
|
| 118 | +//! [LICENSE]: https://github.com/rust-osdev/uefi-rs/blob/main/uefi/LICENSE |
97 | 119 | //! [Rust UEFI Book]: https://rust-osdev.github.io/uefi-rs/HEAD/
|
98 | 120 | //! [UEFI]: https://uefi.org/
|
| 121 | +//! [Zulip]: https://rust-osdev.zulipchat.com |
99 | 122 | //! [`BootServices`]: table::boot::BootServices
|
100 | 123 | //! [`GlobalAlloc`]: alloc::alloc::GlobalAlloc
|
101 | 124 | //! [`SystemTable`]: table::SystemTable
|
|
0 commit comments